Questions tagged [ssid]

SSID is a case sensitive, 32 alphanumeric character unique identifier attached to the header of packets sent over a wireless local-area network (WLAN).

SSID is short for Service Set Identifier.

SSID acts as a password when a mobile device tries to connect to the basic service set (BSS).

The SSID differentiates one WLAN from another, so all access points and all devices attempting to connect to a specific WLAN must use the same SSID to enable effective roaming. As part of the association process, a wireless client must have the same SSID as the one put in the access point or it will not be permitted to join the BSS.

SSID is considered to be a fairly weak form of security because an SSID can be sniffed in plain text from a packet and most access points broadcast the SSID. Some network administrators turn off SSID broadcasting, but a hacker can still sniff the SSID from frames that stations use when associating with an access point. An SSID is also referred to as a network name because essentially it is a name that identifies a wireless network.

207 questions
11
votes
3 answers

iOS 11.0 - Periodically scan for SSIDs (WiFi) nearby

I would like to scan for nearby SSIDs of the Wi-Fi networks periodically (without connecting to it) and implement an SSID filter (one or multiple). Once a match is found a back-end API call is initiated. 
I have done a quick research on the Hotspot…
Shamsudheen TK
  • 30,739
  • 9
  • 69
  • 102
11
votes
3 answers

using startMonitoringEventWithType: error: in the effort to detect wifi SSID change

Apple seems to introduce quite a change with Yosemite and CoreWLAN framework. I would like to use its new API, quoting the header file: /*! * @method * * @param type * A CWEventType value. * * @param error * An NSError object passed by…
10
votes
4 answers

Unable to get WIFI SSID using onCapabilitiesChanged in Android 12

Description I am unable to get WIFI SSID using the onCapabilitiesChanged in the ConnectivityManager.NetworkCallback class in Android-12. In Android-12, getConnectionInfo is deprecated. So, as the android document suggests I am trying to get the…
Chirag Bhuva
  • 851
  • 7
  • 14
10
votes
2 answers

Getting OSX Connected Wi-Fi Network Name

I need to get the name of the currently connected Wi-Fi SSID on OSX. I've messed with the SystemConfiguration framework, I feel like it is there (as I am able to get the name of the network locaiton) but I am not really finding a way of getting the…
EduAlm
  • 813
  • 3
  • 11
  • 27
9
votes
3 answers

How to get the wifi name(SSID) of the currently connected wifi in Flutter

With the help of this Connectivity Plugin, I am able to get the connection status i.e. mobile network, wifi or none using the following code: import 'dart:async'; import 'package:flutter/material.dart'; import…
Sarthak Verma
  • 388
  • 3
  • 7
  • 18
9
votes
1 answer

Is it possible to get the SSID & MAC Address of Currently connected WiFi Network in an App

I am looking for a way to get both the MAC Adress and the SSID of the currently connected WiFi Network in my project. I have used Tony Million's Reachability to decide when the user is on a WiFi network or not and was testing Kenial's NICInfo only…
aDam_Nerd
  • 143
  • 1
  • 1
  • 5
8
votes
7 answers

How can someone get the BSSID of a router without connecting to it?

How can someone get the BSSID of a router without connecting to it in order to differentiate between duplicate SSIDs? Does a router broadcast the BSSID?
user1973385
  • 145
  • 1
  • 1
  • 8
7
votes
1 answer

How to set the default WIFI network in mac?

My Mac is getting connected to a default network always. I want to change the default wifi network. How can i do that? Thanks and Regards
Anish Chandran
  • 141
  • 1
  • 8
7
votes
1 answer

How to get the SSID of all configured WiFi networks programmatically?

I want to get all WiFi detail which i have added password. Code: WifiManager wifiManager = (WifiManager) getApplicationContext() .getSystemService(Context.WIFI_SERVICE); List configuredList =…
DevThapa
  • 173
  • 2
  • 12
7
votes
2 answers

Get SSID of disconnected WiFi network in Android using BroadcastReceiver?

I have the following BroadcastRecevier: public class WiFiConnectionEventsReceiver extends BroadcastReceiver { private static final String TAG = WiFiConnectionEventsReceiver.class.getSimpleName(); @Override public void onReceive(Context…
Rory
  • 4,030
  • 4
  • 17
  • 21
6
votes
1 answer

MonoTouch WIFI SSID

is there a possibility to get on an IPhone the connected WIFI SSID with Monotouch? I have found a possibility to check the Wi-Fi States but there is no way to check the SSID.…
user1120866
  • 105
  • 7
6
votes
3 answers

Getting Wifi SSID from ConnectivityManager NetworkCapabilities synchronously

Currently, the most popular method of getting the SSID of the Wifi network the Android device is connected to is using WifiManager's getConnectionInfo() method. However, that method is deprecated in API level 31. According to the documentation,…
kevdliu
  • 1,709
  • 4
  • 29
  • 46
6
votes
1 answer

WifiInfo returning null

I have been working on this for a few days after following this guide online. I am using target API 30 (building on a device using Android 11). Trying to get the Wifi SSID using networkCapabilities this keeps returning null whereas the depreciated…
958
  • 178
  • 1
  • 9
6
votes
0 answers

Add Suffix to name of WiFi Direct Group name. (similar to what PDANet does)

I am trying to create a WiFi Direct Group with a custom name. But after exploring all the options I came to know that we cannot change the name and Android OS decide itself about the name of WiFi Direct Group I even tried Reflection to achieve the…
Rahul Sharma
  • 2,867
  • 2
  • 27
  • 40
6
votes
4 answers

On the iPhone, is it possible to find out which WIFI network we are connected to?

If yes, can we also get additional information about the network configuration? One useful way to do this could be getting the SSID of the current network. Is there an API to do that? Update: I found a similar question here: Can the iPhone SDK…
Plumenator
  • 1,682
  • 3
  • 20
  • 49
1
2
3
13 14