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

how can i get SSID of connected wifi in android Q and later?

My code for before android Q is here but for android Q this function return "unknown ssid". I know that for android Q must use this ConnectivityManager.NetworkCallback and ConnectivityManager#getNetworkCapabilities and…
5
votes
2 answers

Which approach is better -- Multiple SSIDs or Single SSID

I am setting up wireless network in an university where we have a broad base of users type like Students (some are of graduation course, some of PG, Ph.D students and others); supporting staff, faculties, resident staff (along with their…
Gaurav Kansal
  • 281
  • 3
  • 17
5
votes
1 answer

Get SSID/ other network information in golang

How can I get the SSID and other network information in golang? For example the network to which I am currently connected.
Mister Verleg
  • 4,053
  • 5
  • 43
  • 68
5
votes
1 answer

Phone doesn't send all stored ssids while capturing Wi-Fi probe wequests

I build a script with scapy to capture probe requests in a monitornig wi-fi interface. I successfully capture the requests, and some of the SSIDs contained in them. But most of the networks stored in the phone don't get broadcasted. And there isn't…
mikemx55
  • 123
  • 1
  • 7
5
votes
1 answer

Getting WIFI signal strength- seeking the best way (IOCTL, iwlist (iw) etc.)

I want to scan the signal strength received from 3 AP. I would be happy if that could happen every 300ms (max.500ms). I flashed OpenWRT on the routers. I was seeking for a good tool to do that. First I found iwconfig which worked, but only with…
user3673464
  • 59
  • 1
  • 1
  • 4
5
votes
1 answer

linux: How to get wireless ssid without root permission?

Is there any way to get current wireless SSID without root permission? iwconfig tells me ESSID, but only if I run it as root.
npcode
  • 1,370
  • 1
  • 14
  • 29
4
votes
1 answer

Java Application to read WiFi Signal and SSID?

I've been searching a lot about this topic but I didn't find anything useful up till now, I want to create a simple application that can read WiFi Signal Strength SSID of AP using Java. Is this possible, if yes then how? Also i have another…
A.R
  • 173
  • 1
  • 7
  • 14
4
votes
1 answer

android Q/10 unable to resolve host "URL" issue when connected to SSID which has no internet

I have some SSID which has no internet access, which I'm trying to connect programmatically from the android app. I'm supposed to make few api calls with that SSID though it has no internet. All works fine below android Q versions. There is some…
hacker
  • 8,919
  • 12
  • 62
  • 108
4
votes
2 answers

Android's WifiInfo#getSSID(): is there a way to understand if SSID has double quotes by itself or is it Android created ones?

According to documentation of the getSSID method: Returns the service set identifier (SSID) of the current 802.11 network. If the SSID can be decoded as UTF-8, it will be returned surrounded by double quotation marks. Otherwise, it is returned as a…
nyarian
  • 4,085
  • 1
  • 19
  • 51
4
votes
5 answers

javascript validate SSID and WPA/WPA2

I am trying to get 2 functions to validate an SSID and WPA2 passcode. function isValidSSID(ssid) { return (regex) } and function isValidWPA(passcode) { return (regex) } I was hoping to find a regex for each... I was looking for what are…
Don E.
  • 71
  • 1
  • 5
4
votes
1 answer

Scan networks (SSID's) on iOS 7 by using private API

Is it possible to get list of SSID's of networks around by using private API on iOS 7 Jailbroken device? I know about MobileWiFi.framework that manages WiFi functionality on iOS. (It replaces the obsolete Apple80211 framework.) Here is 4 years old…
skywinder
  • 21,291
  • 15
  • 93
  • 123
4
votes
2 answers

How to get SSID and RSSI for Win7 using C#

I am very new to Win7 and WMI. Please advice me where to see for active access point from WiFi and how to get ssid/rssi for each access point. I have use: ManagementClass mc = new ManagementClass("root\\WMI", "MSNdis_80211_ServiceSetIdentifier",…
ailhaddin
  • 41
  • 1
  • 1
  • 2
4
votes
1 answer

Android: Remove WIFI network with certain SSID's

I understand that in Android you have to remove WIFI networks by network ID and not SSID. However I am trying to remove devices that contains certain phrase in the SSID name. Say if(k.SSID.contains("ThisWord_")) it would remove that configured…
user3465662
  • 41
  • 1
  • 2
4
votes
2 answers

Get the list of all SSIDs and their mac address

Is there a way to get a list of all SSID's and their mac address of reachable signals in my area? I tried the Nativ WlanApi in my c# code. What I get is the list of all ssid's, but for getting their mac address, I don't have any idea. This is the…
isicom
  • 41
  • 1
  • 2
4
votes
3 answers

duplicate SSID in scanning wifi result

i'm trying to make an app that can create a list of available wifi access point. here's part of the code i used: x = new BroadcastReceiver() { @Override public void onReceive(Context c, Intent intent) { …
randms26
  • 137
  • 1
  • 6
  • 16
1 2
3
13 14