├── .bridge └── .keep ├── .gitattributes ├── .gitignore ├── .gitmodules ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── TODO ├── beacon ├── build │ ├── Makefile │ ├── base64.c │ ├── base64.h │ ├── beacon.c │ ├── beacon.h │ ├── compression.c │ ├── compression.h │ ├── core.c │ ├── core.h │ ├── debug.c │ ├── loader.c │ ├── loader.h │ ├── settings.h │ └── syscalls.h ├── injectable │ ├── Makefile │ ├── ReflectiveLoader.h │ ├── base64.c │ ├── base64.h │ ├── beacon.c │ ├── beacon.h │ ├── core.c │ ├── core.h │ ├── debug.c │ ├── loader.c │ ├── loader.h │ ├── settings.h │ ├── strings.h │ ├── syscalls.c │ └── syscalls.h ├── lib │ ├── json-c │ │ ├── .deps │ │ │ ├── arraylist.Plo │ │ │ ├── debug.Plo │ │ │ ├── json_c_version.Plo │ │ │ ├── json_object.Plo │ │ │ ├── json_object_iterator.Plo │ │ │ ├── json_pointer.Plo │ │ │ ├── json_tokener.Plo │ │ │ ├── json_util.Plo │ │ │ ├── json_visit.Plo │ │ │ ├── linkhash.Plo │ │ │ ├── printbuf.Plo │ │ │ ├── random_seed.Plo │ │ │ └── strerror_override.Plo │ │ ├── .editorconfig │ │ ├── .libs │ │ │ ├── arraylist.o │ │ │ ├── debug.o │ │ │ ├── json_c_version.o │ │ │ ├── json_object.o │ │ │ ├── json_object_iterator.o │ │ │ ├── json_pointer.o │ │ │ ├── json_tokener.o │ │ │ ├── json_util.o │ │ │ ├── json_visit.o │ │ │ ├── libjson-c.a │ │ │ ├── libjson-c.la │ │ │ ├── libjson-c.lai │ │ │ ├── linkhash.o │ │ │ ├── printbuf.o │ │ │ ├── random_seed.o │ │ │ └── strerror_override.o │ │ ├── .travis.yml │ │ ├── AUTHORS │ │ ├── Android.configure.mk │ │ ├── CMakeLists.txt │ │ ├── COPYING │ │ ├── ChangeLog │ │ ├── Doxyfile │ │ ├── INSTALL │ │ ├── Makefile │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── NEWS │ │ ├── README │ │ ├── README.html │ │ ├── README.md │ │ ├── RELEASE_CHECKLIST.txt │ │ ├── STYLE.txt │ │ ├── aclocal.m4 │ │ ├── appveyor.yml │ │ ├── arraylist.c │ │ ├── arraylist.h │ │ ├── arraylist.lo │ │ ├── autoconf-archive │ │ │ └── m4 │ │ │ │ ├── libtool.m4 │ │ │ │ ├── ltoptions.m4 │ │ │ │ ├── ltsugar.m4 │ │ │ │ ├── ltversion.m4 │ │ │ │ └── lt~obsolete.m4 │ │ ├── autogen.sh │ │ ├── cmake-configure │ │ ├── cmake │ │ │ ├── Config.cmake.in │ │ │ ├── config.h.in │ │ │ └── json_config.h.in │ │ ├── compile │ │ ├── config.guess │ │ ├── config.h │ │ ├── config.h.in │ │ ├── config.h.win32 │ │ ├── config.log │ │ ├── config.status │ │ ├── config.sub │ │ ├── configure │ │ ├── configure.ac │ │ ├── debug.c │ │ ├── debug.h │ │ ├── debug.lo │ │ ├── depcomp │ │ ├── fuzz │ │ │ ├── README.md │ │ │ ├── build.sh │ │ │ ├── tokener_parse_ex_fuzzer.cc │ │ │ └── tokener_parse_ex_fuzzer.dict │ │ ├── install-sh │ │ ├── issues_closed_for_0.13.md │ │ ├── json-c-uninstalled.pc │ │ ├── json-c-uninstalled.pc.in │ │ ├── json-c.pc │ │ ├── json-c.pc.in │ │ ├── json.h │ │ ├── json_c_version.c │ │ ├── json_c_version.h │ │ ├── json_c_version.lo │ │ ├── json_config.h │ │ ├── json_config.h.in │ │ ├── json_config.h.win32 │ │ ├── json_inttypes.h │ │ ├── json_object.c │ │ ├── json_object.h │ │ ├── json_object.lo │ │ ├── json_object_iterator.c │ │ ├── json_object_iterator.h │ │ ├── json_object_iterator.lo │ │ ├── json_object_private.h │ │ ├── json_pointer.c │ │ ├── json_pointer.h │ │ ├── json_pointer.lo │ │ ├── json_tokener.c │ │ ├── json_tokener.h │ │ ├── json_tokener.lo │ │ ├── json_util.c │ │ ├── json_util.h │ │ ├── json_util.lo │ │ ├── json_visit.c │ │ ├── json_visit.h │ │ ├── json_visit.lo │ │ ├── libjson-c.la │ │ ├── libjson.c │ │ ├── libtool │ │ ├── linkhash.c │ │ ├── linkhash.h │ │ ├── linkhash.lo │ │ ├── ltmain.sh │ │ ├── math_compat.h │ │ ├── missing │ │ ├── printbuf.c │ │ ├── printbuf.h │ │ ├── printbuf.lo │ │ ├── random_seed.c │ │ ├── random_seed.h │ │ ├── random_seed.lo │ │ ├── snprintf_compat.h │ │ ├── stamp-h1 │ │ ├── stamp-h2 │ │ ├── strdup_compat.h │ │ ├── strerror_override.c │ │ ├── strerror_override.h │ │ ├── strerror_override.lo │ │ ├── strerror_override_private.h │ │ ├── test-driver │ │ ├── tests │ │ │ ├── .deps │ │ │ │ ├── test1.Po │ │ │ │ ├── test1Formatted-parse_flags.Po │ │ │ │ ├── test1Formatted-test1.Po │ │ │ │ ├── test2.Po │ │ │ │ ├── test2Formatted-parse_flags.Po │ │ │ │ ├── test2Formatted-test2.Po │ │ │ │ ├── test4.Po │ │ │ │ ├── testReplaceExisting.Po │ │ │ │ ├── test_cast.Po │ │ │ │ ├── test_charcase.Po │ │ │ │ ├── test_compare.Po │ │ │ │ ├── test_deep_copy.Po │ │ │ │ ├── test_double_serializer.Po │ │ │ │ ├── test_float.Po │ │ │ │ ├── test_int_add.Po │ │ │ │ ├── test_json_pointer.Po │ │ │ │ ├── test_locale.Po │ │ │ │ ├── test_null.Po │ │ │ │ ├── test_parse.Po │ │ │ │ ├── test_parse_int64.Po │ │ │ │ ├── test_printbuf.Po │ │ │ │ ├── test_set_serializer.Po │ │ │ │ ├── test_set_value.Po │ │ │ │ ├── test_util_file.Po │ │ │ │ └── test_visit.Po │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── parse_flags.c │ │ │ ├── parse_flags.h │ │ │ ├── test-defs.sh │ │ │ ├── test1.c │ │ │ ├── test1.expected │ │ │ ├── test1.test │ │ │ ├── test1Formatted_plain.expected │ │ │ ├── test1Formatted_pretty.expected │ │ │ ├── test1Formatted_spaced.expected │ │ │ ├── test1Formatted_spaced_pretty.expected │ │ │ ├── test1Formatted_spaced_pretty_pretty_tab.expected │ │ │ ├── test2.c │ │ │ ├── test2.expected │ │ │ ├── test2.test │ │ │ ├── test2Formatted_plain.expected │ │ │ ├── test2Formatted_pretty.expected │ │ │ ├── test2Formatted_spaced.expected │ │ │ ├── test2Formatted_spaced_pretty.expected │ │ │ ├── test2Formatted_spaced_pretty_pretty_tab.expected │ │ │ ├── test4.c │ │ │ ├── test4.expected │ │ │ ├── test4.test │ │ │ ├── testReplaceExisting.c │ │ │ ├── testReplaceExisting.expected │ │ │ ├── testReplaceExisting.test │ │ │ ├── test_basic.test │ │ │ ├── test_cast.c │ │ │ ├── test_cast.expected │ │ │ ├── test_cast.test │ │ │ ├── test_charcase.c │ │ │ ├── test_charcase.expected │ │ │ ├── test_charcase.test │ │ │ ├── test_compare.c │ │ │ ├── test_compare.expected │ │ │ ├── test_compare.test │ │ │ ├── test_deep_copy.c │ │ │ ├── test_deep_copy.expected │ │ │ ├── test_deep_copy.test │ │ │ ├── test_double_serializer.c │ │ │ ├── test_double_serializer.expected │ │ │ ├── test_double_serializer.test │ │ │ ├── test_float.c │ │ │ ├── test_float.expected │ │ │ ├── test_float.test │ │ │ ├── test_int_add.c │ │ │ ├── test_int_add.expected │ │ │ ├── test_int_add.test │ │ │ ├── test_json_pointer.c │ │ │ ├── test_json_pointer.expected │ │ │ ├── test_json_pointer.test │ │ │ ├── test_locale.c │ │ │ ├── test_locale.expected │ │ │ ├── test_locale.test │ │ │ ├── test_null.c │ │ │ ├── test_null.expected │ │ │ ├── test_null.test │ │ │ ├── test_parse.c │ │ │ ├── test_parse.expected │ │ │ ├── test_parse.test │ │ │ ├── test_parse_int64.c │ │ │ ├── test_parse_int64.expected │ │ │ ├── test_parse_int64.test │ │ │ ├── test_printbuf.c │ │ │ ├── test_printbuf.expected │ │ │ ├── test_printbuf.test │ │ │ ├── test_set_serializer.c │ │ │ ├── test_set_serializer.expected │ │ │ ├── test_set_serializer.test │ │ │ ├── test_set_value.c │ │ │ ├── test_set_value.expected │ │ │ ├── test_set_value.test │ │ │ ├── test_util_file.c │ │ │ ├── test_util_file.expected │ │ │ ├── test_util_file.test │ │ │ ├── test_visit.c │ │ │ ├── test_visit.expected │ │ │ ├── test_visit.test │ │ │ ├── valid.json │ │ │ └── valid_nested.json │ │ └── vasprintf_compat.h │ ├── secure │ │ ├── Makefile │ │ ├── imports.h │ │ ├── main.c │ │ └── main.h │ └── stdlib │ │ ├── Makefile │ │ ├── changedir.c │ │ ├── getdir.c │ │ ├── getdir.o │ │ ├── getpid.c │ │ ├── getps.c │ │ ├── listdirs.c │ │ ├── listdirs.o │ │ ├── main.c │ │ ├── makedirectory.c │ │ ├── makedirectory.o │ │ ├── readfile.c │ │ ├── readfile.o │ │ ├── removefile.c │ │ ├── removefile.o │ │ ├── stdlib.h │ │ └── whoami.c ├── reflection │ ├── Makefile │ ├── Makefile.bak │ ├── ReflectiveDLLInjection.h │ ├── ReflectiveDll.c │ ├── ReflectiveLoader.c │ ├── ReflectiveLoader.h │ ├── base64.c │ ├── base64.h │ ├── beacon.bin │ ├── beacon.c │ ├── beacon.dll │ ├── beacon.h │ ├── core.c │ ├── core.h │ ├── debug.c │ ├── loader.c │ ├── loader.h │ ├── settings.h │ ├── strings.h │ ├── syscalls.c │ └── syscalls.h ├── src │ ├── Makefile │ ├── ReflectiveLoader.h │ ├── base64.c │ ├── base64.h │ ├── beacon.c │ ├── beacon.h │ ├── compression.c │ ├── compression.h │ ├── core.c │ ├── core.h │ ├── crypt.c │ ├── debug.c │ ├── imports.h │ ├── loader.c │ ├── loader.h │ ├── resolve.c │ ├── scratchpad.txt │ ├── settings.h │ ├── strings.h │ ├── syscalls.c │ └── syscalls.h └── stager │ ├── Makefile │ ├── base64.c │ ├── base64.h │ ├── callback.c │ ├── crypt.c │ ├── debug.c │ ├── imports.h │ ├── loader.c │ ├── loader.h │ ├── main.c │ ├── main.h │ ├── settings.h │ ├── strings.h │ ├── syscalls.c │ └── syscalls.h ├── bin ├── SharpSocks.x86.exe ├── donut.elf ├── gitl.x64.exe ├── metasploit │ └── .keep ├── mimikatz.x64.exe └── whoami.x64.exe ├── certs ├── cert.pem └── key.pem ├── exploits ├── __init__.py └── system_printspoofer │ ├── __pycache__ │ └── system_printspoofer.cpython-38.pyc │ ├── check.exe │ ├── exploit.exe │ ├── src │ ├── Makefile │ ├── build │ │ ├── Makefile │ │ ├── exploit.c │ │ ├── exploit.h │ │ ├── ms-rprn_c.c │ │ ├── ms-rprn_h.h │ │ ├── ms-rprn_s.c │ │ └── stage.h │ ├── check │ │ ├── check.c │ │ └── check.h │ └── exploit │ │ ├── exploit.c │ │ ├── exploit.h │ │ ├── ms-rprn_c.c │ │ ├── ms-rprn_h.h │ │ ├── ms-rprn_s.c │ │ └── stage.h │ └── system_printspoofer.py ├── install.sh ├── lib ├── ShellcodeRDI.py ├── __pycache__ │ ├── auxiliary.cpython-37.pyc │ ├── auxiliary.cpython-38.pyc │ ├── banner.cpython-37.pyc │ ├── banner.cpython-38.pyc │ ├── buildtools.cpython-38.pyc │ ├── compile.cpython-37.pyc │ ├── compile.cpython-38.pyc │ ├── console.cpython-37.pyc │ ├── console.cpython-38.pyc │ ├── debug.cpython-37.pyc │ ├── debug.cpython-38.pyc │ ├── encryption.cpython-37.pyc │ ├── encryption.cpython-38.pyc │ ├── http_server.cpython-37.pyc │ ├── http_server.cpython-38.pyc │ ├── input_handler.cpython-37.pyc │ ├── input_handler.cpython-38.pyc │ ├── mirror.cpython-38.pyc │ ├── path_handler.cpython-37.pyc │ ├── path_handler.cpython-38.pyc │ ├── responce_builder.cpython-37.pyc │ ├── responce_builder.cpython-38.pyc │ ├── shellcode.cpython-38.pyc │ ├── tools.cpython-37.pyc │ └── tools.cpython-38.pyc ├── auxiliary.py ├── banner.py ├── basecommand.py ├── buildtools.py ├── cmd.py ├── commands │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── __init__.cpython-37.pyc │ │ ├── __init__.cpython-38.pyc │ │ ├── beacons.cpython-36.pyc │ │ ├── beacons.cpython-37.pyc │ │ ├── beacons.cpython-38.pyc │ │ ├── cat.cpython-38.pyc │ │ ├── cd.cpython-38.pyc │ │ ├── download.cpython-38.pyc │ │ ├── elevate.cpython-38.pyc │ │ ├── execute.cpython-38.pyc │ │ ├── exit.cpython-36.pyc │ │ ├── exit.cpython-37.pyc │ │ ├── exit.cpython-38.pyc │ │ ├── help.cpython-36.pyc │ │ ├── help.cpython-37.pyc │ │ ├── help.cpython-38.pyc │ │ ├── loadpe.cpython-37.pyc │ │ ├── loadpe.cpython-38.pyc │ │ ├── ls.cpython-38.pyc │ │ ├── mimikatz.cpython-38.pyc │ │ ├── mkdir.cpython-38.pyc │ │ ├── pwd.cpython-38.pyc │ │ ├── rm.cpython-38.pyc │ │ ├── shell.cpython-36.pyc │ │ ├── shell.cpython-37.pyc │ │ ├── shell.cpython-38.pyc │ │ ├── touch.cpython-38.pyc │ │ ├── upload.cpython-38.pyc │ │ ├── whoami.cpython-38.pyc │ │ └── write.cpython-38.pyc │ ├── back.py │ ├── beacons.py │ ├── binject.py │ ├── cat.py │ ├── cd.py │ ├── die.py │ ├── dllinject.py │ ├── dotnet.py │ ├── download.py │ ├── elevate.py │ ├── execute.py │ ├── exit.py │ ├── getpid.py │ ├── gitl.py │ ├── help.py │ ├── hijack.py │ ├── lockless.py │ ├── ls.py │ ├── meterpreter.py │ ├── migrate.py │ ├── mimikatz.py │ ├── mkdir.py │ ├── ps.py │ ├── psh.py │ ├── pwd.py │ ├── rm.py │ ├── rubeus.py │ ├── safetykatz.py │ ├── seatbelt.py │ ├── set.py │ ├── sharpchrome.py │ ├── sharpdpapi.py │ ├── sharpdump.py │ ├── sharphound.py │ ├── sharpsocks.py │ ├── sharpup.py │ ├── sharpwmi.py │ ├── shinject.py │ ├── upload.py │ ├── watson.py │ └── whoami.py ├── compile.py ├── console.py ├── debug.py ├── encryption.py ├── http_server.py ├── input_handler.py ├── mirror.py ├── path_handler.py ├── payload_format.py ├── responce_builder.py ├── shellcode.py ├── templates │ ├── dll.py │ ├── exe.py │ └── powershell.py └── tools.py ├── modules └── windows │ ├── dotnet │ ├── Makefile │ ├── build │ │ ├── .shad0w_history │ │ ├── Makefile │ │ ├── main.c │ │ └── main.h │ ├── main.c │ ├── main.h │ └── module.exe │ ├── download │ ├── Makefile │ ├── build │ │ ├── .shad0w_history │ │ ├── Makefile │ │ ├── main.c │ │ └── settings.h │ ├── main.c │ ├── module.exe │ └── settings.h │ ├── psh │ ├── System.Management.Automation.dll │ ├── build │ │ ├── System.Management.Automation.dll │ │ ├── main.cs │ │ └── psh.exe │ ├── main.cs │ └── psh.exe │ ├── sharpsocks │ ├── McMaster.Extensions.CommandLineUtils.dll │ ├── SharpSocksServerCore │ ├── SharpSocksServerCore.deps.json │ ├── SharpSocksServerCore.dll │ ├── SharpSocksServerCore.pdb │ └── SharpSocksServerCore.runtimeconfig.json │ ├── shinject │ ├── .shad0w_history │ ├── Makefile │ ├── ReflectiveDLLInjection.h │ ├── ReflectiveDll.c │ ├── ReflectiveLoader.c │ ├── ReflectiveLoader.h │ ├── beacon.h │ ├── build │ │ ├── Makefile │ │ ├── ReflectiveDLLInjection.h │ │ ├── ReflectiveDll.c │ │ ├── ReflectiveLoader.c │ │ ├── ReflectiveLoader.h │ │ └── beacon.h │ └── module.dll │ └── upload │ ├── Makefile │ ├── build │ ├── .shad0w_history │ ├── Makefile │ ├── main.c │ └── settings.h │ ├── main.c │ ├── module.exe │ └── settings.h ├── requirements.txt ├── rules ├── ldrhook_6_6_2020.yara ├── strings_16_6_2020.yara └── strings_4_6_2020.yara ├── scripts ├── BloodHound.ps1 ├── GetComputerInfo.ps1 ├── GetHash.ps1 ├── GetSystem.ps1 ├── HostRecon.ps1 ├── InvokeBypassUAC.ps1 ├── PowerUp.ps1 └── PowerView.ps1 ├── shad0w ├── shad0w.png └── shad0w.py /.bridge/.keep: -------------------------------------------------------------------------------- 1 | one 2 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | beacon/build/* 2 | *.o 3 | *.pyc -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/.gitmodules -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- 1 | compatible with metasploit callbacks -------------------------------------------------------------------------------- /beacon/build/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/build/Makefile -------------------------------------------------------------------------------- /beacon/build/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/build/base64.c -------------------------------------------------------------------------------- /beacon/build/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/build/base64.h -------------------------------------------------------------------------------- /beacon/build/beacon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/build/beacon.c -------------------------------------------------------------------------------- /beacon/build/beacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/build/beacon.h -------------------------------------------------------------------------------- /beacon/build/compression.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/build/compression.c -------------------------------------------------------------------------------- /beacon/build/compression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/build/compression.h -------------------------------------------------------------------------------- /beacon/build/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/build/core.c -------------------------------------------------------------------------------- /beacon/build/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/build/core.h -------------------------------------------------------------------------------- /beacon/build/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/build/debug.c -------------------------------------------------------------------------------- /beacon/build/loader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/build/loader.c -------------------------------------------------------------------------------- /beacon/build/loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/build/loader.h -------------------------------------------------------------------------------- /beacon/build/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/build/settings.h -------------------------------------------------------------------------------- /beacon/build/syscalls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/build/syscalls.h -------------------------------------------------------------------------------- /beacon/injectable/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/injectable/Makefile -------------------------------------------------------------------------------- /beacon/injectable/ReflectiveLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/injectable/ReflectiveLoader.h -------------------------------------------------------------------------------- /beacon/injectable/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/injectable/base64.c -------------------------------------------------------------------------------- /beacon/injectable/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/injectable/base64.h -------------------------------------------------------------------------------- /beacon/injectable/beacon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/injectable/beacon.c -------------------------------------------------------------------------------- /beacon/injectable/beacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/injectable/beacon.h -------------------------------------------------------------------------------- /beacon/injectable/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/injectable/core.c -------------------------------------------------------------------------------- /beacon/injectable/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/injectable/core.h -------------------------------------------------------------------------------- /beacon/injectable/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/injectable/debug.c -------------------------------------------------------------------------------- /beacon/injectable/loader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/injectable/loader.c -------------------------------------------------------------------------------- /beacon/injectable/loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/injectable/loader.h -------------------------------------------------------------------------------- /beacon/injectable/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/injectable/settings.h -------------------------------------------------------------------------------- /beacon/injectable/strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/injectable/strings.h -------------------------------------------------------------------------------- /beacon/injectable/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/injectable/syscalls.c -------------------------------------------------------------------------------- /beacon/injectable/syscalls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/injectable/syscalls.h -------------------------------------------------------------------------------- /beacon/lib/json-c/.deps/arraylist.Plo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/.deps/arraylist.Plo -------------------------------------------------------------------------------- /beacon/lib/json-c/.deps/debug.Plo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/.deps/debug.Plo -------------------------------------------------------------------------------- /beacon/lib/json-c/.deps/json_c_version.Plo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/.deps/json_c_version.Plo -------------------------------------------------------------------------------- /beacon/lib/json-c/.deps/json_object.Plo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/.deps/json_object.Plo -------------------------------------------------------------------------------- /beacon/lib/json-c/.deps/json_object_iterator.Plo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/.deps/json_object_iterator.Plo -------------------------------------------------------------------------------- /beacon/lib/json-c/.deps/json_pointer.Plo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/.deps/json_pointer.Plo -------------------------------------------------------------------------------- /beacon/lib/json-c/.deps/json_tokener.Plo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/.deps/json_tokener.Plo -------------------------------------------------------------------------------- /beacon/lib/json-c/.deps/json_util.Plo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/.deps/json_util.Plo -------------------------------------------------------------------------------- /beacon/lib/json-c/.deps/json_visit.Plo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/.deps/json_visit.Plo -------------------------------------------------------------------------------- /beacon/lib/json-c/.deps/linkhash.Plo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/.deps/linkhash.Plo -------------------------------------------------------------------------------- /beacon/lib/json-c/.deps/printbuf.Plo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/.deps/printbuf.Plo -------------------------------------------------------------------------------- /beacon/lib/json-c/.deps/random_seed.Plo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/.deps/random_seed.Plo -------------------------------------------------------------------------------- /beacon/lib/json-c/.deps/strerror_override.Plo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/.deps/strerror_override.Plo -------------------------------------------------------------------------------- /beacon/lib/json-c/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/.editorconfig -------------------------------------------------------------------------------- /beacon/lib/json-c/.libs/arraylist.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/.libs/arraylist.o -------------------------------------------------------------------------------- /beacon/lib/json-c/.libs/debug.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/.libs/debug.o -------------------------------------------------------------------------------- /beacon/lib/json-c/.libs/json_c_version.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/.libs/json_c_version.o -------------------------------------------------------------------------------- /beacon/lib/json-c/.libs/json_object.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/.libs/json_object.o -------------------------------------------------------------------------------- /beacon/lib/json-c/.libs/json_object_iterator.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/.libs/json_object_iterator.o -------------------------------------------------------------------------------- /beacon/lib/json-c/.libs/json_pointer.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/.libs/json_pointer.o -------------------------------------------------------------------------------- /beacon/lib/json-c/.libs/json_tokener.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/.libs/json_tokener.o -------------------------------------------------------------------------------- /beacon/lib/json-c/.libs/json_util.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/.libs/json_util.o -------------------------------------------------------------------------------- /beacon/lib/json-c/.libs/json_visit.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/.libs/json_visit.o -------------------------------------------------------------------------------- /beacon/lib/json-c/.libs/libjson-c.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/.libs/libjson-c.a -------------------------------------------------------------------------------- /beacon/lib/json-c/.libs/libjson-c.la: -------------------------------------------------------------------------------- 1 | ../libjson-c.la -------------------------------------------------------------------------------- /beacon/lib/json-c/.libs/libjson-c.lai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/.libs/libjson-c.lai -------------------------------------------------------------------------------- /beacon/lib/json-c/.libs/linkhash.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/.libs/linkhash.o -------------------------------------------------------------------------------- /beacon/lib/json-c/.libs/printbuf.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/.libs/printbuf.o -------------------------------------------------------------------------------- /beacon/lib/json-c/.libs/random_seed.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/.libs/random_seed.o -------------------------------------------------------------------------------- /beacon/lib/json-c/.libs/strerror_override.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/.libs/strerror_override.o -------------------------------------------------------------------------------- /beacon/lib/json-c/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/.travis.yml -------------------------------------------------------------------------------- /beacon/lib/json-c/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/AUTHORS -------------------------------------------------------------------------------- /beacon/lib/json-c/Android.configure.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/Android.configure.mk -------------------------------------------------------------------------------- /beacon/lib/json-c/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/CMakeLists.txt -------------------------------------------------------------------------------- /beacon/lib/json-c/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/COPYING -------------------------------------------------------------------------------- /beacon/lib/json-c/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/ChangeLog -------------------------------------------------------------------------------- /beacon/lib/json-c/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/Doxyfile -------------------------------------------------------------------------------- /beacon/lib/json-c/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/INSTALL -------------------------------------------------------------------------------- /beacon/lib/json-c/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/Makefile -------------------------------------------------------------------------------- /beacon/lib/json-c/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/Makefile.am -------------------------------------------------------------------------------- /beacon/lib/json-c/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/Makefile.in -------------------------------------------------------------------------------- /beacon/lib/json-c/NEWS: -------------------------------------------------------------------------------- 1 | See the git repo. 2 | -------------------------------------------------------------------------------- /beacon/lib/json-c/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/README -------------------------------------------------------------------------------- /beacon/lib/json-c/README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/README.html -------------------------------------------------------------------------------- /beacon/lib/json-c/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/README.md -------------------------------------------------------------------------------- /beacon/lib/json-c/RELEASE_CHECKLIST.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/RELEASE_CHECKLIST.txt -------------------------------------------------------------------------------- /beacon/lib/json-c/STYLE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/STYLE.txt -------------------------------------------------------------------------------- /beacon/lib/json-c/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/aclocal.m4 -------------------------------------------------------------------------------- /beacon/lib/json-c/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/appveyor.yml -------------------------------------------------------------------------------- /beacon/lib/json-c/arraylist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/arraylist.c -------------------------------------------------------------------------------- /beacon/lib/json-c/arraylist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/arraylist.h -------------------------------------------------------------------------------- /beacon/lib/json-c/arraylist.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/arraylist.lo -------------------------------------------------------------------------------- /beacon/lib/json-c/autoconf-archive/m4/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/autoconf-archive/m4/libtool.m4 -------------------------------------------------------------------------------- /beacon/lib/json-c/autoconf-archive/m4/ltoptions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/autoconf-archive/m4/ltoptions.m4 -------------------------------------------------------------------------------- /beacon/lib/json-c/autoconf-archive/m4/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/autoconf-archive/m4/ltsugar.m4 -------------------------------------------------------------------------------- /beacon/lib/json-c/autoconf-archive/m4/ltversion.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/autoconf-archive/m4/ltversion.m4 -------------------------------------------------------------------------------- /beacon/lib/json-c/autoconf-archive/m4/lt~obsolete.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/autoconf-archive/m4/lt~obsolete.m4 -------------------------------------------------------------------------------- /beacon/lib/json-c/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/autogen.sh -------------------------------------------------------------------------------- /beacon/lib/json-c/cmake-configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/cmake-configure -------------------------------------------------------------------------------- /beacon/lib/json-c/cmake/Config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/cmake/Config.cmake.in -------------------------------------------------------------------------------- /beacon/lib/json-c/cmake/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/cmake/config.h.in -------------------------------------------------------------------------------- /beacon/lib/json-c/cmake/json_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/cmake/json_config.h.in -------------------------------------------------------------------------------- /beacon/lib/json-c/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/compile -------------------------------------------------------------------------------- /beacon/lib/json-c/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/config.guess -------------------------------------------------------------------------------- /beacon/lib/json-c/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/config.h -------------------------------------------------------------------------------- /beacon/lib/json-c/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/config.h.in -------------------------------------------------------------------------------- /beacon/lib/json-c/config.h.win32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/config.h.win32 -------------------------------------------------------------------------------- /beacon/lib/json-c/config.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/config.log -------------------------------------------------------------------------------- /beacon/lib/json-c/config.status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/config.status -------------------------------------------------------------------------------- /beacon/lib/json-c/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/config.sub -------------------------------------------------------------------------------- /beacon/lib/json-c/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/configure -------------------------------------------------------------------------------- /beacon/lib/json-c/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/configure.ac -------------------------------------------------------------------------------- /beacon/lib/json-c/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/debug.c -------------------------------------------------------------------------------- /beacon/lib/json-c/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/debug.h -------------------------------------------------------------------------------- /beacon/lib/json-c/debug.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/debug.lo -------------------------------------------------------------------------------- /beacon/lib/json-c/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/depcomp -------------------------------------------------------------------------------- /beacon/lib/json-c/fuzz/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/fuzz/README.md -------------------------------------------------------------------------------- /beacon/lib/json-c/fuzz/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/fuzz/build.sh -------------------------------------------------------------------------------- /beacon/lib/json-c/fuzz/tokener_parse_ex_fuzzer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/fuzz/tokener_parse_ex_fuzzer.cc -------------------------------------------------------------------------------- /beacon/lib/json-c/fuzz/tokener_parse_ex_fuzzer.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/fuzz/tokener_parse_ex_fuzzer.dict -------------------------------------------------------------------------------- /beacon/lib/json-c/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/install-sh -------------------------------------------------------------------------------- /beacon/lib/json-c/issues_closed_for_0.13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/issues_closed_for_0.13.md -------------------------------------------------------------------------------- /beacon/lib/json-c/json-c-uninstalled.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/json-c-uninstalled.pc -------------------------------------------------------------------------------- /beacon/lib/json-c/json-c-uninstalled.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/json-c-uninstalled.pc.in -------------------------------------------------------------------------------- /beacon/lib/json-c/json-c.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/json-c.pc -------------------------------------------------------------------------------- /beacon/lib/json-c/json-c.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/json-c.pc.in -------------------------------------------------------------------------------- /beacon/lib/json-c/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/json.h -------------------------------------------------------------------------------- /beacon/lib/json-c/json_c_version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/json_c_version.c -------------------------------------------------------------------------------- /beacon/lib/json-c/json_c_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/json_c_version.h -------------------------------------------------------------------------------- /beacon/lib/json-c/json_c_version.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/json_c_version.lo -------------------------------------------------------------------------------- /beacon/lib/json-c/json_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/json_config.h -------------------------------------------------------------------------------- /beacon/lib/json-c/json_config.h.in: -------------------------------------------------------------------------------- 1 | 2 | /* Define to 1 if you have the header file. */ 3 | #undef JSON_C_HAVE_INTTYPES_H 4 | -------------------------------------------------------------------------------- /beacon/lib/json-c/json_config.h.win32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/json_config.h.win32 -------------------------------------------------------------------------------- /beacon/lib/json-c/json_inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/json_inttypes.h -------------------------------------------------------------------------------- /beacon/lib/json-c/json_object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/json_object.c -------------------------------------------------------------------------------- /beacon/lib/json-c/json_object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/json_object.h -------------------------------------------------------------------------------- /beacon/lib/json-c/json_object.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/json_object.lo -------------------------------------------------------------------------------- /beacon/lib/json-c/json_object_iterator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/json_object_iterator.c -------------------------------------------------------------------------------- /beacon/lib/json-c/json_object_iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/json_object_iterator.h -------------------------------------------------------------------------------- /beacon/lib/json-c/json_object_iterator.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/json_object_iterator.lo -------------------------------------------------------------------------------- /beacon/lib/json-c/json_object_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/json_object_private.h -------------------------------------------------------------------------------- /beacon/lib/json-c/json_pointer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/json_pointer.c -------------------------------------------------------------------------------- /beacon/lib/json-c/json_pointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/json_pointer.h -------------------------------------------------------------------------------- /beacon/lib/json-c/json_pointer.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/json_pointer.lo -------------------------------------------------------------------------------- /beacon/lib/json-c/json_tokener.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/json_tokener.c -------------------------------------------------------------------------------- /beacon/lib/json-c/json_tokener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/json_tokener.h -------------------------------------------------------------------------------- /beacon/lib/json-c/json_tokener.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/json_tokener.lo -------------------------------------------------------------------------------- /beacon/lib/json-c/json_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/json_util.c -------------------------------------------------------------------------------- /beacon/lib/json-c/json_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/json_util.h -------------------------------------------------------------------------------- /beacon/lib/json-c/json_util.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/json_util.lo -------------------------------------------------------------------------------- /beacon/lib/json-c/json_visit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/json_visit.c -------------------------------------------------------------------------------- /beacon/lib/json-c/json_visit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/json_visit.h -------------------------------------------------------------------------------- /beacon/lib/json-c/json_visit.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/json_visit.lo -------------------------------------------------------------------------------- /beacon/lib/json-c/libjson-c.la: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/libjson-c.la -------------------------------------------------------------------------------- /beacon/lib/json-c/libjson.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/libjson.c -------------------------------------------------------------------------------- /beacon/lib/json-c/libtool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/libtool -------------------------------------------------------------------------------- /beacon/lib/json-c/linkhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/linkhash.c -------------------------------------------------------------------------------- /beacon/lib/json-c/linkhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/linkhash.h -------------------------------------------------------------------------------- /beacon/lib/json-c/linkhash.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/linkhash.lo -------------------------------------------------------------------------------- /beacon/lib/json-c/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/ltmain.sh -------------------------------------------------------------------------------- /beacon/lib/json-c/math_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/math_compat.h -------------------------------------------------------------------------------- /beacon/lib/json-c/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/missing -------------------------------------------------------------------------------- /beacon/lib/json-c/printbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/printbuf.c -------------------------------------------------------------------------------- /beacon/lib/json-c/printbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/printbuf.h -------------------------------------------------------------------------------- /beacon/lib/json-c/printbuf.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/printbuf.lo -------------------------------------------------------------------------------- /beacon/lib/json-c/random_seed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/random_seed.c -------------------------------------------------------------------------------- /beacon/lib/json-c/random_seed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/random_seed.h -------------------------------------------------------------------------------- /beacon/lib/json-c/random_seed.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/random_seed.lo -------------------------------------------------------------------------------- /beacon/lib/json-c/snprintf_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/snprintf_compat.h -------------------------------------------------------------------------------- /beacon/lib/json-c/stamp-h1: -------------------------------------------------------------------------------- 1 | timestamp for config.h 2 | -------------------------------------------------------------------------------- /beacon/lib/json-c/stamp-h2: -------------------------------------------------------------------------------- 1 | timestamp for json_config.h 2 | -------------------------------------------------------------------------------- /beacon/lib/json-c/strdup_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/strdup_compat.h -------------------------------------------------------------------------------- /beacon/lib/json-c/strerror_override.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/strerror_override.c -------------------------------------------------------------------------------- /beacon/lib/json-c/strerror_override.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/strerror_override.h -------------------------------------------------------------------------------- /beacon/lib/json-c/strerror_override.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/strerror_override.lo -------------------------------------------------------------------------------- /beacon/lib/json-c/strerror_override_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/strerror_override_private.h -------------------------------------------------------------------------------- /beacon/lib/json-c/test-driver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/test-driver -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/.deps/test1.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/.deps/test1Formatted-parse_flags.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/.deps/test1Formatted-test1.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/.deps/test2.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/.deps/test2Formatted-parse_flags.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/.deps/test2Formatted-test2.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/.deps/test4.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/.deps/testReplaceExisting.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/.deps/test_cast.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/.deps/test_charcase.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/.deps/test_compare.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/.deps/test_deep_copy.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/.deps/test_double_serializer.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/.deps/test_float.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/.deps/test_int_add.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/.deps/test_json_pointer.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/.deps/test_locale.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/.deps/test_null.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/.deps/test_parse.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/.deps/test_parse_int64.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/.deps/test_printbuf.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/.deps/test_set_serializer.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/.deps/test_set_value.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/.deps/test_util_file.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/.deps/test_visit.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/tests/CMakeLists.txt -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/tests/Makefile -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/tests/Makefile.am -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/tests/Makefile.in -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/parse_flags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/tests/parse_flags.c -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/parse_flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/tests/parse_flags.h -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/test-defs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/tests/test-defs.sh -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/test1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/tests/test1.c -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/test1.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/tests/test1.expected -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/test1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/tests/test1.test -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/test1Formatted_plain.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/tests/test1Formatted_plain.expected -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/test1Formatted_pretty.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/tests/test1Formatted_pretty.expected -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/test1Formatted_spaced.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/tests/test1Formatted_spaced.expected -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/test1Formatted_spaced_pretty.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/tests/test1Formatted_spaced_pretty.expected -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/test1Formatted_spaced_pretty_pretty_tab.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/tests/test1Formatted_spaced_pretty_pretty_tab.expected -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/test2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/tests/test2.c -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/test2.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/tests/test2.expected -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/test2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/tests/test2.test -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/test2Formatted_plain.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/tests/test2Formatted_plain.expected -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/test2Formatted_pretty.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/tests/test2Formatted_pretty.expected -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/test2Formatted_spaced.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/tests/test2Formatted_spaced.expected -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/test2Formatted_spaced_pretty.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/tests/test2Formatted_spaced_pretty.expected -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/test2Formatted_spaced_pretty_pretty_tab.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/tests/test2Formatted_spaced_pretty_pretty_tab.expected -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/test4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/tests/test4.c -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/test4.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/tests/test4.expected -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/test4.test: -------------------------------------------------------------------------------- 1 | test_basic.test -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/testReplaceExisting.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/tests/testReplaceExisting.c -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/testReplaceExisting.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/tests/testReplaceExisting.expected -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/testReplaceExisting.test: -------------------------------------------------------------------------------- 1 | test_basic.test -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/test_basic.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/tests/test_basic.test -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/test_cast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/tests/test_cast.c -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/test_cast.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/tests/test_cast.expected -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/test_cast.test: -------------------------------------------------------------------------------- 1 | test_basic.test -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/test_charcase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/tests/test_charcase.c -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/test_charcase.expected: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/test_charcase.test: -------------------------------------------------------------------------------- 1 | test_basic.test -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/test_compare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/tests/test_compare.c -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/test_compare.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/tests/test_compare.expected -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/test_compare.test: -------------------------------------------------------------------------------- 1 | test_basic.test -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/test_deep_copy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/tests/test_deep_copy.c -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/test_deep_copy.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/tests/test_deep_copy.expected -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/test_deep_copy.test: -------------------------------------------------------------------------------- 1 | test_basic.test -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/test_double_serializer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/tests/test_double_serializer.c -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/test_double_serializer.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/tests/test_double_serializer.expected -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/test_double_serializer.test: -------------------------------------------------------------------------------- 1 | test_basic.test -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/test_float.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/tests/test_float.c -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/test_float.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/tests/test_float.expected -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/test_float.test: -------------------------------------------------------------------------------- 1 | test_basic.test -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/test_int_add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/tests/test_int_add.c -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/test_int_add.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/tests/test_int_add.expected -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/test_int_add.test: -------------------------------------------------------------------------------- 1 | test_basic.test -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/test_json_pointer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/tests/test_json_pointer.c -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/test_json_pointer.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/tests/test_json_pointer.expected -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/test_json_pointer.test: -------------------------------------------------------------------------------- 1 | test_basic.test -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/test_locale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/tests/test_locale.c -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/test_locale.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/tests/test_locale.expected -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/test_locale.test: -------------------------------------------------------------------------------- 1 | test_basic.test -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/test_null.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/tests/test_null.c -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/test_null.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/tests/test_null.expected -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/test_null.test: -------------------------------------------------------------------------------- 1 | test_basic.test -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/test_parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/tests/test_parse.c -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/test_parse.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/tests/test_parse.expected -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/test_parse.test: -------------------------------------------------------------------------------- 1 | test_basic.test -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/test_parse_int64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/tests/test_parse_int64.c -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/test_parse_int64.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/tests/test_parse_int64.expected -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/test_parse_int64.test: -------------------------------------------------------------------------------- 1 | test_basic.test -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/test_printbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/tests/test_printbuf.c -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/test_printbuf.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/tests/test_printbuf.expected -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/test_printbuf.test: -------------------------------------------------------------------------------- 1 | test_basic.test -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/test_set_serializer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/tests/test_set_serializer.c -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/test_set_serializer.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/tests/test_set_serializer.expected -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/test_set_serializer.test: -------------------------------------------------------------------------------- 1 | test_basic.test -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/test_set_value.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/tests/test_set_value.c -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/test_set_value.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/tests/test_set_value.expected -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/test_set_value.test: -------------------------------------------------------------------------------- 1 | test_basic.test -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/test_util_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/tests/test_util_file.c -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/test_util_file.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/tests/test_util_file.expected -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/test_util_file.test: -------------------------------------------------------------------------------- 1 | test_basic.test -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/test_visit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/tests/test_visit.c -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/test_visit.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/tests/test_visit.expected -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/test_visit.test: -------------------------------------------------------------------------------- 1 | test_basic.test -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/valid.json: -------------------------------------------------------------------------------- 1 | {"foo":123} 2 | -------------------------------------------------------------------------------- /beacon/lib/json-c/tests/valid_nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/tests/valid_nested.json -------------------------------------------------------------------------------- /beacon/lib/json-c/vasprintf_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/json-c/vasprintf_compat.h -------------------------------------------------------------------------------- /beacon/lib/secure/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /beacon/lib/secure/imports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/secure/imports.h -------------------------------------------------------------------------------- /beacon/lib/secure/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/secure/main.c -------------------------------------------------------------------------------- /beacon/lib/secure/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/secure/main.h -------------------------------------------------------------------------------- /beacon/lib/stdlib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/stdlib/Makefile -------------------------------------------------------------------------------- /beacon/lib/stdlib/changedir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/stdlib/changedir.c -------------------------------------------------------------------------------- /beacon/lib/stdlib/getdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/stdlib/getdir.c -------------------------------------------------------------------------------- /beacon/lib/stdlib/getdir.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/stdlib/getdir.o -------------------------------------------------------------------------------- /beacon/lib/stdlib/getpid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/stdlib/getpid.c -------------------------------------------------------------------------------- /beacon/lib/stdlib/getps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/stdlib/getps.c -------------------------------------------------------------------------------- /beacon/lib/stdlib/listdirs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/stdlib/listdirs.c -------------------------------------------------------------------------------- /beacon/lib/stdlib/listdirs.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/stdlib/listdirs.o -------------------------------------------------------------------------------- /beacon/lib/stdlib/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/stdlib/main.c -------------------------------------------------------------------------------- /beacon/lib/stdlib/makedirectory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/stdlib/makedirectory.c -------------------------------------------------------------------------------- /beacon/lib/stdlib/makedirectory.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/stdlib/makedirectory.o -------------------------------------------------------------------------------- /beacon/lib/stdlib/readfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/stdlib/readfile.c -------------------------------------------------------------------------------- /beacon/lib/stdlib/readfile.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/stdlib/readfile.o -------------------------------------------------------------------------------- /beacon/lib/stdlib/removefile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/stdlib/removefile.c -------------------------------------------------------------------------------- /beacon/lib/stdlib/removefile.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/stdlib/removefile.o -------------------------------------------------------------------------------- /beacon/lib/stdlib/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/stdlib/stdlib.h -------------------------------------------------------------------------------- /beacon/lib/stdlib/whoami.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/lib/stdlib/whoami.c -------------------------------------------------------------------------------- /beacon/reflection/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/reflection/Makefile -------------------------------------------------------------------------------- /beacon/reflection/Makefile.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/reflection/Makefile.bak -------------------------------------------------------------------------------- /beacon/reflection/ReflectiveDLLInjection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/reflection/ReflectiveDLLInjection.h -------------------------------------------------------------------------------- /beacon/reflection/ReflectiveDll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/reflection/ReflectiveDll.c -------------------------------------------------------------------------------- /beacon/reflection/ReflectiveLoader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/reflection/ReflectiveLoader.c -------------------------------------------------------------------------------- /beacon/reflection/ReflectiveLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/reflection/ReflectiveLoader.h -------------------------------------------------------------------------------- /beacon/reflection/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/reflection/base64.c -------------------------------------------------------------------------------- /beacon/reflection/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/reflection/base64.h -------------------------------------------------------------------------------- /beacon/reflection/beacon.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/reflection/beacon.bin -------------------------------------------------------------------------------- /beacon/reflection/beacon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/reflection/beacon.c -------------------------------------------------------------------------------- /beacon/reflection/beacon.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/reflection/beacon.dll -------------------------------------------------------------------------------- /beacon/reflection/beacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/reflection/beacon.h -------------------------------------------------------------------------------- /beacon/reflection/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/reflection/core.c -------------------------------------------------------------------------------- /beacon/reflection/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/reflection/core.h -------------------------------------------------------------------------------- /beacon/reflection/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/reflection/debug.c -------------------------------------------------------------------------------- /beacon/reflection/loader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/reflection/loader.c -------------------------------------------------------------------------------- /beacon/reflection/loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/reflection/loader.h -------------------------------------------------------------------------------- /beacon/reflection/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/reflection/settings.h -------------------------------------------------------------------------------- /beacon/reflection/strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/reflection/strings.h -------------------------------------------------------------------------------- /beacon/reflection/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/reflection/syscalls.c -------------------------------------------------------------------------------- /beacon/reflection/syscalls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/reflection/syscalls.h -------------------------------------------------------------------------------- /beacon/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/src/Makefile -------------------------------------------------------------------------------- /beacon/src/ReflectiveLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/src/ReflectiveLoader.h -------------------------------------------------------------------------------- /beacon/src/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/src/base64.c -------------------------------------------------------------------------------- /beacon/src/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/src/base64.h -------------------------------------------------------------------------------- /beacon/src/beacon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/src/beacon.c -------------------------------------------------------------------------------- /beacon/src/beacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/src/beacon.h -------------------------------------------------------------------------------- /beacon/src/compression.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/src/compression.c -------------------------------------------------------------------------------- /beacon/src/compression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/src/compression.h -------------------------------------------------------------------------------- /beacon/src/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/src/core.c -------------------------------------------------------------------------------- /beacon/src/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/src/core.h -------------------------------------------------------------------------------- /beacon/src/crypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/src/crypt.c -------------------------------------------------------------------------------- /beacon/src/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/src/debug.c -------------------------------------------------------------------------------- /beacon/src/imports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/src/imports.h -------------------------------------------------------------------------------- /beacon/src/loader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/src/loader.c -------------------------------------------------------------------------------- /beacon/src/loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/src/loader.h -------------------------------------------------------------------------------- /beacon/src/resolve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/src/resolve.c -------------------------------------------------------------------------------- /beacon/src/scratchpad.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/src/scratchpad.txt -------------------------------------------------------------------------------- /beacon/src/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/src/settings.h -------------------------------------------------------------------------------- /beacon/src/strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/src/strings.h -------------------------------------------------------------------------------- /beacon/src/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/src/syscalls.c -------------------------------------------------------------------------------- /beacon/src/syscalls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/src/syscalls.h -------------------------------------------------------------------------------- /beacon/stager/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/stager/Makefile -------------------------------------------------------------------------------- /beacon/stager/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/stager/base64.c -------------------------------------------------------------------------------- /beacon/stager/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/stager/base64.h -------------------------------------------------------------------------------- /beacon/stager/callback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/stager/callback.c -------------------------------------------------------------------------------- /beacon/stager/crypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/stager/crypt.c -------------------------------------------------------------------------------- /beacon/stager/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/stager/debug.c -------------------------------------------------------------------------------- /beacon/stager/imports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/stager/imports.h -------------------------------------------------------------------------------- /beacon/stager/loader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/stager/loader.c -------------------------------------------------------------------------------- /beacon/stager/loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/stager/loader.h -------------------------------------------------------------------------------- /beacon/stager/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/stager/main.c -------------------------------------------------------------------------------- /beacon/stager/main.h: -------------------------------------------------------------------------------- 1 | #define _CALLBACK_URL L"/stage" -------------------------------------------------------------------------------- /beacon/stager/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/stager/settings.h -------------------------------------------------------------------------------- /beacon/stager/strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/stager/strings.h -------------------------------------------------------------------------------- /beacon/stager/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/stager/syscalls.c -------------------------------------------------------------------------------- /beacon/stager/syscalls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/beacon/stager/syscalls.h -------------------------------------------------------------------------------- /bin/SharpSocks.x86.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/bin/SharpSocks.x86.exe -------------------------------------------------------------------------------- /bin/donut.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/bin/donut.elf -------------------------------------------------------------------------------- /bin/gitl.x64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/bin/gitl.x64.exe -------------------------------------------------------------------------------- /bin/metasploit/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/mimikatz.x64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/bin/mimikatz.x64.exe -------------------------------------------------------------------------------- /bin/whoami.x64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/bin/whoami.x64.exe -------------------------------------------------------------------------------- /certs/cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/certs/cert.pem -------------------------------------------------------------------------------- /certs/key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/certs/key.pem -------------------------------------------------------------------------------- /exploits/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/exploits/__init__.py -------------------------------------------------------------------------------- /exploits/system_printspoofer/__pycache__/system_printspoofer.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/exploits/system_printspoofer/__pycache__/system_printspoofer.cpython-38.pyc -------------------------------------------------------------------------------- /exploits/system_printspoofer/check.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/exploits/system_printspoofer/check.exe -------------------------------------------------------------------------------- /exploits/system_printspoofer/exploit.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/exploits/system_printspoofer/exploit.exe -------------------------------------------------------------------------------- /exploits/system_printspoofer/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/exploits/system_printspoofer/src/Makefile -------------------------------------------------------------------------------- /exploits/system_printspoofer/src/build/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/exploits/system_printspoofer/src/build/Makefile -------------------------------------------------------------------------------- /exploits/system_printspoofer/src/build/exploit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/exploits/system_printspoofer/src/build/exploit.c -------------------------------------------------------------------------------- /exploits/system_printspoofer/src/build/exploit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/exploits/system_printspoofer/src/build/exploit.h -------------------------------------------------------------------------------- /exploits/system_printspoofer/src/build/ms-rprn_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/exploits/system_printspoofer/src/build/ms-rprn_c.c -------------------------------------------------------------------------------- /exploits/system_printspoofer/src/build/ms-rprn_h.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/exploits/system_printspoofer/src/build/ms-rprn_h.h -------------------------------------------------------------------------------- /exploits/system_printspoofer/src/build/ms-rprn_s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/exploits/system_printspoofer/src/build/ms-rprn_s.c -------------------------------------------------------------------------------- /exploits/system_printspoofer/src/build/stage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/exploits/system_printspoofer/src/build/stage.h -------------------------------------------------------------------------------- /exploits/system_printspoofer/src/check/check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/exploits/system_printspoofer/src/check/check.c -------------------------------------------------------------------------------- /exploits/system_printspoofer/src/check/check.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /exploits/system_printspoofer/src/exploit/exploit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/exploits/system_printspoofer/src/exploit/exploit.c -------------------------------------------------------------------------------- /exploits/system_printspoofer/src/exploit/exploit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/exploits/system_printspoofer/src/exploit/exploit.h -------------------------------------------------------------------------------- /exploits/system_printspoofer/src/exploit/ms-rprn_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/exploits/system_printspoofer/src/exploit/ms-rprn_c.c -------------------------------------------------------------------------------- /exploits/system_printspoofer/src/exploit/ms-rprn_h.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/exploits/system_printspoofer/src/exploit/ms-rprn_h.h -------------------------------------------------------------------------------- /exploits/system_printspoofer/src/exploit/ms-rprn_s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/exploits/system_printspoofer/src/exploit/ms-rprn_s.c -------------------------------------------------------------------------------- /exploits/system_printspoofer/src/exploit/stage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/exploits/system_printspoofer/src/exploit/stage.h -------------------------------------------------------------------------------- /exploits/system_printspoofer/system_printspoofer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/exploits/system_printspoofer/system_printspoofer.py -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/install.sh -------------------------------------------------------------------------------- /lib/ShellcodeRDI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/ShellcodeRDI.py -------------------------------------------------------------------------------- /lib/__pycache__/auxiliary.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/__pycache__/auxiliary.cpython-37.pyc -------------------------------------------------------------------------------- /lib/__pycache__/auxiliary.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/__pycache__/auxiliary.cpython-38.pyc -------------------------------------------------------------------------------- /lib/__pycache__/banner.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/__pycache__/banner.cpython-37.pyc -------------------------------------------------------------------------------- /lib/__pycache__/banner.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/__pycache__/banner.cpython-38.pyc -------------------------------------------------------------------------------- /lib/__pycache__/buildtools.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/__pycache__/buildtools.cpython-38.pyc -------------------------------------------------------------------------------- /lib/__pycache__/compile.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/__pycache__/compile.cpython-37.pyc -------------------------------------------------------------------------------- /lib/__pycache__/compile.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/__pycache__/compile.cpython-38.pyc -------------------------------------------------------------------------------- /lib/__pycache__/console.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/__pycache__/console.cpython-37.pyc -------------------------------------------------------------------------------- /lib/__pycache__/console.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/__pycache__/console.cpython-38.pyc -------------------------------------------------------------------------------- /lib/__pycache__/debug.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/__pycache__/debug.cpython-37.pyc -------------------------------------------------------------------------------- /lib/__pycache__/debug.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/__pycache__/debug.cpython-38.pyc -------------------------------------------------------------------------------- /lib/__pycache__/encryption.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/__pycache__/encryption.cpython-37.pyc -------------------------------------------------------------------------------- /lib/__pycache__/encryption.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/__pycache__/encryption.cpython-38.pyc -------------------------------------------------------------------------------- /lib/__pycache__/http_server.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/__pycache__/http_server.cpython-37.pyc -------------------------------------------------------------------------------- /lib/__pycache__/http_server.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/__pycache__/http_server.cpython-38.pyc -------------------------------------------------------------------------------- /lib/__pycache__/input_handler.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/__pycache__/input_handler.cpython-37.pyc -------------------------------------------------------------------------------- /lib/__pycache__/input_handler.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/__pycache__/input_handler.cpython-38.pyc -------------------------------------------------------------------------------- /lib/__pycache__/mirror.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/__pycache__/mirror.cpython-38.pyc -------------------------------------------------------------------------------- /lib/__pycache__/path_handler.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/__pycache__/path_handler.cpython-37.pyc -------------------------------------------------------------------------------- /lib/__pycache__/path_handler.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/__pycache__/path_handler.cpython-38.pyc -------------------------------------------------------------------------------- /lib/__pycache__/responce_builder.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/__pycache__/responce_builder.cpython-37.pyc -------------------------------------------------------------------------------- /lib/__pycache__/responce_builder.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/__pycache__/responce_builder.cpython-38.pyc -------------------------------------------------------------------------------- /lib/__pycache__/shellcode.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/__pycache__/shellcode.cpython-38.pyc -------------------------------------------------------------------------------- /lib/__pycache__/tools.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/__pycache__/tools.cpython-37.pyc -------------------------------------------------------------------------------- /lib/__pycache__/tools.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/__pycache__/tools.cpython-38.pyc -------------------------------------------------------------------------------- /lib/auxiliary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/auxiliary.py -------------------------------------------------------------------------------- /lib/banner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/banner.py -------------------------------------------------------------------------------- /lib/basecommand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/basecommand.py -------------------------------------------------------------------------------- /lib/buildtools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/buildtools.py -------------------------------------------------------------------------------- /lib/cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/cmd.py -------------------------------------------------------------------------------- /lib/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/commands/__init__.py -------------------------------------------------------------------------------- /lib/commands/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/commands/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /lib/commands/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/commands/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /lib/commands/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/commands/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /lib/commands/__pycache__/beacons.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/commands/__pycache__/beacons.cpython-36.pyc -------------------------------------------------------------------------------- /lib/commands/__pycache__/beacons.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/commands/__pycache__/beacons.cpython-37.pyc -------------------------------------------------------------------------------- /lib/commands/__pycache__/beacons.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/commands/__pycache__/beacons.cpython-38.pyc -------------------------------------------------------------------------------- /lib/commands/__pycache__/cat.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/commands/__pycache__/cat.cpython-38.pyc -------------------------------------------------------------------------------- /lib/commands/__pycache__/cd.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/commands/__pycache__/cd.cpython-38.pyc -------------------------------------------------------------------------------- /lib/commands/__pycache__/download.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/commands/__pycache__/download.cpython-38.pyc -------------------------------------------------------------------------------- /lib/commands/__pycache__/elevate.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/commands/__pycache__/elevate.cpython-38.pyc -------------------------------------------------------------------------------- /lib/commands/__pycache__/execute.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/commands/__pycache__/execute.cpython-38.pyc -------------------------------------------------------------------------------- /lib/commands/__pycache__/exit.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/commands/__pycache__/exit.cpython-36.pyc -------------------------------------------------------------------------------- /lib/commands/__pycache__/exit.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/commands/__pycache__/exit.cpython-37.pyc -------------------------------------------------------------------------------- /lib/commands/__pycache__/exit.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/commands/__pycache__/exit.cpython-38.pyc -------------------------------------------------------------------------------- /lib/commands/__pycache__/help.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/commands/__pycache__/help.cpython-36.pyc -------------------------------------------------------------------------------- /lib/commands/__pycache__/help.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/commands/__pycache__/help.cpython-37.pyc -------------------------------------------------------------------------------- /lib/commands/__pycache__/help.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/commands/__pycache__/help.cpython-38.pyc -------------------------------------------------------------------------------- /lib/commands/__pycache__/loadpe.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/commands/__pycache__/loadpe.cpython-37.pyc -------------------------------------------------------------------------------- /lib/commands/__pycache__/loadpe.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/commands/__pycache__/loadpe.cpython-38.pyc -------------------------------------------------------------------------------- /lib/commands/__pycache__/ls.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/commands/__pycache__/ls.cpython-38.pyc -------------------------------------------------------------------------------- /lib/commands/__pycache__/mimikatz.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/commands/__pycache__/mimikatz.cpython-38.pyc -------------------------------------------------------------------------------- /lib/commands/__pycache__/mkdir.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/commands/__pycache__/mkdir.cpython-38.pyc -------------------------------------------------------------------------------- /lib/commands/__pycache__/pwd.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/commands/__pycache__/pwd.cpython-38.pyc -------------------------------------------------------------------------------- /lib/commands/__pycache__/rm.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/commands/__pycache__/rm.cpython-38.pyc -------------------------------------------------------------------------------- /lib/commands/__pycache__/shell.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/commands/__pycache__/shell.cpython-36.pyc -------------------------------------------------------------------------------- /lib/commands/__pycache__/shell.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/commands/__pycache__/shell.cpython-37.pyc -------------------------------------------------------------------------------- /lib/commands/__pycache__/shell.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/commands/__pycache__/shell.cpython-38.pyc -------------------------------------------------------------------------------- /lib/commands/__pycache__/touch.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/commands/__pycache__/touch.cpython-38.pyc -------------------------------------------------------------------------------- /lib/commands/__pycache__/upload.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/commands/__pycache__/upload.cpython-38.pyc -------------------------------------------------------------------------------- /lib/commands/__pycache__/whoami.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/commands/__pycache__/whoami.cpython-38.pyc -------------------------------------------------------------------------------- /lib/commands/__pycache__/write.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/commands/__pycache__/write.cpython-38.pyc -------------------------------------------------------------------------------- /lib/commands/back.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/commands/back.py -------------------------------------------------------------------------------- /lib/commands/beacons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/commands/beacons.py -------------------------------------------------------------------------------- /lib/commands/binject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/commands/binject.py -------------------------------------------------------------------------------- /lib/commands/cat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/commands/cat.py -------------------------------------------------------------------------------- /lib/commands/cd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/commands/cd.py -------------------------------------------------------------------------------- /lib/commands/die.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/commands/die.py -------------------------------------------------------------------------------- /lib/commands/dllinject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/commands/dllinject.py -------------------------------------------------------------------------------- /lib/commands/dotnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/commands/dotnet.py -------------------------------------------------------------------------------- /lib/commands/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/commands/download.py -------------------------------------------------------------------------------- /lib/commands/elevate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/commands/elevate.py -------------------------------------------------------------------------------- /lib/commands/execute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/commands/execute.py -------------------------------------------------------------------------------- /lib/commands/exit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/commands/exit.py -------------------------------------------------------------------------------- /lib/commands/getpid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/commands/getpid.py -------------------------------------------------------------------------------- /lib/commands/gitl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/commands/gitl.py -------------------------------------------------------------------------------- /lib/commands/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/commands/help.py -------------------------------------------------------------------------------- /lib/commands/hijack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/commands/hijack.py -------------------------------------------------------------------------------- /lib/commands/lockless.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/commands/lockless.py -------------------------------------------------------------------------------- /lib/commands/ls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/commands/ls.py -------------------------------------------------------------------------------- /lib/commands/meterpreter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/commands/meterpreter.py -------------------------------------------------------------------------------- /lib/commands/migrate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/commands/migrate.py -------------------------------------------------------------------------------- /lib/commands/mimikatz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/commands/mimikatz.py -------------------------------------------------------------------------------- /lib/commands/mkdir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/commands/mkdir.py -------------------------------------------------------------------------------- /lib/commands/ps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/commands/ps.py -------------------------------------------------------------------------------- /lib/commands/psh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/commands/psh.py -------------------------------------------------------------------------------- /lib/commands/pwd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/commands/pwd.py -------------------------------------------------------------------------------- /lib/commands/rm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/commands/rm.py -------------------------------------------------------------------------------- /lib/commands/rubeus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/commands/rubeus.py -------------------------------------------------------------------------------- /lib/commands/safetykatz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/commands/safetykatz.py -------------------------------------------------------------------------------- /lib/commands/seatbelt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/commands/seatbelt.py -------------------------------------------------------------------------------- /lib/commands/set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/commands/set.py -------------------------------------------------------------------------------- /lib/commands/sharpchrome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/commands/sharpchrome.py -------------------------------------------------------------------------------- /lib/commands/sharpdpapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/commands/sharpdpapi.py -------------------------------------------------------------------------------- /lib/commands/sharpdump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/commands/sharpdump.py -------------------------------------------------------------------------------- /lib/commands/sharphound.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/commands/sharphound.py -------------------------------------------------------------------------------- /lib/commands/sharpsocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/commands/sharpsocks.py -------------------------------------------------------------------------------- /lib/commands/sharpup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/commands/sharpup.py -------------------------------------------------------------------------------- /lib/commands/sharpwmi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/commands/sharpwmi.py -------------------------------------------------------------------------------- /lib/commands/shinject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/commands/shinject.py -------------------------------------------------------------------------------- /lib/commands/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/commands/upload.py -------------------------------------------------------------------------------- /lib/commands/watson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/commands/watson.py -------------------------------------------------------------------------------- /lib/commands/whoami.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/commands/whoami.py -------------------------------------------------------------------------------- /lib/compile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/compile.py -------------------------------------------------------------------------------- /lib/console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/console.py -------------------------------------------------------------------------------- /lib/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/debug.py -------------------------------------------------------------------------------- /lib/encryption.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/encryption.py -------------------------------------------------------------------------------- /lib/http_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/http_server.py -------------------------------------------------------------------------------- /lib/input_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/input_handler.py -------------------------------------------------------------------------------- /lib/mirror.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/mirror.py -------------------------------------------------------------------------------- /lib/path_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/path_handler.py -------------------------------------------------------------------------------- /lib/payload_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/payload_format.py -------------------------------------------------------------------------------- /lib/responce_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/responce_builder.py -------------------------------------------------------------------------------- /lib/shellcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/shellcode.py -------------------------------------------------------------------------------- /lib/templates/dll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/templates/dll.py -------------------------------------------------------------------------------- /lib/templates/exe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/templates/exe.py -------------------------------------------------------------------------------- /lib/templates/powershell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/templates/powershell.py -------------------------------------------------------------------------------- /lib/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/lib/tools.py -------------------------------------------------------------------------------- /modules/windows/dotnet/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/modules/windows/dotnet/Makefile -------------------------------------------------------------------------------- /modules/windows/dotnet/build/.shad0w_history: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/modules/windows/dotnet/build/.shad0w_history -------------------------------------------------------------------------------- /modules/windows/dotnet/build/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/modules/windows/dotnet/build/Makefile -------------------------------------------------------------------------------- /modules/windows/dotnet/build/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/modules/windows/dotnet/build/main.c -------------------------------------------------------------------------------- /modules/windows/dotnet/build/main.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/windows/dotnet/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/modules/windows/dotnet/main.c -------------------------------------------------------------------------------- /modules/windows/dotnet/main.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/windows/dotnet/module.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/modules/windows/dotnet/module.exe -------------------------------------------------------------------------------- /modules/windows/download/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/modules/windows/download/Makefile -------------------------------------------------------------------------------- /modules/windows/download/build/.shad0w_history: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/modules/windows/download/build/.shad0w_history -------------------------------------------------------------------------------- /modules/windows/download/build/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/modules/windows/download/build/Makefile -------------------------------------------------------------------------------- /modules/windows/download/build/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/modules/windows/download/build/main.c -------------------------------------------------------------------------------- /modules/windows/download/build/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/modules/windows/download/build/settings.h -------------------------------------------------------------------------------- /modules/windows/download/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/modules/windows/download/main.c -------------------------------------------------------------------------------- /modules/windows/download/module.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/modules/windows/download/module.exe -------------------------------------------------------------------------------- /modules/windows/download/settings.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/windows/psh/System.Management.Automation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/modules/windows/psh/System.Management.Automation.dll -------------------------------------------------------------------------------- /modules/windows/psh/build/System.Management.Automation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/modules/windows/psh/build/System.Management.Automation.dll -------------------------------------------------------------------------------- /modules/windows/psh/build/main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/modules/windows/psh/build/main.cs -------------------------------------------------------------------------------- /modules/windows/psh/build/psh.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/modules/windows/psh/build/psh.exe -------------------------------------------------------------------------------- /modules/windows/psh/main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/modules/windows/psh/main.cs -------------------------------------------------------------------------------- /modules/windows/psh/psh.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/modules/windows/psh/psh.exe -------------------------------------------------------------------------------- /modules/windows/sharpsocks/McMaster.Extensions.CommandLineUtils.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/modules/windows/sharpsocks/McMaster.Extensions.CommandLineUtils.dll -------------------------------------------------------------------------------- /modules/windows/sharpsocks/SharpSocksServerCore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/modules/windows/sharpsocks/SharpSocksServerCore -------------------------------------------------------------------------------- /modules/windows/sharpsocks/SharpSocksServerCore.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/modules/windows/sharpsocks/SharpSocksServerCore.deps.json -------------------------------------------------------------------------------- /modules/windows/sharpsocks/SharpSocksServerCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/modules/windows/sharpsocks/SharpSocksServerCore.dll -------------------------------------------------------------------------------- /modules/windows/sharpsocks/SharpSocksServerCore.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/modules/windows/sharpsocks/SharpSocksServerCore.pdb -------------------------------------------------------------------------------- /modules/windows/sharpsocks/SharpSocksServerCore.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/modules/windows/sharpsocks/SharpSocksServerCore.runtimeconfig.json -------------------------------------------------------------------------------- /modules/windows/shinject/.shad0w_history: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/modules/windows/shinject/.shad0w_history -------------------------------------------------------------------------------- /modules/windows/shinject/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/modules/windows/shinject/Makefile -------------------------------------------------------------------------------- /modules/windows/shinject/ReflectiveDLLInjection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/modules/windows/shinject/ReflectiveDLLInjection.h -------------------------------------------------------------------------------- /modules/windows/shinject/ReflectiveDll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/modules/windows/shinject/ReflectiveDll.c -------------------------------------------------------------------------------- /modules/windows/shinject/ReflectiveLoader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/modules/windows/shinject/ReflectiveLoader.c -------------------------------------------------------------------------------- /modules/windows/shinject/ReflectiveLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/modules/windows/shinject/ReflectiveLoader.h -------------------------------------------------------------------------------- /modules/windows/shinject/beacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/modules/windows/shinject/beacon.h -------------------------------------------------------------------------------- /modules/windows/shinject/build/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/modules/windows/shinject/build/Makefile -------------------------------------------------------------------------------- /modules/windows/shinject/build/ReflectiveDLLInjection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/modules/windows/shinject/build/ReflectiveDLLInjection.h -------------------------------------------------------------------------------- /modules/windows/shinject/build/ReflectiveDll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/modules/windows/shinject/build/ReflectiveDll.c -------------------------------------------------------------------------------- /modules/windows/shinject/build/ReflectiveLoader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/modules/windows/shinject/build/ReflectiveLoader.c -------------------------------------------------------------------------------- /modules/windows/shinject/build/ReflectiveLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/modules/windows/shinject/build/ReflectiveLoader.h -------------------------------------------------------------------------------- /modules/windows/shinject/build/beacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/modules/windows/shinject/build/beacon.h -------------------------------------------------------------------------------- /modules/windows/shinject/module.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/modules/windows/shinject/module.dll -------------------------------------------------------------------------------- /modules/windows/upload/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/modules/windows/upload/Makefile -------------------------------------------------------------------------------- /modules/windows/upload/build/.shad0w_history: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/modules/windows/upload/build/.shad0w_history -------------------------------------------------------------------------------- /modules/windows/upload/build/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/modules/windows/upload/build/Makefile -------------------------------------------------------------------------------- /modules/windows/upload/build/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/modules/windows/upload/build/main.c -------------------------------------------------------------------------------- /modules/windows/upload/build/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/modules/windows/upload/build/settings.h -------------------------------------------------------------------------------- /modules/windows/upload/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/modules/windows/upload/main.c -------------------------------------------------------------------------------- /modules/windows/upload/module.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/modules/windows/upload/module.exe -------------------------------------------------------------------------------- /modules/windows/upload/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/modules/windows/upload/settings.h -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/requirements.txt -------------------------------------------------------------------------------- /rules/ldrhook_6_6_2020.yara: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/rules/ldrhook_6_6_2020.yara -------------------------------------------------------------------------------- /rules/strings_16_6_2020.yara: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/rules/strings_16_6_2020.yara -------------------------------------------------------------------------------- /rules/strings_4_6_2020.yara: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/rules/strings_4_6_2020.yara -------------------------------------------------------------------------------- /scripts/BloodHound.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/scripts/BloodHound.ps1 -------------------------------------------------------------------------------- /scripts/GetComputerInfo.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/scripts/GetComputerInfo.ps1 -------------------------------------------------------------------------------- /scripts/GetHash.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/scripts/GetHash.ps1 -------------------------------------------------------------------------------- /scripts/GetSystem.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/scripts/GetSystem.ps1 -------------------------------------------------------------------------------- /scripts/HostRecon.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/scripts/HostRecon.ps1 -------------------------------------------------------------------------------- /scripts/InvokeBypassUAC.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/scripts/InvokeBypassUAC.ps1 -------------------------------------------------------------------------------- /scripts/PowerUp.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/scripts/PowerUp.ps1 -------------------------------------------------------------------------------- /scripts/PowerView.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/scripts/PowerView.ps1 -------------------------------------------------------------------------------- /shad0w: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/shad0w -------------------------------------------------------------------------------- /shad0w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/shad0w.png -------------------------------------------------------------------------------- /shad0w.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/shad0w/HEAD/shad0w.py --------------------------------------------------------------------------------