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

Connecting to Wifi in Windows CMD

I'v been poking around the internet for the past hour and a half trying to find a windows command similar to wifi connect ssid="YOURSSID" passcode="YOURPASSCODE", and I cant seem to find it! I found wlan, but that has something to do with profiles,…
0
votes
0 answers

Geolocation from WIFI and/or WIFI SSID to block website access

I'm looking for a way, and wondering if it's even possible, to get either the geolocation of a mobile pc, mainly laptops, to block access to a specified website. I'm not looking to block access to the internet or websites, just the website I'm…
Ghost187
  • 21
  • 5
0
votes
3 answers

Comparing SSID to a string

I have trying to do something when I get to know that in my wifilist this SSID is present My code is somewhat : List wifilist = wifi.getScanResults(); for(int i=0;i
0
votes
1 answer

How To Get Network Security Mode OPEN+WEP+WPA2 PSK By SSID programatically

I am using this code to get the list of wifi SSID WifiManager wifimanager = (WifiManager)getActivity().getSystemService(Context.WIFI_SERVICE); List mScanResults = wifimanager.getScanResults(); ArrayList statut = new…
Marya
  • 332
  • 2
  • 16
0
votes
1 answer

If statement matching SSID/network name to String not working

I'm having a strange problem with my code that I cannot figure out, although i'm sure it must be something simple. I've got an if statement in my code that compares the currently connected network name to a string. The problem i'm having is that it…
Paul Alexander
  • 2,686
  • 4
  • 33
  • 69
0
votes
1 answer

Android get SSID of currently connected wifi network

Several people have asked questions regarding getting the SSID, all of them only partionly work. According to the Android API wifiInfo.getSSID() should return a string, but no matter what I do the if statement returns false. I want to check if my…
Vince-Rdv
  • 29
  • 1
  • 8
0
votes
1 answer

Android - WiFi Association disables Hidden WiFi Configurations

In my App I have a Network Selection Screen, this shows all visible networks - including Configured Hidden SSID's. However when a user selects a visible network that is not a Hidden SSID, and associates to it using the following code. public…
Aiden Fry
  • 1,672
  • 3
  • 21
  • 45
0
votes
1 answer

How to check whether the WIFI the user is using is password protected

How to check whether the WIFI (SSID, BSSID) the user is using is password protected from iOS API?
KaneWang
  • 11
  • 3
0
votes
1 answer

Search for wireless networks within an iPhone application

How can I search for wireless networks (and connect to one after) within an iPhone application? Is it possible?
Raptor
  • 53,206
  • 45
  • 230
  • 366
0
votes
1 answer

Find Chrome packaged app ssid

I'm searching for a way to find the currently connected essid (and/or mac address) in a packaged chrome app. Is it possible to find it using device permissions? I know it's not possible via javascript due to the sandbox.
0
votes
1 answer

Display Currently Connected SSID in Android

I'd like to capture the currently connected SSID - and display it in a TextView - how can this be done? From what I can gather I'll need to use the following: public void run() { WifiManager wifi = (WifiManager)…
0
votes
1 answer

SSID vs BSSID: Connecting to Wifi via Android Programatically / Using WifiManager to connect to a network

I hear some developers are unable to connect to wifi when specifiying the SSID: https://groups.google.com/forum/?fromgroups=#!topic/android-developers/di4gMhC0ZTY However other developers are connecting via the SSID: How do I connect to a specific…
RobTheBuilder
  • 37
  • 5
  • 11
0
votes
1 answer

Access Wifi in VB.NET

Is there an API or another way to get the SSID of the currently connected Wifi, create a new ad-hoc network, etc? All help is great! Thanks!
Noah
  • 124
  • 3
  • 10
0
votes
3 answers

iphone app can't see internal network

I'm working on an Enterprise app that communicates with our company servers. I have full two-way communication between the phone and the server through 3G/4G, and it works from my home wifi, but using the wifi at the office where it is connected to…
Bill Norman
  • 883
  • 11
  • 29
0
votes
1 answer

Hide SSID from google and youtube?

Seems like google and youtube detect your location via SSID that is attached to every packet sent from your Wi-Fi network. I tried using VPN but it didnt hide the SSID, then i tried using VPN + SOCKv5 but it didnt hide the SSID. Then i simply tried…
VisaToHell
  • 508
  • 1
  • 12
  • 29
1 2 3
13
14