95 lines
2.6 KiB
TOML
95 lines
2.6 KiB
TOML
main.name = "pwnagotchi"
|
|
main.lang = "fr"
|
|
main.whitelist = [
|
|
"Gallifrey",
|
|
"Tardis"
|
|
]
|
|
|
|
main.plugins.grid.enabled = true
|
|
main.plugins.grid.report = true
|
|
main.plugins.grid.exclude = [
|
|
"Gallifrey"
|
|
]
|
|
|
|
main.plugins.auto-update.enabled = true
|
|
main.plugins.auto-update.install = true
|
|
main.plugins.auto-update.interval = 1
|
|
|
|
main.plugins.ups_lite.enabled = true
|
|
main.plugins.ups_lite.shutdown = 5
|
|
|
|
main.log.path = "/var/log/pwnagotchi.log"
|
|
main.log.rotation.enabled = true
|
|
main.log.rotation.size = "10M"
|
|
|
|
ui.display.enabled = true
|
|
ui.display.rotation = 180
|
|
ui.display.type = "waveshare_2"
|
|
ui.display.color = "black"
|
|
|
|
ui.web.enabled = true
|
|
ui.web.address = "0.0.0.0"
|
|
ui.web.username = "changeme"
|
|
ui.web.password = "changeme"
|
|
ui.web.origin = ""
|
|
ui.web.port = 8080
|
|
ui.web.on_frame = ""
|
|
|
|
main.plugins.net-pos.enabled = true
|
|
main.plugins.net-pos.api_key = "test"
|
|
|
|
main.plugins.gps.enabled = true
|
|
main.plugins.gps.speed = 19200
|
|
main.plugins.gps.device = "/dev/ttyUSB0"
|
|
|
|
main.plugins.webgpsmap.enabled = true
|
|
|
|
main.plugins.onlinehashcrack.enabled = true
|
|
main.plugins.onlinehashcrack.email = ""
|
|
main.plugins.onlinehashcrack.dashboard = ""
|
|
main.plugins.onlinehashcrack.single_files = false
|
|
main.plugins.onlinehashcrack.whitelist = []
|
|
|
|
main.plugins.wpa-sec.enabled = true
|
|
main.plugins.wpa-sec.api_key = ""
|
|
main.plugins.wpa-sec.api_url = "https://wpa-sec.stanev.org"
|
|
main.plugins.wpa-sec.download_results = false
|
|
main.plugins.wpa-sec.whitelist = []
|
|
|
|
main.plugins.wigle.enabled = true
|
|
main.plugins.wigle.api_key = ""
|
|
main.plugins.wigle.whitelist = []
|
|
main.plugins.wigle.donate = true
|
|
|
|
main.plugins.bt-tether.enabled = true
|
|
|
|
main.plugins.bt-tether.devices.ios-phone.enabled = true
|
|
main.plugins.bt-tether.devices.ios-phone.search_order = 2
|
|
main.plugins.bt-tether.devices.ios-phone.mac = ""
|
|
main.plugins.bt-tether.devices.ios-phone.ip = "172.20.10.6"
|
|
main.plugins.bt-tether.devices.ios-phone.netmask = 24
|
|
main.plugins.bt-tether.devices.ios-phone.interval = 5
|
|
main.plugins.bt-tether.devices.ios-phone.scantime = 20
|
|
main.plugins.bt-tether.devices.ios-phone.max_tries = 0
|
|
main.plugins.bt-tether.devices.ios-phone.share_internet = true
|
|
main.plugins.bt-tether.devices.ios-phone.priority = 999
|
|
|
|
main.plugins.memtemp.enabled = true
|
|
main.plugins.memtemp.scale = "celsius"
|
|
main.plugins.memtemp.orientation = "horizontal"
|
|
|
|
ai.enabled = true
|
|
ai.path = "/root/brain.nn"
|
|
ai.laziness = 0.1
|
|
ai.epochs_per_episode = 50
|
|
|
|
ai.params.gamma = 0.99
|
|
ai.params.n_steps = 1
|
|
ai.params.vf_coef = 0.25
|
|
ai.params.ent_coef = 0.01
|
|
ai.params.max_grad_norm = 0.5
|
|
ai.params.learning_rate = 0.001
|
|
ai.params.alpha = 0.99
|
|
ai.params.epsilon = 0.00001
|
|
ai.params.verbose = 1
|
|
ai.params.lr_schedule = "constant" |