ch1 network online

Terminal Programs > Network Commands category in the following order:

  1. airmon

    Usage: airmon [start:stop] [net interface]
    Example: airmon start wlan0

    Used to enable ==monitor mode== on wireless interfaces.
    It may also be used to go back from ==monitor mode== to ==managed mode==.
    Entering the airmon command without parameters will show the interfaces status.

    It is the first step to be able to get the connection ==password== of a wifi router. The network card needs to be activated in ==monitor mode==.

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    //command: airmon
    cryptools = include_lib("/lib/crypto.so")
    if not cryptools then exit("Error: Missing crypto library")
    if params.len > 0 and (params.len != 2 or params[0] == "-h" or params[0] == "--help") then exit(command_info("airmon_usage"))

    computer = get_shell.host_computer
    formatOutput = "Interface Chipset Monitor_Mode\n"
    if params.len == 0 then exit(format_columns(formatOutput + computer.network_devices))
    option = params[0]
    device = params[1]
    if option != "start" and option != "stop" then exit(command_info("airmon_usage"))

    output = cryptools.airmon(option, device)
    if not output then exit("airmon: " + device + " not found")
    if typeof(output) == "string" then exit(output)
    print(format_columns(formatOutput + computer.network_devices))
  2. iwlist

    Usage: iwlist [net device]
    Example: iwlist wlan0

    Shows the list of wifi networks visible from your computer.

    [Usage Details]

    Once the iwlist command is executed the output will show something similar to this:
    ==BSSID PWR ESSID==
    ==14:C7:E5:46:D9:F5 65% corpdevice==

    ==BSSID== is the identifier of the device.
    ==PWR== is the coverage that reaches the Wi-Fi network installed in your PC in a range of 0% to 100%. The higher this number is, the closer your device is to your location and you can capture the packets faster.
    ==ESSID== is the name of the router access point.

  3. aireplay

  4. aircrack