├── .gitignore ├── IoC ├── README.md └── sysrv_ioc ├── LICENSE.md ├── README.md ├── Research_materials ├── Golang_reversing │ ├── Botconf2022 - Sysrv.pdf │ ├── README.md │ ├── hacktivity2020.pdf │ ├── hello │ │ ├── hello.c │ │ ├── hello.go │ │ ├── hello_c │ │ ├── hello_c_strip │ │ ├── hello_go │ │ ├── hello_go.exe │ │ ├── hello_go_strip │ │ └── hello_go_strip.exe │ ├── reversing_golang_binaries_with_ghidra.pdf │ └── world │ │ ├── world.c │ │ ├── world.go │ │ ├── world_c │ │ ├── world_c_strip │ │ ├── world_go │ │ ├── world_go.exe │ │ ├── world_go_println │ │ ├── world_go_strip │ │ └── world_go_strip.exe ├── README.md └── ThreadFlipper │ ├── FlipperZeroScript │ └── README.md │ ├── NrfThreadFirmware │ └── README.md │ └── README.md ├── Rules └── README.md └── Scripts ├── DEFCON-CTF-Q-2021 └── solve.py ├── Ghidra ├── README.md ├── find_dynamic_strings.py ├── find_static_strings.py ├── go_func.py └── type_extract.py └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /IoC/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getCUJO/ThreatIntel/HEAD/IoC/README.md -------------------------------------------------------------------------------- /IoC/sysrv_ioc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getCUJO/ThreatIntel/HEAD/IoC/sysrv_ioc -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getCUJO/ThreatIntel/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getCUJO/ThreatIntel/HEAD/README.md -------------------------------------------------------------------------------- /Research_materials/Golang_reversing/Botconf2022 - Sysrv.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getCUJO/ThreatIntel/HEAD/Research_materials/Golang_reversing/Botconf2022 - Sysrv.pdf -------------------------------------------------------------------------------- /Research_materials/Golang_reversing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getCUJO/ThreatIntel/HEAD/Research_materials/Golang_reversing/README.md -------------------------------------------------------------------------------- /Research_materials/Golang_reversing/hacktivity2020.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getCUJO/ThreatIntel/HEAD/Research_materials/Golang_reversing/hacktivity2020.pdf -------------------------------------------------------------------------------- /Research_materials/Golang_reversing/hello/hello.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main() 4 | { 5 | printf("Hello, Hacktivity!\n"); 6 | return 0; 7 | } 8 | -------------------------------------------------------------------------------- /Research_materials/Golang_reversing/hello/hello.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getCUJO/ThreatIntel/HEAD/Research_materials/Golang_reversing/hello/hello.go -------------------------------------------------------------------------------- /Research_materials/Golang_reversing/hello/hello_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getCUJO/ThreatIntel/HEAD/Research_materials/Golang_reversing/hello/hello_c -------------------------------------------------------------------------------- /Research_materials/Golang_reversing/hello/hello_c_strip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getCUJO/ThreatIntel/HEAD/Research_materials/Golang_reversing/hello/hello_c_strip -------------------------------------------------------------------------------- /Research_materials/Golang_reversing/hello/hello_go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getCUJO/ThreatIntel/HEAD/Research_materials/Golang_reversing/hello/hello_go -------------------------------------------------------------------------------- /Research_materials/Golang_reversing/hello/hello_go.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getCUJO/ThreatIntel/HEAD/Research_materials/Golang_reversing/hello/hello_go.exe -------------------------------------------------------------------------------- /Research_materials/Golang_reversing/hello/hello_go_strip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getCUJO/ThreatIntel/HEAD/Research_materials/Golang_reversing/hello/hello_go_strip -------------------------------------------------------------------------------- /Research_materials/Golang_reversing/hello/hello_go_strip.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getCUJO/ThreatIntel/HEAD/Research_materials/Golang_reversing/hello/hello_go_strip.exe -------------------------------------------------------------------------------- /Research_materials/Golang_reversing/reversing_golang_binaries_with_ghidra.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getCUJO/ThreatIntel/HEAD/Research_materials/Golang_reversing/reversing_golang_binaries_with_ghidra.pdf -------------------------------------------------------------------------------- /Research_materials/Golang_reversing/world/world.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getCUJO/ThreatIntel/HEAD/Research_materials/Golang_reversing/world/world.c -------------------------------------------------------------------------------- /Research_materials/Golang_reversing/world/world.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getCUJO/ThreatIntel/HEAD/Research_materials/Golang_reversing/world/world.go -------------------------------------------------------------------------------- /Research_materials/Golang_reversing/world/world_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getCUJO/ThreatIntel/HEAD/Research_materials/Golang_reversing/world/world_c -------------------------------------------------------------------------------- /Research_materials/Golang_reversing/world/world_c_strip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getCUJO/ThreatIntel/HEAD/Research_materials/Golang_reversing/world/world_c_strip -------------------------------------------------------------------------------- /Research_materials/Golang_reversing/world/world_go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getCUJO/ThreatIntel/HEAD/Research_materials/Golang_reversing/world/world_go -------------------------------------------------------------------------------- /Research_materials/Golang_reversing/world/world_go.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getCUJO/ThreatIntel/HEAD/Research_materials/Golang_reversing/world/world_go.exe -------------------------------------------------------------------------------- /Research_materials/Golang_reversing/world/world_go_println: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getCUJO/ThreatIntel/HEAD/Research_materials/Golang_reversing/world/world_go_println -------------------------------------------------------------------------------- /Research_materials/Golang_reversing/world/world_go_strip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getCUJO/ThreatIntel/HEAD/Research_materials/Golang_reversing/world/world_go_strip -------------------------------------------------------------------------------- /Research_materials/Golang_reversing/world/world_go_strip.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getCUJO/ThreatIntel/HEAD/Research_materials/Golang_reversing/world/world_go_strip.exe -------------------------------------------------------------------------------- /Research_materials/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getCUJO/ThreatIntel/HEAD/Research_materials/README.md -------------------------------------------------------------------------------- /Research_materials/ThreadFlipper/FlipperZeroScript/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Research_materials/ThreadFlipper/NrfThreadFirmware/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Research_materials/ThreadFlipper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getCUJO/ThreatIntel/HEAD/Research_materials/ThreadFlipper/README.md -------------------------------------------------------------------------------- /Rules/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getCUJO/ThreatIntel/HEAD/Rules/README.md -------------------------------------------------------------------------------- /Scripts/DEFCON-CTF-Q-2021/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getCUJO/ThreatIntel/HEAD/Scripts/DEFCON-CTF-Q-2021/solve.py -------------------------------------------------------------------------------- /Scripts/Ghidra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getCUJO/ThreatIntel/HEAD/Scripts/Ghidra/README.md -------------------------------------------------------------------------------- /Scripts/Ghidra/find_dynamic_strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getCUJO/ThreatIntel/HEAD/Scripts/Ghidra/find_dynamic_strings.py -------------------------------------------------------------------------------- /Scripts/Ghidra/find_static_strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getCUJO/ThreatIntel/HEAD/Scripts/Ghidra/find_static_strings.py -------------------------------------------------------------------------------- /Scripts/Ghidra/go_func.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getCUJO/ThreatIntel/HEAD/Scripts/Ghidra/go_func.py -------------------------------------------------------------------------------- /Scripts/Ghidra/type_extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getCUJO/ThreatIntel/HEAD/Scripts/Ghidra/type_extract.py -------------------------------------------------------------------------------- /Scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getCUJO/ThreatIntel/HEAD/Scripts/README.md --------------------------------------------------------------------------------