-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathconfig.toml
55 lines (46 loc) · 1.61 KB
/
config.toml
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
[display]
invert = false # whether invert the display vertically.
driver = "sh1106"
[driver_options] # supposed to be like an argument type of thing for display drivers
spi = true
[menu]
screenType = "flipper" # the theme/screen type to use, must match it's python file name
disableWrite = false # DEBUG
[controls]
invertJoystickVertical = false # whether to invert the joystick vertically,
invertJoystickHorizontal = false # or horizontally.
[vnc] # depreciated, VNC is being reworked
enableVNC = true # whether to stream the display (and controls, if chosen) to 0.0.0.0:11198
vncControl = true # if you allow remote control of the display
[wifi] # depreciated, wlan0 is the default for now
interface = "wlan0" # interface to use for wifi hacking
[badusb]
usbBin = "/piusb.bin" # path to usb storage bin file - must have leading forward slash
mountFolder = "/mnt/steinar" # path to mount usbBin for reading
keyboardPath = "/dev/hidg0" # path to the keyboard device
mousePath = "/dev/hidg1" # path to the mouse device
exfilFiles = [ # files to exfiltrate when found on a usb device
".xlsx",
".pdf",
".txt",
".docx",
".pptx",
".pptm",
".ppt",
".xps",
".potx",
".potm",
".pot",
".ppsx",
".ppsm",
".pps",
".mp4",
".jpg",
".png",
".bmp",
".html",
".mhtml",
".exe"
]
[plugins]
pluginsPath = "./plugins/" # path to the plugins folder