-
Notifications
You must be signed in to change notification settings - Fork 26
/
config.toml
64 lines (54 loc) · 1.95 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
56
57
58
59
60
61
62
63
64
[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]
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]
interface = "wlan0" # interface to use for wifi hacking
apSpam = [
"otterwrks.co?$?5"
# explaining the syntax:
# basically just add `?$?` and then a number after it to loop a specific ap X amount of times
# so basically, if you wanted to repeat `Hello World` 6 times, it would be `Hello World?$?6`
# then, it'll come out as 'Hello World 1', 'Hello World 2', 'Hello World 3', you get the rest
# the # of aps that'll actually show depend on your environment, but usually around 15-20 max.
]
[badusb]
usbBin = "/piusb.bin" # path to usb storage bin file
mountFolder = "/mnt/pwnhyve" # 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