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
4
votes
0 answers

iOS Wifi SSID configuration displaying a subtitle in settings description cell

Does anyone know how to configure a wifi connection in order to have the following description in the settings (a cell including a title and a subtitle).
4
votes
1 answer

a connection cannot be made to redirector. Ensure that 'sql browser' service is running

So Im trying this sql server 2012, and I cant open any ssis package due to this error a connection cannot be made to redirector. Ensure that 'sql browser' service is running my Sql Browser is running for sure, I tried changing it under local…
user1429595
  • 2,635
  • 9
  • 25
  • 30
3
votes
1 answer

Android API 31, how to get the SSID?

Manifest (permissions declared and granted)
mbmc
  • 5,024
  • 5
  • 25
  • 53
3
votes
1 answer

Is it possible to get the wifi ssid in the background service?

I'm trying to get the wifi ssid in the background. While it is in the foreground, it works well. But when it is going to background, in my foreground service, it returns . Of course, it obtains Location permission. Is it possible to get the ssid in…
Zhming
  • 333
  • 3
  • 12
3
votes
1 answer

How to fetch SSID in iOS device with iOS 13

I have an Objective-C iPhone application and Currently I am using below code to get the connected Wifi name. But it is not working in iOS 13. How can I get the connected Wifi SSID in iOS 13? Currently I am using the below code in Swift: public class…
Wide Angle Technology
  • 1,184
  • 1
  • 8
  • 28
3
votes
1 answer

Connect to specific WiFi (Android Q)

In my app, I'm trying to connect automatically to a specific SSID (in android Q). I'm using "WifiNetworkSpecifier","NetworkRequest" and "ConnectivityManager" classes to do that. When I do a request, then a dialog appears on screen asking me to…
Faz
  • 322
  • 2
  • 14
3
votes
0 answers

Java - Get List of Wireless Networks in Range

I'm trying to get a list of wireless networks that are in range of the user. I would like the program to be able to get SSID (if broadcasting), Security Type (WEP, WPA, WPA2), and maybe a couple other pieces of information. I want to do the whole…
jbeverid
  • 291
  • 7
  • 23
3
votes
3 answers

Special Char in SSID with wpa_supplicant causing issue (Debian hdmi stick)

I have a problem i can connect in wireless with wpa_suppli cant on some network, but i need to connect on a network where the SSID contain a "é" and it won't work and I don't understand why, when i do : iwlist scan I get the ssid in this way : Cell…
Nikoala
  • 71
  • 1
  • 10
3
votes
0 answers

How do I connect to a SSID selected by the user?

I'm performing my thesis and I'm developing an ANdroid Application to configure IoT domestic devices (wifi). In this case, the devices are being simulated using a Rspberry Pi 3, which creates an Access POint (captive portal, no password) with a know…
3
votes
0 answers

MacOS displays broken Chinese SSIDs and can't use the internet via Chinese SSIDs

I'm looking for advice on how to resolve the following problem: I'm having trouble getting a working Internet connection for a Mac OS X 10.9.5 system (configured for base language English), when I try to connect to a WiFi router that is configured…
3
votes
4 answers

How to get currently connected wifi SSID in c# using WMI or System.Net.NetworkInformation windows 10?

I have tried in 2 different ways First way: null exception issue try{ ManagementObjectSearcher searcher = new ManagementObjectSearcher("root\\WMI", "SELECT * FROM MSNdis_80211_ServiceSetIdentifier"); foreach (ManagementObject queryObj in…
3
votes
1 answer

WlanOpenHandle fails with error code 1062

I am using the native Wifi Api to fetch the ssid on windows 8 machine but the "WlanOpenHandle" call always fails with the error code 1062. Any help? Note: there is no wzc service on windows 8.
user3845075
  • 73
  • 2
  • 7
3
votes
2 answers

How to escape hash symbol(#) in netsh command

Our company main Wifi ssid is called "#TestRIG". I need to switch SSIDs during the automation test frequently. I tried the command as below. netsh wlan connect name="#TestRIG" netsh wlan connect name=^#TestRIG netsh wlan connect name=\#TestRIG None…
jinhua
  • 31
  • 2
3
votes
1 answer

failed to connect to specific WiFi in android programmatically

I'm using the following code to detect and connect to specific WiFi ssid when I press a button in android. Below is the code. Any help will be appreciated. ssid :- "myHotspot" & password:- "12345678" Button b1 = (Button)…
3
votes
3 answers

How to get the SSID that the IOS device currently linked

How to get the SSID (Service Set Identifier), I have been search for few while but nothing useful. Is that anyone can help? However, I try this code in ios7 -(NSString *)getWifiName{ NSString *wifiName = @"Not Found"; CFArrayRef myArray =…
luziqin
  • 51
  • 1
  • 9