├── .DS_Store ├── DEF CON 32 - Red Team Village - Ozgun Kultekin - The SIEMless Hack Rewriting Reality with Log Injection.pdf ├── LICENSE ├── README.md ├── example-attack-templates ├── defcon-demo-attack.yaml ├── example.yaml ├── gpt-attack.yaml └── template.yaml ├── go.mod ├── go.sum ├── images ├── s3.png ├── ss1.png ├── ss2.png ├── ss4.png ├── ss5.png └── sticker.png ├── main.go └── pkg ├── attacks ├── nix_execve.go ├── raw_tcp.go ├── win_loginspam.go └── win_processcreate.go ├── cmd └── root.go ├── command ├── execute.go └── execute_raw.go ├── initialize ├── detect.go ├── iptables.go └── prereqs.go ├── network ├── callback.go └── listen.go ├── replacer └── replacer.go └── splunk ├── encodings.go ├── event.go ├── logfile.go ├── randomip.go └── rawtraffic.go /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oz9un/log-slapper/HEAD/.DS_Store -------------------------------------------------------------------------------- /DEF CON 32 - Red Team Village - Ozgun Kultekin - The SIEMless Hack Rewriting Reality with Log Injection.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oz9un/log-slapper/HEAD/DEF CON 32 - Red Team Village - Ozgun Kultekin - The SIEMless Hack Rewriting Reality with Log Injection.pdf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oz9un/log-slapper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oz9un/log-slapper/HEAD/README.md -------------------------------------------------------------------------------- /example-attack-templates/defcon-demo-attack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oz9un/log-slapper/HEAD/example-attack-templates/defcon-demo-attack.yaml -------------------------------------------------------------------------------- /example-attack-templates/example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oz9un/log-slapper/HEAD/example-attack-templates/example.yaml -------------------------------------------------------------------------------- /example-attack-templates/gpt-attack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oz9un/log-slapper/HEAD/example-attack-templates/gpt-attack.yaml -------------------------------------------------------------------------------- /example-attack-templates/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oz9un/log-slapper/HEAD/example-attack-templates/template.yaml -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oz9un/log-slapper/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oz9un/log-slapper/HEAD/go.sum -------------------------------------------------------------------------------- /images/s3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oz9un/log-slapper/HEAD/images/s3.png -------------------------------------------------------------------------------- /images/ss1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oz9un/log-slapper/HEAD/images/ss1.png -------------------------------------------------------------------------------- /images/ss2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oz9un/log-slapper/HEAD/images/ss2.png -------------------------------------------------------------------------------- /images/ss4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oz9un/log-slapper/HEAD/images/ss4.png -------------------------------------------------------------------------------- /images/ss5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oz9un/log-slapper/HEAD/images/ss5.png -------------------------------------------------------------------------------- /images/sticker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oz9un/log-slapper/HEAD/images/sticker.png -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oz9un/log-slapper/HEAD/main.go -------------------------------------------------------------------------------- /pkg/attacks/nix_execve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oz9un/log-slapper/HEAD/pkg/attacks/nix_execve.go -------------------------------------------------------------------------------- /pkg/attacks/raw_tcp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oz9un/log-slapper/HEAD/pkg/attacks/raw_tcp.go -------------------------------------------------------------------------------- /pkg/attacks/win_loginspam.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oz9un/log-slapper/HEAD/pkg/attacks/win_loginspam.go -------------------------------------------------------------------------------- /pkg/attacks/win_processcreate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oz9un/log-slapper/HEAD/pkg/attacks/win_processcreate.go -------------------------------------------------------------------------------- /pkg/cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oz9un/log-slapper/HEAD/pkg/cmd/root.go -------------------------------------------------------------------------------- /pkg/command/execute.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oz9un/log-slapper/HEAD/pkg/command/execute.go -------------------------------------------------------------------------------- /pkg/command/execute_raw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oz9un/log-slapper/HEAD/pkg/command/execute_raw.go -------------------------------------------------------------------------------- /pkg/initialize/detect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oz9un/log-slapper/HEAD/pkg/initialize/detect.go -------------------------------------------------------------------------------- /pkg/initialize/iptables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oz9un/log-slapper/HEAD/pkg/initialize/iptables.go -------------------------------------------------------------------------------- /pkg/initialize/prereqs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oz9un/log-slapper/HEAD/pkg/initialize/prereqs.go -------------------------------------------------------------------------------- /pkg/network/callback.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oz9un/log-slapper/HEAD/pkg/network/callback.go -------------------------------------------------------------------------------- /pkg/network/listen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oz9un/log-slapper/HEAD/pkg/network/listen.go -------------------------------------------------------------------------------- /pkg/replacer/replacer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oz9un/log-slapper/HEAD/pkg/replacer/replacer.go -------------------------------------------------------------------------------- /pkg/splunk/encodings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oz9un/log-slapper/HEAD/pkg/splunk/encodings.go -------------------------------------------------------------------------------- /pkg/splunk/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oz9un/log-slapper/HEAD/pkg/splunk/event.go -------------------------------------------------------------------------------- /pkg/splunk/logfile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oz9un/log-slapper/HEAD/pkg/splunk/logfile.go -------------------------------------------------------------------------------- /pkg/splunk/randomip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oz9un/log-slapper/HEAD/pkg/splunk/randomip.go -------------------------------------------------------------------------------- /pkg/splunk/rawtraffic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oz9un/log-slapper/HEAD/pkg/splunk/rawtraffic.go --------------------------------------------------------------------------------