Forum Replies Created
- AuthorPosts
- icare90Participant
Hi Diego,
I use the custom Kali 2024 version Was it recently modified ?
Greetings
icare90ParticipantHello Diego,
COuld you please reload the video. The existing one is broken
Thanks in advance
icare90ParticipantHello Diego,
The full lecture is based on python2.
I didn’t manage to fix the code to make it work with python3.
Still this object type issue for the serialization.Your help would be welcome.
And more generally speaking, a course updated for python3 would be a plus.def reliable_send(self, data):
json_data = json.dumps(data).encode()
self.connection.send(json_data)def reliable_receive(self):
json_data =””
while True:
try:
json_data = json_data + self.connection.recv(1024).decode()
return json.loads(json_data)
except ValueError:
continuedef execute_remotely(self, command):
self.reliable_send(command)
return self.reliable_receive()icare90ParticipantHello Diego,
It does not work. The video stops after 43 secondsCould you please check
icare90ParticipantOk clear; thanks to both of you. I’m going to try it.
icare90ParticipantHi,
Sorry about that. My explanations were not clear enough.
When I run airodump-ng, I can see my router (XX:XX:XX:XX:F3:4E). I can also see only part of my devices which are connected to the router (ex: XX:XX:XX:XX:4B:B2) but they appeared as not associated (BSSID column).When I run airodump-ng on this specific BSSID (my router) and the right channel, there is no output.
I don’t know what could be the reason
The router that does not communicate this info ?
An issue with the wifi adpater ? Before buying a new one, I wanted to be sure that it comes from the adapter.I will likely buy a new one and let you know if it works.
Thanks a lot
Attachments:
You must be logged in to view attached files.icare90ParticipantHello,
Please see the screenshots in attachments
300M WIFI adapter RTL8192EU Chipset
Brand : OcioDualThanks
Attachments:
You must be logged in to view attached files.icare90ParticipantHello Diego,
I can confirm that the devices are connected to my network.
- AuthorPosts