mirror of
https://github.com/v12-security/pocs.git
synced 2026-05-26 08:40:48 +00:00
TossUp
This commit is contained in:
parent
a82f4368ab
commit
8a0604c676
10 changed files with 1137 additions and 0 deletions
12
terramaster/rce/Makefile
Normal file
12
terramaster/rce/Makefile
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
CC := aarch64-linux-gnu-gcc
|
||||
CFLAGS := -shared -fPIC -nostartfiles
|
||||
|
||||
.PHONY: all clean
|
||||
|
||||
all: module.so
|
||||
|
||||
module.so: module.c redismodule.h
|
||||
$(CC) $(CFLAGS) -o $@ $<
|
||||
|
||||
clean:
|
||||
rm -f module.so
|
||||
Loading…
Add table
Add a link
Reference in a new issue