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
-1
votes
1 answer

CNCopyCurrentNetworkInfo getting nil when app is created through command line tools

My app's deployment target is iOS 13. So I am using CNCopyCurrentNetworkInfo for getting the wifi SSID information. I am facing a strange issue only when I archive and distribute my enterprise app through command line tools. The wifi SSID info is…
-1
votes
1 answer

How to get back a name of a hidden network i forgot

I have hidden network ssid just for iot devices. My router stopped to work and i had to change it. The point is that i forgot the ssid name and i was wondering if there's a way to 'listen' the ssid those disconnected devices are trying to connect…
1endell
  • 15
  • 6
-1
votes
2 answers

Input from users for batch script

I am new to this so if I have put this in the wrong area or done something wrong, please let me know what I need to do to fix it. During lockdown, I started messing about with Batch to create a menu system to automatically connect my NAS drives. …
Chris
  • 1
  • 1
-1
votes
1 answer

Getting error: incompatible types in assignment of 'const char*' to 'char [100]'

I am trying to save a char to EEPROM and then retrieve it. I am using an ESP32-CAM with this code and the Arduino IDE: #include int addr = 0; char ssidString[100] = {0}; float floatFromPC2 = 0; char pskString[100] = {0}; void…
user1114881
  • 731
  • 1
  • 12
  • 25
-1
votes
1 answer

How to read Wi-Fi SSID in both platforms | iOS

I need to read Wi-Fi SSID from a Flutter app. I am using this plugin I use in a async function this code String _SSID = await Wifi.ssid; How can I configure the iOS platform in Xcode to make it work? Now it returns null.
-1
votes
2 answers

Batch file - naming IP scan results csv with current SSID

I found an IP scanner that I can run in a batch file and it saves the results of the scan into a CSV file. I need help naming that file. My goal is to have the SSID (currently connected to), date, and time all part of the file name. Hyphens/dashes…
silver5
  • 1
  • 2
-1
votes
1 answer

How can I create a second SSID for an existing network? (Network supported by many different routers throughout the building)

In my company's building we currently have one WiFi network supported by many routers spread throughout the building. I need to set up 4 Wifi cameras in our building but they cannot use the same SSID. I also don't currently have the ability to set…
-1
votes
1 answer

iwlist scan shows empty ESSID (ESSID: "") on Pi 3 with Raspbian

On Pi 3 with Raspbian (clean install) when I run: sudo iwlist scan | grep ESSID I can get both normal outputs and outputs with empty ESSID. E.g.: ESSID: "SomeNetwork" ESSID: "" The list does not contain some networks which I can see through the…
alex
  • 256
  • 1
  • 13
-1
votes
1 answer

Detecting the SSID of WiFi connected to in MIT App Inventor?

Is there any extensions in MIT App Inventor 2 which can get the SSID of the WiFi network a user is connected to? Thanks in advance!
Panda
  • 6,955
  • 6
  • 40
  • 55
-1
votes
1 answer

How do I connect a raspberry pi to a hidden network with no password using a static ip address

I am connecting a raspberry pi to help a friend of mine. The wifi network it needs to be on is on a hidden SSID that has no passkey, and it needs to setup for a static ip address. I can't have access to the router to make it static, and the gui…
-1
votes
1 answer

Print list of WiFi SSID's?

I am making a program in Java where it needs to print out a list of available WiFi's names, the SSID, into the console all separated by semicolons. So like: wifi1;thekingswifi;otherwifi
Wiz Gamin
  • 29
  • 3
-4
votes
1 answer

how to obtain the Wireless AP's SSIDs of the network through java?

iam new to java programming and my final year project is based on a Rogue Access point detection tool, and i need to how can i obtain SSID from a java code of the exisiting wifi networks? for eg: say iam in my laptop i need the program to show how…
1 2 3
13
14