AP gets created, but tinycheck doesnt proceed
See original GitHub issueHey,
Ive installed TinyCheck on my Rasberry Pi zero W. And after some struggles to get it all working it now stops working at the point where it should show the QR code with created AP name and password. I can connect to the AP, also have a connection. But tinycheck doesnt go on…
I watched the debugger in firefox and it shows:
Uncaught (in promise) Error: timeout of 30000ms exceeded exports createError.js:16 ontimeout xhr.js:103
So thats probably this part?:
methods: {
generate_ap: function() {
clearInterval(this.interval)
this.ssid_name = false
axios.get(/api/network/ap/start
, { timeout: 30000 })
.then(response => (this.show_ap(response.data)))
Any clues what i could do? Is it maybe the QR code what doesnt get generated or? Thanks in advance.
Issue Analytics
- State:
- Created 3 years ago
- Comments:13 (5 by maintainers)
Top Results From Across the Web
TinyCheck: Easily capture network communications coming ...
I have often setup similar devices for R&D at work, using Hostapd to create an AP using Pis internal WiFi and ethernet uplink....
Read more >TinyCheck: Stalkerware detection that doesn't leave a trace
A new tool from a partner in the Coalition Against Stalkerware can detect stalkerware-type apps without any installation on a phone.
Read more >More privacy control for all with TinyCheck tool - Kaspersky
Initially developed as a stalkerware detection tool for service organizations working with victims of domestic violence, TinyCheck now also ...
Read more >Free tool to Detect Stalkerware and Spyware Apps in Android ...
TinyCheck is Kaspersky's free and open-source tool for detecting stalkerware and monitoring apps. First, it was created in 2019 as an effect ...
Read more >TinyCheck: Open Source Stalkerware Detector | Medium
Stalkerware is hidden software that enables users to spy on people through their ... Stalkerware detection tool that doesn't leave a trace.
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
@felixaime The fix worked. ive ran the update.sh again and i dont get the timeout again.
Ah nevermind the new problem 😃 Ive ran update.sh aswell. That does remove the rsa keys but doesnt generate new ones. So after running
openssl req -x509 -subj '/CN=tinycheck.local/O=TinyCheck Backend' -newkey rsa:4096 -nodes -keyout /usr/share/tinycheck/server/backend/key.pem -out /usr/share/tinycheck/server/backend/cert.pem -days 3650
it worked again!