Questions tagged [wep]

Wired Equivalent Privacy (WEP) is a security algorithm for wireless networks.

54 questions
0
votes
1 answer

I can't send data from the page to the extension

manifest.json { "manifest_version": 3, "name": "name", "version": "1.0", "description": "description", "icons": { "128": "128.png" }, "action": { "default_popup": "index.html" }, "content_scripts":…
Denis Lopatin
  • 29
  • 1
  • 3
0
votes
0 answers

How to Convert (104/128bit) hashed key values from passphrase using java

In my cisco router setting, am trying to connect my device using wep security type. In wep security types, hexadecimal password are…
0
votes
1 answer

website update clear cache on all client side devices so img and content update

I’m a beginner web developer, I need help as my web page img updates do not auto refresh on client side devices. I’ve tried adding ?v=1 to img src and css. Does not work. Tried full hosting img url in css. Does not update. Is there a way to clear…
0
votes
1 answer

What is used to inverse an RC4 cipher?

I'm doing a research paper on WEP, and one of the things that has popped up immediately is that it's possible to obtain the keystream derived from specific IV, denoted RC4(v,k). I won't bother posting the proofs (unless requested), as I'm sure…
Ryan Amos
  • 5,422
  • 4
  • 36
  • 56
0
votes
1 answer

Getting controller return status code for web api

I am writing a record with the OnActionExecuting method, how can I get the status code of the request LogActionAttribute : ActionFilterAttribute public override void OnActionExecuting(HttpActionContext filterContext) { …
OSR
  • 3
  • 1
0
votes
0 answers

Expression has changed after it was checked error

I make code that popup tooltip if there are overflow in the element and dont show tooltip if there are no overflow
ali amer
  • 65
  • 9
0
votes
1 answer

how I can determine if the div have an overflow hidden using html?

How can I determine if div has overflow hidden using html ? using Ngif I don't want to use it in type script code I need to set another attribute if the div has overflow hidden .
#greetings{ …
0
votes
2 answers

How to see what encryption type a WLAN uses in Wireshark

I'm currently reading and practising with this WiFu book from Offensive Security But i want to see what encryption type my network uses.. It may be because I'm blind but any other than that.. It should be anywhere in the IEEE 802.11 Headers or…
Anciety
  • 85
  • 2
  • 10
0
votes
1 answer

connect to secured wireless connection using c#

I am using wlanApi class to connect to wireless connection after I scanned and found networks in my area I want to connect to them but always I get exception "profile xaml is not correct" so I try to get all connection type to xaml I found them but…
kartal
  • 17,436
  • 34
  • 100
  • 145
0
votes
1 answer

Perfion web api: check whether a feature is remote or not

I am newbie on Perfion System. How can I check whether a feature is remote? My current query looks like that:
monther zlatan
  • 156
  • 1
  • 14
0
votes
1 answer

Randomness of IV: Why is it needed yet secrecy of the IV is not needed?

The IV used in schemes such as CBC has to be random and unpredictable. But at the same time it does not have to be kept secret. If the IV does not have to be secret, why does it have to be random then? I fail to make sense out of these seemingly…
Minaj
  • 165
  • 5
0
votes
1 answer

No DHCP response when connecting to WEP wifi

I am unable to connect to WEP wifi on Linux (Mint): I get no DHCP offer. My bash script (that I launch as root) does the following: pkill dhclient pkill wpa_supplicant #just in case ip link set dev wlan0 down ip addr flush dev wlan0 iwconfig wlan0…
user1381
  • 506
  • 1
  • 5
  • 19
0
votes
1 answer

How to enter null password for WiFi?

Well I've recovered a WEP Wi-Fi password using Aircrack-ng, and it says the password is 00:00:00:00:00 in hex, which is five times null. Backtrack represents the password in ASCII as dots, but I've tried that and it naturally didn't work. How do I…
The Onin
  • 5,068
  • 2
  • 38
  • 55
0
votes
1 answer

asp.net dynamically add connection string in web.config

I have web application and windows application in same solution. I want to dynamically add connection string in web.config file. The connection string information give from windows application. How do i do this please help me. My window app having:…
0
votes
1 answer

mantin wep implementation in c++

I have implemented the Mantin model of WEP attack published in 2005 in c++. To check wether the implementation is correct i am generating 2^48 IVs and their corresponding 257th keystream byte from RC4 PRG. The complexity of the algorithm is o(n).…