
Security News
PodRocket Podcast: Inside the Recent npm Supply Chain Attacks
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
github.com/PopcornComputer/wifi-onboarding
Copyright (C) 2017 Next Thing Co. software@nextthing.co
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/
Method | Path | Use |
---|---|---|
GET | /ap/list | Returns an array of Service structs. |
GET | /ap/status | Returns a Status struct. |
POST | /ap/connect | Accepts values from a urlencoded form or multipart form. Returns a Status struct. |
Request access point list:
curl -H 'Accept: application/json' http://192.168.84.1:8080/ap/list
Protip: You can use any arbitrary address
Example Response:
[
{
"Path": "/net/connman/service/<example path>",
"Name": "<example SSID>",
"Type": "wifi",
"State": "idle",
"Error": "",
...
}
]
Request a connection:
curl -X POST -H 'Accept: application/json' -F 'accessPointPath=<Path here>' -F 'accessPointPassKey=<Password here>' http://192.168.84.1:8080/ap/connect
Example Response:
{
"has_credentials": true,
"connecting": true,
"connected": false,
"error": nil,
}
type Status struct {
HasCredentials bool
Connecting bool
Connected bool
Error error
}
FAQs
Unknown package
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
Security News
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
Product
Socket Firewall is a free tool that blocks malicious packages at install time, giving developers proactive protection against rising supply chain attacks.