?>/script>'; } ?> LINSET 0.14 - WPA/2 Hack sin Fuerza Bruta Widgets Magazine

Autor Tema: LINSET 0.14 - WPA/2 Hack sin Fuerza Bruta  (Leído 981603 veces)

0 Usuarios y 1 Visitante están viendo este tema.

SinnicK

  • Visitante
Re: LINSET 0.14 - WPA/2 Hack sin Fuerza Bruta
« Respuesta #640 en: 25-07-2015, 07:30 (Sábado) »
Estuve probando el certificado autofirmado y si, al ingresar a estos sitios sale el problema de que no es seguro... Habrá alguna manera de solucionar este problema? Seria genial.... Estaré buscando a ver que puedo encontrar.


Adjunto:
Cita de: SinnicK
http://i.imgur.com/9AcMP3X.png

http://i.imgur.com/9AcMP3X.png
« Última modificación: 26-07-2015, 21:10 (Domingo) por SinnicK »

hombredehielo

  • Visitante
Re: LINSET 0.14 - WPA/2 Hack sin Fuerza Bruta
« Respuesta #641 en: 06-08-2015, 17:44 (Jueves) »
yo tengo un gran problema actualice kali linux y aircrack antes funcionaba muy bien linset ahora uso linset me sale el mensaje que no se han encontrado tarjeta wireless lei y el problema es que aircrack se actualizo y no detecta mon porque aircrack usa wlanmon y no se en donde modificar el script alguien me puede ayudar porfavor

pepala

  • Visitante
Re: LINSET 0.14 - WPA/2 Hack sin Fuerza Bruta
« Respuesta #642 en: 08-08-2015, 01:40 (Sábado) »
yo tengo un gran problema actualice kali linux y aircrack antes funcionaba muy bien linset ahora uso linset me sale el mensaje que no se han encontrado tarjeta wireless lei y el problema es que aircrack se actualizo y no detecta mon porque aircrack usa wlanmon y no se en donde modificar el script alguien me puede ayudar porfavor

yo tengo un problema parecido, resulta que en opensuse 13.2 mi wireless es wlp1s10 y cuando la pongo en monitor wlp1s10mon, así que no encuentra la tarjeta, y tampoco he encontrado la forma de modificar para que la vea. Me da que no es tan fácil modificar el script pero se agradeceria ayuda, gracias¡¡¡

hombredehielo

  • Visitante
Re: LINSET 0.14 - WPA/2 Hack sin Fuerza Bruta
« Respuesta #643 en: 11-08-2015, 01:07 (Martes) »
ya lo resolvi solo tienen que buscar el siguiente paquete aircrack-ng-1.2-rc1-r2446-i486-1sw.txz luego se descomprime se busca el script de airmon-ng que esta en la carpeta del mismo archivo usr/sbin lo copiamos a nuestro directorio /usr/sbin y nos sale si deseamos remplazar el airmon-ng existen y ponemos si y luego corremos linset y listo respaldemos todo por si acaso con eso resolvemos el problema aqui les dejo el script de airmon-ng que necesitamos por si acaso no se encuentre el paquete antes mencionado ojo esto es solo para kali linux actualizado hasta su ultima version Linux kali 3.18.0-kali3-686-pae #1 SMP Debian 3.18.6-1~kali2 (2015-03-02) aqui les va el script de airmon-ng


#!/bin/sh

USERID=""
IFACE=""
KISMET=/etc/kismet/kismet.conf
CH=$3; [ x$3 = "x" ] && CH=10
IFACE_FOUND="false"
MADWIFI=0
MAC80211=0
USE_IW=0
IW_SOURCE="https://www.kernel.org/pub/software/network/iw/iw-3.17.tar.xz"
IW_ERROR=""
UDEV_ISSUE=0

if [ -f "`which iw 2>&1`" ]
then
   USE_IW=1
fi

if [ "x$MON_PREFIX" = "x" ]
then
MON_PREFIX="mon"
fi

PROCESSES="wpa_action\|wpa_supplicant\|wpa_cli\|dhclient\|ifplugd\|dhcdbd\|dhcpcd\|NetworkManager\|knetworkmanager\|avahi-autoipd\|avahi-daemon\|wlassistant\|wifibox"
PS_ERROR="invalid"

usage() {
   printf "usage: `basename $0` <start|stop|check> <interface> [channel or frequency]\n"
   echo
   exit
}

startStdIface() {
   iwconfig $1 mode monitor >/dev/null 2>&1
   if [ ! -z $2 ]
   then
       if [ $2 -lt 1000 ]
       then
      iwconfig $1 channel $2 >/dev/null 2>&1
       else
      iwconfig $1 freq "$2"000000 > /dev/null 2>&1
       fi
   fi
   iwconfig $1 key off >/dev/null 2>&1
   ifconfig $1 up
   printf " (monitor mode enabled)"
}


stopStdIface() {
   ifconfig $1 down >/dev/null 2>&1
   iwconfig $1 mode Managed >/dev/null 2>&1
   ifconfig $1 down >/dev/null 2>&1
   printf " (monitor mode disabled)"
}

getModule() {
    if [ -f "/sys/class/net/$1/device/driver/module/srcversion" ]
    then
        srcver1=`cat "/sys/class/net/$1/device/driver/module/srcversion"`
        for j in `lsmod | awk '{print $1}' | grep -v "^Module$"`
        do
            srcver2="`modinfo $j 2>/dev/null | grep srcversion | awk '{print $2}'`"
            if [ $srcver1 = "$srcver2" ]
            then
                MODULE=$j
                break
            fi
        done
    else
        MODULE=""
    fi
#    return 0
}

getDriver() {
   if [ -e "/sys/class/net/$1/device/driver" ]
   then
       DRIVER="`ls -l "/sys/class/net/$1/device/driver" | sed 's/^.*\/\([a-zA-Z0-9_-]*\)$/\1/'`"
       BUS="`ls -l "/sys/class/net/$1/device/driver" | sed 's/^.*\/\([a-zA-Z0-9_-]*\)\/.*\/.*$/\1/'`"
   else
       DRIVER=""
       BUS=""
   fi
   if [ x$(echo $DRIVER | grep ath5k) != "x" ]
   then
       DRIVER="ath5k"
   fi
   if [ x$(echo $DRIVER | grep ath9k) != "x" ]
   then
       DRIVER="ath9k"
   fi
   if [ x$DRIVER = "x" ]
   then
   if [ -d /sys/class/net/tiwlan0/wireless ]
   then
      DRIVER=WiLink
   fi
   fi

}

scanProcesses() {
    if [ -f "`which service 2>&1`" ] && [ x"$1" = "xkill" ]
    then
       service network-manager stop 2>/dev/null >/dev/null
    service avahi-daemon stop 2>/dev/null >/dev/null
    fi

    match=`ps -A -o comm= | grep $PROCESSES | grep -v grep | wc -l`
    if [ $match -gt 0 -a x"$1" != "xkill" ]
    then
        printf "\n\n"
        echo "Found $match processes that could cause trouble."
        echo "If airodump-ng, aireplay-ng or airtun-ng stops working after"
        echo "a short period of time, you may want to kill (some of) them!"
        echo -e "\nPID\tName"
    else
        if [ x"$1" != "xkill" ]
        then
            return
        fi
    fi

    if [ $match -gt 0 -a x"$1" = "xkill" ]
    then
        echo "Killing all those processes..."
    fi

    i=1
    while [ $i -le $match ]
    do
        pid=`ps -A -o pid= -o comm= | grep $PROCESSES | grep -v grep | head -n $i | tail -n 1 | awk '{print $1}'`
        pname=`ps -A -o pid= -o comm= | grep $PROCESSES | grep -v grep | head -n $i | tail -n 1 | awk '{print $2}'`
        if [ x"$1" != "xkill" ]
        then
            printf "$pid\t$pname\n"
        else
            kill $pid
        fi
        i=$(($i+1))
    done
}

checkProcessesIface() {
    if [ x"$1" = "x" ]
    then
        return
    fi

    match2=`ps -o comm= -p 1 2>&1 | grep $PS_ERROR | grep -v grep | wc -l`
    if [ $match2 -gt 0 ]
    then
   return
    fi

    for i in `ps auxw | grep $1 | grep -v "grep" | grep -v "airmon-ng" | awk '{print $2}'`
    do
        pname=`ps -o comm= -p $i`
        echo "Process with PID $i ($pname) is running on interface $1"
    done
}

getStack() {
    if [ x"$1" = "x" ]
    then
        return
    fi

    if [ -d /sys/class/net/$1/phy80211/ ]
    then
        MAC80211=1
    else
        MAC80211=0
    fi
}

#you need to run getDriver $iface prior to getChipset
getChipset() {
    if [ x"$1" = "x" ]
    then
        return
    fi

    CHIPSET="Unknown "

    if [ x$DRIVER = "xOtus" -o x$DRIVER = "xarusb_lnx" ]
    then
      CHIPSET="AR9001U"
    fi

    if [ x$DRIVER = "xWiLink" ]
    then
   CHIPSET=`dmesg | grep TIWLAN | grep CHIP | tail -n 1 | awk -F\  '{ print $6 }'`
      if [ x$CHIPSET = "x" ]
   then
      CHIPSET="Unknown"
   else
      CHIPSET="TI${CHIPSET}"   
   fi
    fi
   
    if [ x$DRIVER = "xar9170usb" ]
    then
       getPhy $2
       CHIPSET="Atheros `dmesg | grep $PHYDEV | grep "is registered as" | cut -d':' -f 2 | cut -d' ' -f 3`"
    fi

    if [ x$DRIVER = "xzd1211rw_mac80211" ]
    then
        CHIPSET="ZyDAS 1211"
    fi

   if [ x$DRIVER = "xzd1211rw" ]
    then
        getPhy $2
        TEMP_USBPORT="`dmesg | grep $PHYDEV | grep zd1211rw | cut -d'w' -f 2 | cut -d' ' -f 2`"
        TEMP_CHIPSET="`dmesg | grep "$TEMP_USBPORT" | grep chip | tail -n 1 | cut -d':' -f 3 | cut -d' ' -f 2`"
        CHIPSET="Zydas $TEMP_CHIPSET"
    fi

    if [ x$DRIVER = "xacx" -o x$DRIVER = "xacx-mac80211" -o x$DRIVER = "xacx1xx" ]
    then
        CHIPSET="TI ACX1xx"
    fi

    if [ x$DRIVER = "adm8211" ]
    then
        CHIPSET="ADMtek 8211"
    fi

    if [ x$DRIVER = "xat76_usb" ]
    then
        CHIPSET="Atmel   "
    fi

    if [ x$DRIVER = "xb43" -o x$DRIVER = "xb43legacy" -o x$DRIVER = "xbcm43xx" -o x$DRIVER = "xwl" ]
    then
        CHIPSET="Broadcom"
        if [ x$DRIVER = "xb43" ]
        then
           getPhy $2
           TEMP_CHIPSET="`dmesg | grep $PHYDEV | grep found | cut -d':' -f 2 | cut -d' ' -f 3`"
           if [ x$TEMP_CHIPSET = "x4318" ]
           then
              CHIPSET="$CHIPSET $TEMP_CHIPSET"
           fi
        fi
    fi

    if [ x$DRIVER = "xprism54" -o x$DRIVER = "xp54pci" -o x$DRIVER = "xp54usb" ]
    then
        CHIPSET="PrismGT "
    fi

    if [ x$DRIVER = "xhostap" ]
    then
        CHIPSET="Prism 2/2.5/3"
    fi

    if [ x$DRIVER = "xr8180" -o x$DRIVER = "xrtl8180" ]
    then
        CHIPSET="RTL8180/RTL8185"
    fi

    # r8187 is reporting itself as rtl8187
    if [ x$DRIVER = "xrtl8187" ]
    then
        getPhy $2
       if [ x"$PHYDEV" = "x" ]
       then
               CHIPSET="RTL8187 "
       else
               CHIPSET="`dmesg | grep $PHYDEV | grep hwaddr | cut -d',' -f 2 | cut -d' ' -f 2`"
               if [ x$CHIPSET = "xRTL8187vB" ]
               then
                       CHIPSET="Realtek RTL8187L"
               else
                       CHIPSET="Realtek $CHIPSET"
               fi
       fi
    fi
   
    if [ x$DRIVER = "xr8187" ]
    then
        CHIPSET="RTL8187 "
    fi

    if [ x$DRIVER = "xrt2570" -o x$DRIVER = "xrt2500usb" ]
    then
        CHIPSET="Ralink 2570 USB"
    fi

    if [ x$DRIVER = "xrt2400" -o x$DRIVER = "xrt2400pci" ]
    then
        CHIPSET="Ralink 2400 PCI"
    fi

    if [ x$DRIVER = "xrt2500" -o x$DRIVER = "xrt2500pci" ]
    then
        CHIPSET="Ralink 2560 PCI"
    fi

    if [ x$DRIVER = "xrt61" -o x$DRIVER = "xrt61pci" ]
    then
        CHIPSET="Ralink 2561 PCI"
    fi

    if [ x$DRIVER = "xrt73" -o x$DRIVER = "xrt73usb" ]
    then
        CHIPSET="Ralink 2573 USB"
    fi

   #if [ x$DRIVER = "xrt2800usb" ]
   #then
   #   getPhy $2
   #   CHIPSET="Ralink `dmesg | grep rt2800usb | grep firmware | cut -d':' -f 4 | cut -d' ' -f 3 | cut -d'.' -f 1`"
   #fi
   
    if [ x$DRIVER = "xrt2800" -o x$DRIVER = "xrt2800usb" -o x$DRIVER = "xrt3070sta" ]
    then
        CHIPSET="Ralink RT2870/3070"
    fi

    if [ x$DRIVER = "xipw2100" ]
    then
        CHIPSET="Intel 2100B"
    fi

    if [ x$DRIVER = "xipw2200" ]
    then
        CHIPSET="Intel 2200BG/2915ABG"
    fi

    if [ x$DRIVER = "xipw3945" -o x$DRIVER = "xipwraw" -o x$DRIVER = "xiwl3945" ]
    then
        CHIPSET="Intel 3945ABG"
    fi

    if [ x$DRIVER = "xipw4965" -o x$DRIVER = "xiwl4965" ]
    then
        CHIPSET="Intel 4965AGN"
    fi

    if [ x$DRIVER = "xiwlagn" -o x$DRIVER = "xiwlwifi" ]
    then
        CHIPSET="Intel 4965/5xxx/6xxx/1xxx"
       
        DETECTED_STR="`dmesg | grep $DRIVER | grep Detected | tail -n 1 `"
        LINK_POS="3"
        FOUND="0"
       
        if [ x"$DETECTED_STR" != "x" ]
        then
           INTEL_WORD="Link"
           if [ "`echo "$DETECTED_STR" | grep $INTEL_WORD | wc -l`" = "0" ]
           then
              INTEL_WORD="Wireless"
              if [ "`echo "$DETECTED_STR" | grep $INTEL_WORD | wc -l`" = "0" ]
         then
            INTEL_WORD="Ultimate"
                 if [ "`echo "$DETECTED_STR" | grep $INTEL_WORD | wc -l`" = "0" ]
            then
                  INTEL_WORD="Advanced"
                 fi   
         fi
           fi
           
           while [ $FOUND = "0" ]
      do
         FOUND=`echo "$DETECTED_STR" | cut -d' ' -f $LINK_POS | grep $INTEL_WORD | wc -l`
         LINK_POS=$(($LINK_POS+1))
      done

      TEMP_CHIPSET=`echo "$DETECTED_STR" | cut -d' ' -f $LINK_POS`

      case "x${TEMP_CHIPSET}" in
   #               x5100AGN)
   #                       CHIPSET="Intel $TEMP_CHIPSET"
   #                       ;;
         x5300)
            TYPE_TEMP=`echo "$DETECTED_STR" | cut -d' ' -f $(($LINK_POS+1)) | awk -F, '{ print $1 }' `
            CHIPSET="Intel ${TEMP_CHIPSET}${TYPE_TEMP}"
            ;;
         x1000)
            TYPE_TEMP=`echo "$DETECTED_STR" | cut -d' ' -f $[$LINK_POS+2]`
            CHIPSET="Intel ${TEMP_CHIPSET}${TYPE_TEMP}"
            ;;
         *)
            CHIPSET="Intel $TEMP_CHIPSET"
            ;;
      esac
        fi

    fi

   if [ x$DRIVER = "xath5k" ]
   then
      getPhy $2
      CHIPSET="Atheros `dmesg | grep $PHYDEV | grep "chip found" | cut -d':' -f 2 | cut -d' ' -f 3`"
   fi
   
    if [ x$DRIVER = "xath_pci" ]
    then
        CHIPSET="Atheros "
    fi
   
    if [ x$DRIVER = "xath9k" ]
    then
       getPhy $2
       CHIPSET="Atheros `dmesg | grep $PHYDEV | grep Atheros | tail -n 1 | cut -d':' -f 2 | cut -d' ' -f 3`"
    fi

    if [ x$DRIVER = "xorinoco" ]
    then
        CHIPSET="Hermes/Prism"
    fi
   
    if [ x$DRIVER = "xath9k_htc" -o x$DRIVER = "xusb" ]
    then
        CHIPSET="AR9001/9002/9271"
    fi
   
    if [ x$DRIVER = "xwl12xx" ]
    then
            CHIPSET="TI WL1251/WL1271"
            IS_WL1251="`dmesg| grep firmware | grep wl1251 | wc -l`"
            IS_WL1271="`dmesg| grep firmware | grep wl1271 | wc -l`"

            if [ $IS_WL1251 != "0" ] && [ $IS_WL1271 = "0" ]
            then
                CHIPSET="TI WL1251"
            fi
            if [ $IS_WL1271 != "0" ] && [ $IS_WL1251 = "0" ]
            then
                CHIPSET="TI WL1271"
            fi
            # In any other case, we can't determine the chipset and thus give the generic: 1251/1271
    fi
   
   
    if [ x$DRIVER = "xr871x_usb_drv" ]
    then
            CHIPSET="Realtek 81XX"
    fi
   
    if [ x$DRIVER = "xcarl9170" ]
    then
            getPhy $2
            CHIPSET=`dmesg | grep usb | grep $PHYDEV | awk -F\  '{ print $3 " " $4 }'`
       if [ `echo $CHIPSET | grep -i atheros | wc -l` -eq 0 ]
       then
      CHIPSET=`dmesg | grep usb | grep $PHYDEV | awk -F\  '{ print $5 " " $6 }'`
       fi
    fi
}

getPhy() {
    PHYDEV=""
    if [ x"$1" = "x" ]
    then
        return
    fi

    if [ x$MAC80211 = "x" ]
    then
        return
    fi

    if [ -d /sys/class/net/$1/phy80211/ ]
    then
   PHYDEV="`ls -l "/sys/class/net/$1/phy80211" | sed 's/^.*\/\([a-zA-Z0-9_-]*\)$/\1/'`"
    fi
}

getNewMon() {
    i=0

    while [ -d /sys/class/net/$MON_PREFIX$i/ ]
    do
        i=$(($i+1))
    done

    MONDEV="$MON_PREFIX$i"
}

if [ x"`which id 2> /dev/null`" != "x" ]
then
   USERID="`id -u 2> /dev/null`"
fi

if [ x$USERID = "x" -a x$UID != "x" ]
then
   USERID=$UID
fi

if [ x$USERID != "x" -a x$USERID != "x0" ]
then
   echo Run it as root ; exit ;
fi

iwpriv > /dev/null 2> /dev/null ||
  { echo Wireless tools not found ; exit ; }

if [ x"$1" = "xcheck" ] || [ x"$1" = "xstart" ]
then
    scanProcesses
    for iface in `iwconfig 2>/dev/null | egrep '(IEEE|ESSID|802\.11|WLAN)' | sed 's/^\([a-zA-Z0-9_.]*\) .*/\1/' | grep -v wifi`
    do
#         getModule $iface
#         getDriver $iface
        checkProcessesIface $iface
    done

    if [ x"$2" = "xkill" ]
    then
        scanProcesses "$2"
    fi
    if [ x"$1" = "xcheck" ]
    then
        exit
    fi
fi

printf "\n\n"

if [ $# -ne "0" ]
then
    if [ x$1 != "xstart" ] && [ x$1 != "xstop" ]
    then
        usage
    fi

    if [ x$2 = "x" ]
    then
        usage
    fi
fi

SYSFS=0
if [ -d /sys/ ]
then
    SYSFS=1
fi

printf "Interface\tChipset\t\tDriver\n\n"


for iface in `ifconfig -a 2>/dev/null | egrep UNSPEC | sed 's/^\([a-zA-Z0-9_]*\) .*/\1/'`
do

 if [ x"`iwpriv $iface 2>/dev/null | grep ipwraw-ng`" != "x" ]
 then
        printf "$iface\t\tIntel 3945ABG\tipwraw-ng"
        if [ x$1 = "xstart" ] && [ x$2 = x$iface ]
        then
                cp $KISMET~ $KISMET 2>/dev/null &&
                echo "source=ipw3945,$iface,Centrino_abg" >>$KISMET
                startStdIface $iface $CH
                iwconfig $iface rate 1M 2> /dev/null >/dev/null
                iwconfig $iface txpower 16 2> /dev/null >/dev/null
        fi
        if [ x$1 = "xstop" ] && [ x$2 = x$iface ]
        then
                stopStdIface $iface
                iwconfig $iface txpower 15 2> /dev/null >/dev/null
                iwconfig $iface rate 54M 2> /dev/null >/dev/null
        fi
        echo
        continue
 fi

 if [ -e "/proc/sys/dev/$iface/fftxqmin" ]
 then
    MADWIFI=1
    ifconfig $iface up
    printf "$iface\t\tAtheros\t\tmadwifi-ng"
    if [ x$1 = "xstart" ] && [ x$2 = x$iface ]
    then
        IFACE=`wlanconfig ath create wlandev $iface wlanmode monitor -bssid | grep ath`
        cp $KISMET~ $KISMET 2>/dev/null &&
        echo "source=madwifi_g,$iface,Atheros" >>$KISMET
        ifconfig $iface up 2>/dev/null >/dev/null
        if [ $CH -lt 1000 ]
        then
            iwconfig $IFACE channel $CH 2>/dev/null >/dev/null
        else
            iwconfig $IFACE freq "$CH"000000 2>/dev/null >/dev/null
        fi
        ifconfig $IFACE up 2>/dev/null >/dev/null
        UDEV_ISSUE=$?
    fi
    if [ x$1 = "xstop" ] && [ x$2 = x$iface ]
    then
            echo "$iface does not support 'stop', do it on ath interface"
    fi
    echo
    continue
 fi
done

if [ $MADWIFI -eq 1 ]
then
   sleep 1s
fi

for iface in `iwconfig 2>/dev/null | egrep '(IEEE|ESSID|802\.11|WLAN)' | sed 's/^\([a-zA-Z0-9_.]*\) .*/\1/' | grep -v wifi`
do
 getModule  $iface
 getDriver  $iface
 getStack   $iface
 getChipset $DRIVER $iface


 if [ x$MAC80211 = "x1" ]
 then
    getPhy $iface
    getNewMon
    printf "$iface\t\t$CHIPSET\t$DRIVER - [$PHYDEV]"
    if [ x$1 = "xstart" ] && [ x$2 = x$iface ]
    then
        if [ $USE_IW = 1 ]
        then
            IW_ERROR=`iw dev $iface interface add $MONDEV type monitor 2>&1 | grep "nl80211 not found"`
            if [ x$IW_ERROR = "x" ]
            then
                sleep 1s
      if [ ! -z $3 ]
                then
                   if [ $3 -lt 1000 ]
                   then
                   iwconfig $MONDEV channel $3 >/dev/null 2>&1
                   else
                   iwconfig $MONDEV freq "$3"000000 >/dev/null 2>&1
                   fi
               fi
                ifconfig $MONDEV up
                printf "\n\t\t\t\t(monitor mode enabled on $MONDEV)"
            else
                if [ -f /sys/class/ieee80211/"$PHYDEV"/add_iface ]
                then
                    echo -n "$MONDEV" > /sys/class/ieee80211/"$PHYDEV"/add_iface
                    sleep 1s
                    if [ $3 -lt 1000 ]
                    then
                        iwconfig $MONDEV mode Monitor channel $3 >/dev/null 2>&1
                    else
                        iwconfig $MONDEV mode Monitor freq "$3"000000 >/dev/null 2>&1
                    fi
                    ifconfig $MONDEV up
                    printf "\n\t\t\t\t(monitor mode enabled on $MONDEV)"
                else
                    printf "\n\nERROR: nl80211 support is disabled in your kernel.\nPlease recompile your kernel with nl80211 support enabled.\n"
                fi
            fi
        else
            if [ -f /sys/class/ieee80211/"$PHYDEV"/add_iface ]
            then
                echo -n "$MONDEV" > /sys/class/ieee80211/"$PHYDEV"/add_iface
                sleep 1s
                if [ $3 -lt 1000 ]
                then
                    iwconfig $MONDEV mode Monitor channel $3 >/dev/null 2>&1
                else
                    iwconfig $MONDEV mode Monitor freq "$3"000000 >/dev/null 2>&1
                fi
                ifconfig $MONDEV up
                printf "\n\t\t\t\t(monitor mode enabled on $MONDEV)"
            else
                printf "\n\nERROR: Neither the sysfs interface links nor the iw command is available.\nPlease download and install iw from\n$IW_SOURCE\n"
            fi
        fi
    fi
    if [ x$1 = "xstop" ] && [ x$2 = x$iface ]
    then
        z="`echo $iface | cut -b -${#MON_PREFIX}`"
        if [ x$z = "x$MON_PREFIX" ]
        then
            if [ $USE_IW = 1 ]
            then
                IW_ERROR=`iw dev "$iface" interface del 2>&1 | grep "nl80211 not found"`
                if [ x$IW_ERROR = "x" ]
                then
                    printf " (removed)"
                else
                    if [ -f /sys/class/ieee80211/"$PHYDEV"/remove_iface ]
                    then
                        echo -n "$iface" > /sys/class/ieee80211/"$PHYDEV"/remove_iface
                        printf " (removed)"
                    else
                        printf "\n\nERROR: nl80211 support is disabled in your kernel.\nPlease recompile your kernel with nl80211 support enabled.\n"
                fi
                fi
            else
                if [ -f /sys/class/ieee80211/"$PHYDEV"/remove_iface ]
                then
                    echo -n "$iface" > /sys/class/ieee80211/"$PHYDEV"/remove_iface
                    printf " (removed)"
                else
                    printf "\n\nERROR: Neither the sysfs interface links nor the iw command is available.\nPlease download and install iw from\n$IW_SOURCE\n"
                fi
       fi
        else
            ifconfig $iface down
            iwconfig $iface mode managed
            printf "\n\t\t\t\t(monitor mode disabled)"
        fi
    fi
    echo
    continue
 fi


 if [ x$DRIVER = "xorinoco" ] || [ x"`iwpriv $iface 2>/dev/null | grep get_rid`" != "x" ] || [ x"`iwpriv $iface 2>/dev/null | grep dump_recs`" != "x" ]
 then
    printf "$iface\t\tHermesI\t\torinoco"
    if [ x$1 = "xstart" ] && [ x$2 = x$iface ]
    then
        cp $KISMET~ $KISMET 2>/dev/null &&
        echo "source=orinoco,$iface,HermesI" >>$KISMET
        if [ $CH -lt 1000 ]
        then
            iwconfig $iface mode Monitor channel $CH >/dev/null 2>&1
        else
            iwconfig $iface mode Monitor freq "$CH"000000 >/dev/null 2>&1
        fi
        iwpriv $iface monitor 1 $CH >/dev/null 2>&1
        ifconfig $iface up
        printf " (monitor mode enabled)"
    fi
    if [ x$1 = "xstop" ] && [ x$2 = x$iface ]
    then
        ifconfig $iface down
        iwpriv $iface monitor 0 >/dev/null 2>&1
        iwconfig $iface mode Managed >/dev/null 2>&1
        printf " (monitor mode disabled)"
    fi
    echo
    continue
 fi

 if [ x$DRIVER = "xrtl819xU" ]
 then
    printf "$iface\t\tRealtek 819x\trtl819xU"
    if [ x$1 = "xstart" ] && [ x$2 = x$iface ]
    then
        startStdIface $iface $CH
    fi
    if [ x$1 = "xstop" ] && [ x$2 = x$iface ]
    then
        stopStdIface $iface
    fi
    echo
    continue
 fi

 if [ x$DRIVER = "xipw2100" ] || [ x"`iwpriv $iface 2>/dev/null | grep set_crc_check`" != "x" ]
 then
    printf "$iface\t\tIntel 2100B\tipw2100"
    if [ x$1 = "xstart" ] && [ x$2 = x$iface ]
    then
        cp $KISMET~ $KISMET 2>/dev/null &&
        echo "source=ipw2100,$iface,Centrino_b" >>$KISMET
        startStdIface $iface $CH
    fi
    if [ x$1 = "xstop" ] && [ x$2 = x$iface ]
    then
        stopStdIface $iface
    fi
    echo
    continue
 fi


 if [ x$DRIVER = "xarusb_lnx" ] || [ x$DRIVER = "Otus" ]
 then
    printf "$iface\t\tAR9001USB\tOtus"
    if [ x$1 = "xstart" ] && [ x$2 = x$iface ]
    then
   echo "Monitor mode not yet supported"
    fi
    if [ x$1 = "xstop" ] && [ x$2 = x$iface ]
    then
   stopStdIface $iface
    fi
    echo
    continue
 fi 

 if [ x$DRIVER = "xWiLink" ]
 then
    getChipset $iface
    printf "$iface\t\t${CHIPSET}\t\t${DRIVER}"
    if [ x$1 = "xstart" ] && [ x$2 = x$iface ]
    then
        printf "\n\t\t\t\tMonitor mode not yet supported"
    fi 
    if [ x$1 = "xstop" ] && [ x$2 = x$iface ]
    then
        stopStdIface $iface
    fi 
    echo
    continue
 fi

 if [ x$DRIVER = "xipw2200" ] || [ x"`iwpriv $iface 2>/dev/null | grep sw_reset`" != "x" ]
 then
    MODINFO=`modinfo ipw2200  2>/dev/null | awk '/^version/ {print $2}'`
    if { echo "$MODINFO" | grep -E '^1\.0\.(0|1|2|3)$' ; }
    then
       echo "Monitor mode not supported, please upgrade"
    else
   printf "$iface\t\tIntel 2200BG\tipw2200"
   if [ x$1 = "xstart" ] && [ x$2 = x$iface ]
   then
       cp $KISMET~ $KISMET 2>/dev/null &&
       echo "source=ipw2200,$iface,Centrino_g" >>$KISMET
       startStdIface $iface $CH
   fi
   if [ x$1 = "xstop" ] && [ x$2 = x$iface ]
   then
       stopStdIface $iface
   fi

       if { echo "$MODINFO" | grep -E '^1\.0\.(5|7|8|11)$' ; }
   then
      printf " (Warning: bad module version, you should upgrade)"
   fi
     fi
     echo
     continue
 fi


 if [ x$DRIVER = "xcx3110x" ] || [ x"`iwpriv $iface 2>/dev/null | grep set_backscan`" != "x" ]
 then
     printf "$iface\t\tNokia 770\t\tcx3110x"
     if [ x$1 = "xstart" ] || [ x$1 = "xstop" ]
     then
        printf " (Enable/disable monitor mode not yet supported)"
     fi
     echo
     continue
 fi


 if [ x$DRIVER = "xipw3945" ] || [ x"`iwpriv $iface 2>/dev/null | grep set_preamble | grep -v set_crc_check`" != "x" ]
  then
        printf "$iface\t\tIntel 3945ABG\tipw3945"
        if [ x$1 = "xstart" ] && [ x$2 = x$iface ]
         then
                cp $KISMET~ $KISMET 2>/dev/null &&
                echo "source=ipw3945,$iface,Centrino_g" >>$KISMET
                startStdIface $iface $CH
        fi
        if [ x$1 = "xstop" ] && [ x$2 = x$iface ]
         then
                stopStdIface $iface
        fi
        echo
        continue
 fi


 if [ x"`iwpriv $iface 2>/dev/null | grep inact_auth`" != "x" ]
 then
     if [ -e "/proc/sys/net/$iface/%parent" ]
     then
        printf "$iface\t\tAtheros\t\tmadwifi-ng VAP (parent: `cat /proc/sys/net/$iface/%parent`)"
   if [ x$2 = x$iface ] && [ x$1 = "xstop" ]
   then
      wlanconfig $iface destroy
      printf " (VAP destroyed)"
   fi
   if [ x$1 = "xstart" ]
   then
      if [ $iface = "$IFACE" ]
      then
         printf " (monitor mode enabled)"
      fi
      if [ x$2 = x$iface ]
      then
         printf " (VAP cannot be put in monitor mode)"
      fi
   fi

   echo ""
        continue

     fi
     printf "$iface\t\tAtheros\t\tmadwifi"
     if [ x$1 = "xstart" ] && [ x$2 = x$iface ]
     then
         cp $KISMET~ $KISMET 2>/dev/null &&
         echo "source=madwifi_g,$iface,Atheros" >>$KISMET
         startStdIface $iface $CH
     fi
     if [ x$1 = "xstop" ] && [ x$2 = x$iface ]
     then
         stopStdIface $iface
     fi
     echo
     continue
 fi


 if [ x$DRIVER = "xprism54" ] || [ x"`iwpriv $iface 2>/dev/null | grep getPolicy`" != "x" ]
 then
     printf "$iface\t\tPrismGT\t\tprism54"
     if [ x$1 = "xstart" ] && [ x$2 = x$iface ]
     then
         cp $KISMET~ $KISMET 2>/dev/null &&
         echo "source=prism54g,$iface,Prism54" >>$KISMET
         ifconfig $iface up
         if [ $CH -lt 1000 ]
         then
             iwconfig $iface mode Monitor channel $CH
         else
             iwconfig $iface mode Monitor freq "$CH"000000
         fi
         iwpriv $iface set_prismhdr 1 >/dev/null 2>&1
         printf " (monitor mode enabled)"
     fi
     if [ x$1 = "xstop" ] && [ x$2 = x$iface ]
     then
         stopStdIface $iface
     fi
     echo
     continue
 fi


 if [ x$DRIVER = "xhostap" ] || [ x"`iwpriv $iface 2>/dev/null | grep antsel_rx`" != "x" ]
 then
     printf "$iface\t\tPrism 2/2.5/3\tHostAP"
     if [ x$1 = "xstart" ] && [ x$2 = x$iface ]
     then
         cp $KISMET~ $KISMET 2>/dev/null &&
         echo "source=hostap,$iface,Prism2" >>$KISMET
         if [ $CH -lt 1000 ]
         then
             iwconfig $iface mode Monitor channel $CH
         else
             iwconfig $iface mode Monitor freq "$CH"000000
         fi
         iwpriv $iface monitor_type 1 >/dev/null 2>&1
         ifconfig $iface up
         printf " (monitor mode enabled)"
     fi
     if [ x$1 = "xstop" ] && [ x$2 = x$iface ]
     then
         stopStdIface $iface
     fi
     echo
     continue
 fi


 if [ x$DRIVER = "xwlan-ng" ] || [ x"`wlancfg show $iface 2>/dev/null | grep p2CnfWEPFlags`" != "x" ]
 then
     printf "$iface\t\tPrism 2/2.5/3\twlan-ng"
     if [ x$1 = "xstart" ] && [ x$2 = x$iface ]
     then
         cp $KISMET~ $KISMET 2>/dev/null &&
         echo "source=wlanng,$iface,Prism2" >>$KISMET
         wlanctl-ng $iface lnxreq_ifstate ifstate=enable >/dev/null
         wlanctl-ng $iface lnxreq_wlansniff enable=true channel=$CH \
                           prismheader=true wlanheader=false \
                           stripfcs=true keepwepflags=true >/dev/null
         echo p2CnfWEPFlags=0,4,7 | wlancfg set $iface
         ifconfig $iface up
         printf " (monitor mode enabled)"
     fi
     if [ x$1 = "xstop" ] && [ x$2 = x$iface ]
     then
         ifconfig $iface down
         wlanctl-ng $iface lnxreq_wlansniff enable=false  >/dev/null
         wlanctl-ng $iface lnxreq_ifstate ifstate=disable >/dev/null
         printf " (monitor mode disabled)"
     fi
     echo
     continue
 fi


 if [ x$SYSFS = "x" ] && [ x"`iwpriv $iface 2>/dev/null | grep get_RaAP_Cfg`" != "x" ]
 then
    if [ x"`iwconfig $iface | grep ESSID | awk -F\  '{ print $2}' | grep -i rt61`" != "x" ]
    then
       printf "$iface\t\tRalink 2561 PCI\trt61"
    fi

    if [ x"`iwconfig $iface | grep ESSID | awk -F\  '{ print $2}' | grep -i rt73`" != "x" ]
    then
        printf "$iface\t\tRalink 2573 USB\trt73"
    fi

    if [ x$1 = "xstart" ] && [ x$2 = x$iface ]
    then
         startStdIface $iface $CH
         iwpriv $iface rfmontx 1
         if [ x"`iwpriv $iface 2>/dev/null | grep forceprismheader`" != "x" ]
         then
             iwpriv $iface forceprismheader 1
         fi
         if [ x"`iwpriv $iface 2>/dev/null | grep forceprism`" != "x" ]
         then
             iwpriv $iface forceprism 1
         fi
    fi
    if [ x$1 = "xstop" ] && [ x$2 = x$iface ]
     then
        stopStdIface $iface
    fi
    echo
    continue

 fi


 if [ x$DRIVER = "xrt61" ]
 then
    printf "$iface\t\tRalink 2561 PCI\trt61"

    if [ x$1 = "xstart" ] && [ x$2 = x$iface ]
    then
         startStdIface $iface $CH
         iwpriv $iface rfmontx 1
         if [ x"`iwpriv $iface 2>/dev/null | grep forceprismheader`" != "x" ]
         then
             iwpriv $iface forceprismheader 1
         fi
         if [ x"`iwpriv $iface 2>/dev/null | grep forceprism`" != "x" ]
         then
             iwpriv $iface forceprism 1
         fi
    fi
    if [ x$1 = "xstop" ] && [ x$2 = x$iface ]
     then
        stopStdIface $iface
    fi   
    echo
    continue

 fi


 if [ x$DRIVER = "xrt73" ]
 then
    printf "$iface\t\tRalink 2573 USB\trt73"

    if [ x$1 = "xstart" ] && [ x$2 = x$iface ]
    then
         startStdIface $iface $CH
         iwpriv $iface rfmontx 1
         if [ x"`iwpriv $iface 2>/dev/null | grep forceprismheader`" != "x" ]
         then
             iwpriv $iface forceprismheader 1
         fi
         if [ x"`iwpriv $iface 2>/dev/null | grep forceprism`" != "x" ]
         then
             iwpriv $iface forceprism 1
         fi
    fi
    if [ x$1 = "xstop" ] && [ x$2 = x$iface ]
     then
        stopStdIface $iface
    fi   
    echo
    continue

 fi


 if [ x$DRIVER = "xrt2500" ] || [ x"`iwpriv $iface 2>/dev/null | grep bbp`" != "x" ]
 then
     printf "$iface\t\tRalink 2560 PCI\trt2500"
     if [ x$1 = "xstart" ] && [ x$2 = x$iface ]
     then
         cp $KISMET~ $KISMET 2>/dev/null &&
         echo "source=rt2500,$iface,Ralink_g" >>$KISMET
         iwconfig $iface mode ad-hoc 2> /dev/null >/dev/null
         startStdIface $iface $CH
     fi
     if [ x$1 = "xstop" ] && [ x$2 = x$iface ]
     then
         stopStdIface $iface
     fi
     echo
     continue
 fi


 if [ x$DRIVER = "xrt2570" ] || [ x"`iwpriv $iface 2>/dev/null | grep wpapsk`" != "x" ] && [ x"`iwpriv $iface 2>/dev/null | grep get_RaAP_Cfg`" = "x" ]
 then
     printf "$iface\t\tRalink 2570 USB\trt2570"
     if [ x$1 = "xstart" ] && [ x$2 = x$iface ]
     then
         cp $KISMET~ $KISMET 2>/dev/null &&
         echo "source=rt2500,$iface,Ralink_g" >>$KISMET
         iwconfig $iface mode ad-hoc 2> /dev/null >/dev/null
         startStdIface $iface $CH
         if [ x"`iwpriv $iface 2>/dev/null | grep forceprismheader`" != "x" ]
         then
             iwpriv $iface forceprismheader 1
         fi
         if [ x"`iwpriv $iface 2>/dev/null | grep forceprism`" != "x" ]
         then
             iwpriv $iface forceprism 1
         fi
     fi
     if [ x$1 = "xstop" ] && [ x$2 = x$iface ]
     then
         stopStdIface $iface
     fi
     echo
     continue
 fi


 if [ x$DRIVER = "xr8180" ] || [ x"`iwpriv $iface 2>/dev/null | grep debugtx`" != "x" ]
 then
     printf "$iface\t\tRTL8180/RTL8185\tr8180"
     if [ x$1 = "xstart" ] && [ x$2 = x$iface ]
     then
         cp $KISMET~ $KISMET 2>/dev/null &&
         echo "source=rt8180,$iface,Realtek" >>$KISMET
         if [ $CH -lt 1000 ]
         then
             iwconfig $iface mode Monitor channel $CH
         else
             iwconfig $iface mode Monitor freq "$CH"000000
         fi
         if [ x"`iwpriv $iface 2>/dev/null | grep prismhdr`" != "x" ]
         then
            iwpriv $iface prismhdr 1 >/dev/null 2>&1
         fi
         ifconfig $iface up
         printf " (monitor mode enabled)"
     fi
     if [ x$1 = "xstop" ] && [ x$2 = x$iface ]
     then
         stopStdIface $iface
     fi
     echo
     continue
 fi


 if [ x$DRIVER = "xr8187" ] || [ x"`iwpriv $iface 2>/dev/null | grep badcrc`" != "x" ]
 then
     printf "$iface\t\tRTL8187\t\tr8187"
     if [ x$1 = "xstart" ] && [ x$2 = x$iface ]
     then
         cp $KISMET~ $KISMET 2>/dev/null &&
         echo "source=rt8180,$iface,Realtek" >>$KISMET
         if [ $CH -lt 1000 ]
         then
             iwconfig $iface mode Monitor channel $CH
         else
             iwconfig $iface mode Monitor freq "$CH"000000
         fi
         if [ x"`iwpriv $iface 2>/dev/null | grep rawtx`" != "x" ]
         then
             iwpriv $iface rawtx 1 >/dev/null 2>&1
         fi
         ifconfig $iface up
         printf " (monitor mode enabled)"
     fi
     if [ x$1 = "xstop" ] && [ x$2 = x$iface ]
     then
         stopStdIface $iface
     fi
     echo
     continue
 fi


 if [ x$DRIVER = "xzd1211rw" ] || [ x"`iwpriv $iface 2>/dev/null | grep get_regdomain`" != "x" ]
 then
     printf "$iface\t\tZyDAS 1211\tzd1211rw"
     if [ x$1 = "xstart" ] && [ x$2 = x$iface ]
     then
         cp $KISMET~ $KISMET 2>/dev/null &&
         echo "source=zd1211,$iface,ZyDAS" >>$KISMET
         startStdIface $iface $CH
     fi
     if [ x$1 = "xstop" ] && [ x$2 = x$iface ]
     then
         stopStdIface $iface
     fi
     echo
     continue
 fi


 if [ x$DRIVER = "xzd1211" ] || [ x"`iwpriv $iface 2>/dev/null | grep dbg_flag`" != "x" ]
 then
     printf "$iface\t\tZyDAS 1211\tzd1211"
     if [ x$1 = "xstart" ] && [ x$2 = x$iface ]
     then
         cp $KISMET~ $KISMET 2>/dev/null &&
         echo "source=zd1211,$iface,ZyDAS" >>$KISMET
         startStdIface $iface $CH
     fi
     if [ x$1 = "xstop" ] && [ x$2 = x$iface ]
     then
         stopStdIface $iface
     fi
     echo
     continue
 fi


 if [ x$DRIVER = "xacx" ] || [ x"`iwpriv $iface 2>/dev/null | grep GetAcx1`" != "x" ]
 then
     printf "$iface\t\tTI ACX1xx\tacx"
     if [ x$1 = "xstart" ] && [ x$2 = x$iface ]
     then
         cp $KISMET~ $KISMET 2>/dev/null &&
         echo "source=acx100,$iface,TI" >>$KISMET
         iwpriv $iface monitor 2 $CH 2> /dev/null >/dev/null
         startStdIface $iface $CH
     fi
     if [ x$1 = "xstop" ] && [ x$2 = x$iface ]
     then
         stopStdIface $iface
     fi
     echo
     continue
 fi


 if [ x$DRIVER = "xbcm43xx" ] || [ x"`iwpriv $iface 2>/dev/null | grep write_sprom`" != "x" ]
 then
     printf "$iface\t\tBroadcom\tbcm43xx"
     if [ x$1 = "xstart" ] && [ x$2 = x$iface ]
     then
         cp $KISMET~ $KISMET 2>/dev/null &&
         echo "source=bcm43xx,$iface,broadcom" >>$KISMET
         startStdIface $iface $CH
     fi
     if [ x$1 = "xstop" ] && [ x$2 = x$iface ]
     then
         stopStdIface $iface
         ifconfig $iface up
     fi
     echo
     continue
 fi


 if [ x$DRIVER = "xislsm" ] || [ x"`iwpriv $iface 2>/dev/null | grep set_announcedpkt`" != "x" ]
 then
    printf "$iface\t\tPrismGT\t\tislsm"
    if [ x$1 = "xstart" ] && [ x$2 = x$iface ]
    then
         startStdIface $iface $CH
    fi
    if [ x$1 = "xstop" ] && [ x$2 = x$iface ]
     then
        stopStdIface $iface
    fi   
    echo
    continue

 fi


 if [ x$DRIVER = "xat76c503a" ] || [ x"`iwpriv $iface 2>/dev/null | grep set_announcedpkt`" != "x" ]
  then
     printf "$iface\t\tAtmel\t\tat76c503a"
     if [ x$1 = "xstart" ] && [ x$2 = x$iface ]
     then
          startStdIface $iface $CH
     fi
     if [ x$1 = "xstop" ] && [ x$2 = x$iface ]
      then
          stopStdIface $iface
     fi     
     echo
     continue

 fi


 if [ x$DRIVER = "xndiswrapper" ] || [ x"`iwpriv $iface 2>/dev/null | grep ndis_reset`" != "x" ]
 then
     printf "$iface\t\tUnknown\t\tndiswrapper"
     if [ x$2 = x$iface ]
     then
         echo " (MONITOR MODE NOT SUPPORTED)"
     fi
     if [ x$1 = "xstop" ] && [ x$2 = x$iface ]
     then
         stopStdIface $iface
     fi
     echo
     continue
 fi


 if [ x$DRIVER != "x" ]
 then
     if [ x$CHIPSET = "x" ]
     then
         printf "$iface\t\tUNKNOWN\t\t$DRIVER"
     else
         printf "$iface\t\t$CHIPSET\t\t$DRIVER"
     fi

     if [ x$1 = "xstart" ] && [ x$2 = x$iface ]
     then
         startStdIface $iface $CH
     fi
     if [ x$1 = "xstop" ] && [ x$2 = x$iface ]
     then
         stopStdIface $iface
     fi
     echo
     continue
 fi

printf "$iface\t\tUnknown\t\tUnknown (MONITOR MODE NOT SUPPORTED)\n"

done

echo

if [ $UDEV_ISSUE != 0 ] ; then
   echo udev renamed the interface. Read the following for a solution:
   echo http://www.aircrack-ng.org/doku.php?id=airmon-ng#interface_athx_number_rising_ath0_ath1_ath2...._ath45
   echo
fi


espero que les sirva amigos

pepala

  • Visitante
Re: LINSET 0.14 - WPA/2 Hack sin Fuerza Bruta
« Respuesta #644 en: 13-08-2015, 01:01 (Jueves) »
Ok ha funcionado gracias¡¡¡ y por adjuntar el script de arimon-ng, porque no he encontrado el correspondiente xz para descargarlo. Por ahora linset arranca y usa el mon0  >:(

vjunior

  • Visitante
MODIFICARCION LINSET - WPA/2 Hack sin Fuerza Bruta
« Respuesta #645 en: 27-08-2015, 23:16 (Jueves) »
saludos
el amigo dynyly  estado intentando hacer un script frankie con los scripts que ya hay de linset
linset 0.9 con index que se generan el propio script
linset gui de mx kukulkan
linset infitinun  de hack32
y el linset de la 4.11.1 final
mis ideas eran aprender el uso del linset infinitun para añadir la index que se quiera desde fuera del script estoy en ello
añadir el soporte htpps del linset gui lo he conseguido
que genere de por si los index del linset 0.9 en el 0.14 tambien creo que lo he conseguido o quizas no .....he eliminado la interfaz neutra y he añadido las del 0.9 ademas de algunos cambios
tengo un problema que veo en el script y que yo solo se que no voy a poder solucionarlo me da fallos en una linea
espero no liar y expongo las lineas donde me da fallo exponiendo los 3 scripts para comparar y asi obtener algo de luz a mis dudas y compartir conocimiento.

MAS INFORMACION: DEJO EL URL


https://www.wifi-libre.com/topic-203-modificar-linset.html

najador

  • Visitante
Re: LINSET 0.14 - WPA/2 Hack sin Fuerza Bruta
« Respuesta #646 en: 28-08-2015, 01:30 (Viernes) »
salu2
el linset que comentas es el mismo linset se ha añadido  de linsetgui de  mx kukulkan el ssl  y solo se le a quitado zenity por estetica y rapided
por lo demas es lo mismo aun  no se conseguido añadir soporte https al completo
ademas no funciona correctamente en 4.11 una niñada por parte del usuario
« Última modificación: 28-08-2015, 02:18 (Viernes) por najador »

prosi

  • Visitante
Re: LINSET 0.14 - WPA/2 Hack sin Fuerza Bruta
« Respuesta #647 en: 29-08-2015, 22:54 (Sábado) »
Hola,

Estoy usando una VM con kali linux 1.1.0 x64 y un usb wireless RT2870/3070 y resulta que cuando selecciono la interfaz el sistema se me queda colgado. He reiniciado varias veces y siempre sucede lo mismo.

A alguien se le ocurre por qué se cuelga?

Salu2!!

diloes

  • Visitante
Re: LINSET 0.14 - WPA/2 Hack sin Fuerza Bruta
« Respuesta #648 en: 04-09-2015, 15:26 (Viernes) »
Hola,

Estoy usando una VM con kali linux 1.1.0 x64 y un usb wireless RT2870/3070 y resulta que cuando selecciono la interfaz el sistema se me queda colgado. He reiniciado varias veces y siempre sucede lo mismo.

A alguien se le ocurre por qué se cuelga?

Salu2!!

A mi me pasa lo mismo con el RT2870/3070, tengo kali en el hdd y al lanzar linset se bloquea el pc, con wifislax en maquina virtual me pasa lo mismo. Hay algun problema con ese chipset.

javierrvv

  • Visitante
Re: LINSET 0.14 - WPA/2 Hack sin Fuerza Bruta
« Respuesta #649 en: 04-09-2015, 20:32 (Viernes) »
Compas como puedo guardar el handshake, ya que guardo todo el contenido de la carpeta /tmp/TMPlinset/ y ocupo los 2 archivos .cap que estan que linset ocupo para realizar todo el procedimiento, pero una vez que lo cierro e intento poner la dirección me dice handshake inválido.
« Última modificación: 07-09-2015, 20:42 (Lunes) por javierrvv »

mokfula

  • Visitante
Re: LINSET 0.14 - WPA/2 Hack sin Fuerza Bruta
« Respuesta #650 en: 07-09-2015, 20:18 (Lunes) »
Hola buen día para todos, tengo el siguiente problema. Espero que alguien me logre ayudar.
Tengo un inconveniente con el linset en mi laptop. Hago todo el procedimiento al pie de la letra, selecciono la red a atacar, selecciono la opción de handshake para verificar el pass, para comprobar el handshake le doy en aircrack-ng, y para capturar el handshake le doy en desautenticacion masiva al AP objetivo. Ya teniendo el handshake capturado y lista la interfaz web, llega el momento de lanzar el ataque a la red que es cuando me quedan 4 ventanas, el problema esta en que la desautentificacion con mdk3 no inicia, se queda pegado en Periodically re-reading blacklist/whitelist every 3 seconds, (tampoco crea la AP falsa) he intentado de todo pero no lo consigo. Si es posible ayudarme les agradezco enormemente.
Por cierto, probe en mi maquina de escritorio y va perferctamente, la laptop es una vaio vpcz11, y la tarjeta que usa es una Intel 6200

DjunioR

  • Visitante
Re: LINSET 0.14 - WPA/2 Hack sin Fuerza Bruta
« Respuesta #651 en: 10-09-2015, 16:09 (Jueves) »
Facil: si en caso no desautentificando con mdk3 en linset,  cierra y abre un nuevo terminal  escribe            mdk3 mon0 d -b /tmp/TMPlinset/mdk3.txt

troH

  • Visitante
Re: LINSET 0.14 - WPA/2 Hack sin Fuerza Bruta
« Respuesta #652 en: 14-09-2015, 16:20 (Lunes) »
hola a todos, alguien me ayuda con éste error?

Después de capturar el handshake recibo ésto:

« Última modificación: 14-09-2015, 16:22 (Lunes) por troH »

djcosmines

  • Visitante
Re: LINSET 0.14 - WPA/2 Hack sin Fuerza Bruta
« Respuesta #653 en: 15-09-2015, 22:27 (Martes) »





De las 20 redes es la unica que me pasa esto, antes la red tenia otro nombre, desde que cambie el nombre, pasa esto ...por ejemplo Jazztel_XXXX_XX y ahora Jazz -OXXXXX, es posible que tiene este espacio entre Jazz y - ?
« Última modificación: 15-09-2015, 22:31 (Martes) por djcosmines »

yeyo729

  • Visitante
Re: LINSET 0.13 - WPA/2 Hack sin Fuerza Bruta
« Respuesta #654 en: 17-10-2015, 14:13 (Sábado) »
Hola! hoy he descubierto esta herramienta y he decidido empezar. He probado con mi red y efectivamente me ha hechado de la red pero no em ha puesto el mensaje de que vuelva a escribir la contraseña. He probado pasado un rato y me pasaba lo mismo, y en lo de clientes e intentos ponia 0 aún habiendo 4 dispositivos conectados.

Sabéis porque puede ser?
adjunto captura de pantalla


tengo una antena con chip rtl8187 y otra que no se que chip es pero ese no.

He leido que lo de 0 intentos puede ser porque no estén haciendo nada con el ordenador o movil y no hayan visto ese mensaje, pero si que estaba navegando por internet

Gracias por la ayuda

Buenas me pasa algo parecido al compañero a mi el Fakedns me va mandando respuesta, pero 0 clientes activos , tengo 4 dispositivos conectado el router, tambien decir que no se quedan sin conexion, siguen navegando sin ningun problema, y tampco se duplica la conexion, esta leyendo para arriba y hacia abajo el post y o me lo saltado con tanta informacion y ya me sangran los ojos jajaj, mi pregunta es , que a lo mejor Linset 0,14 no es compatible con mi tarjeta de red intel 3945.. A ver alguien me puede hechar un mano, lo iba a dejar ya por aburrido, pero  ya es por orgullo y satisfacion personal.
Un abrazo y un saludo

Bryanjzcr

  • Visitante
Re: LINSET 0.14 - WPA/2 Hack sin Fuerza Bruta
« Respuesta #655 en: 04-11-2015, 15:26 (Miércoles) »
Hola me disculpo si este inconveniente no es de aqui, pero cuando ejecuto el linset y hago todos los procesos para obtener la pass, no se actualiza el ataque y sale esto " Periodicaly re-reading blacklist/whitelist every 3 seconds" ayuda por favor :'(

Francismarin666

  • Visitante
Re: LINSET 0.14 - WPA/2 Hack sin Fuerza Bruta
« Respuesta #656 en: 09-11-2015, 00:25 (Lunes) »
hola buenas noches llevo dias probando con mi linea el programa linset funciona perfectamente o eso creo no lo logro encontrar por el foro, pero el problema es este lo hace todo bien incluso me sale los intentos de poner la pass y  la pongo correctamente pero el programa no me desvela la pass, aque puede ser debido muchas gracias

pinumber

  • Visitante
Re: LINSET 0.14 - WPA/2 Hack sin Fuerza Bruta
« Respuesta #657 en: 14-11-2015, 19:11 (Sábado) »
Hola a todos,
Os presento mi problema con Linset, porque no le encuentro solución, y eso que he estado buscando por la red...
He probado desde la versión 4.9 a 4.11 de WifisLax. Y en todos me pasa lo mismo.
Linset me arranca, me detecta la tarjeta de red, me busca las redes, saca el Handshake, marco el idioma de la pantalla que le debe de salir al usuario (Recalco que es mi red, estoy intentando tener una red lo más segura posible) y salen las 4 ventanas.
Pues todas son correctas. Pero la de "desautenticando con mdk3 a todo los de "nombre de la red..."" me aparece el mensaje de "Periodically re-readeing blacklist/whitelist every 3 seconds"
Y no te crea la red falsa, y entonces nadie accede.
He visto que había soluciones por la red, y las he probado y no funcionan.
Os las pongo aquí.

La primera era abrir una consola y ejecutar el comando:
mdk3 mon0 d -b/tmp/TMPlinset/mdk3.txt
Ese comando se queda cargando y no me muestra nada...

La otra solución era poner estas líneas en una consola:
ifconfing wlan0 down
airmon-ng star wlan0
mdk3 mon0 d -b blacklist -c X
Y aquí me sale que está desautenticando usuarios de mi red.
Pero el linset sigue sin funcionar y se queda estancado...
¿Sabéis qué le ocurre? ¿Qué puedo hacer para solucionarlo?
Por si es importante, todos los Wifislax los arranco desde un Pen Drive...
Un saludo y muchas gracias.

badiamor

  • Visitante
Re: LINSET 0.14 - WPA/2 Hack sin Fuerza Bruta
« Respuesta #658 en: 19-11-2015, 21:22 (Jueves) »
voy a exponer otro fallo, para mi grave de linset...

resulta que tengo un router vodafone y haciendo pruebas de ataque, el router tiene como protecion el cambiarse de canal!

asta hay todo correcto, el fallo viene cuando el router se cambia al canal   (13)....

1º linse no crea el ap en el canal 13... en todos los demas 1-11 los crea ok
2º es casi imposible conseguir el handshake  en los demas canales lo pillo al vuelo, me desconecta el movil y lo caza.
3º si me salto el apartado de capturar el handshake, ya que tengo uno guardado y lamzo ataque, no desconecta a los clientes..
cosa que en los otros canales si sucede.

resumiendo: canal 13 casi imposible capturar handshake , no crea ap en el canal y ultimo no expulsa clientes.


segun veo a nadie mas le a pasado esto! espero vuestras respuesta...

no estaria de mas que el autor me respondiera!! seria muy buueno por su parte...

zaratustra

  • Visitante
Re: LINSET 0.14 - WPA/2 Hack sin Fuerza Bruta
« Respuesta #659 en: 25-11-2015, 15:23 (Miércoles) »
voy a exponer otro fallo, para mi grave de linset...

resulta que tengo un router vodafone y haciendo pruebas de ataque, el router tiene como protecion el cambiarse de canal!

asta hay todo correcto, el fallo viene cuando el router se cambia al canal   (13)....

1º linse no crea el ap en el canal 13... en todos los demas 1-11 los crea ok
2º es casi imposible conseguir el handshake  en los demas canales lo pillo al vuelo, me desconecta el movil y lo caza.
3º si me salto el apartado de capturar el handshake, ya que tengo uno guardado y lamzo ataque, no desconecta a los clientes..
cosa que en los otros canales si sucede.

resumiendo: canal 13 casi imposible capturar handshake , no crea ap en el canal y ultimo no expulsa clientes.


segun veo a nadie mas le a pasado esto! espero vuestras respuesta...

no estaria de mas que el autor me respondiera!! seria muy buueno por su parte...

Haciendo pruebas con los nuevos routers de movistar fibra E0:41xxx ocurre lo mismo, cambia de canal como medida de proteccion automaticamente, entre el canal 1 y el 1. Una duda ¿importa en el handshake si este esta sacado en, por ejemplo, canal 1 y posteriormente, cuando la red este en el canal 11, se use el handshake del 1? funcionara sin problemas?
« Última modificación: 25-11-2015, 15:24 (Miércoles) por zaratustra »