forked from f0rb1dd3n/Reptile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Kconfig
68 lines (50 loc) · 1.36 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
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