/
githubmirror
/
metasploit-framework
Обзор
Документация
Войти
/
githubmirror
/
metasploit-framework
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
data/exploits/redis/rmutil/Makefile
31 строка
636 B
Green-m
Add redis rce module and data stuff.
17 июл 2019, 10:33
Не верифицирован
17 июл 2019, 10:33
b6697f5
Код
Авторство
О чём код?
# set environment variable RM_INCLUDE_DIR to the location of redismodule.h ifndef RM_INCLUDE_DIR RM_INCLUDE_DIR=../ endif CFLAGS ?= -g -fPIC -O3 -std=gnu99 -Wall -Wno-unused-function CFLAGS += -I$(RM_INCLUDE_DIR) CC=gcc OBJS=util.o strings.o sds.o vector.o alloc.o periodic.o all: librmutil.a clean: rm -rf *.o *.a librmutil.a: $(OBJS) ar rcs $@ $^ test_vector: test_vector.o vector.o $(CC) -Wall -o $@ $^ -lc -lpthread -O0 @(sh -c ./$@) .PHONY: test_vector test_periodic: test_periodic.o periodic.o $(CC) -Wall -o $@ $^ -lc -lpthread -O0 @(sh -c ./$@) .PHONY: test_periodic test: test_periodic test_vector .PHONY: test