lunes, 22 de enero de 2018

Bot de Microsoft realiza dibujos interpretando lenguaje natural

La IA sigue dando pasitos, esta vez un bot de Microsoft es capaz de realizar dibujos interpretando texto en lenguaje natural,

Ya sabemos que la interpretación del lenguaje natural es un problema muy complicado para los sistemas de IA, si bien es cierto que cuando se acota el dominio del problema (como en este caso) los resultados no pueden sino sorprendernos.


El sistema costa de dos partes, una que genera las imágenes y una segunda que las interpreta y descarta los modelos incorrectos. Trabajando juntas el generador de imágenes es forzado a mejorar en cada iteración. 

Previamente se había entrenado el bot con este tipo de imagenes


y la verdad es que los resultados obtenidos impresionan.



Culex.

martes, 16 de enero de 2018

Problemas montando unidad de red con cifs II

Hoy sin comerlo ni beberlo me ha empezado a fallar el montado automático que tenía configurado en el fichero fstab 


Después de trastear un poco he visto este error en el log del kernel. 


Al final solo he tenido que añadir esto a la linea del fichero fstab 'vers=2.1,' para especificar la versión.

//ipdelrecurso/nombre /media/nombre cifs vers=2.1,user=usuario,password=contraseña,noexec,users,rw,nounix,uid=1000,iocharset=utf8 0 0

Culex.

viernes, 5 de enero de 2018

Checking INTEL-SA-00086 on remote computers

Perhaps a bit late but here you are a windows scripts for checking INTEL-SA-00086 vulnerability on multiple remote computers,

First of all we have to download the Intel Detection tool and set the following  folder hierarchy wherever we want on our file system.


When we  unzip the Intel tool we'll see they are three folder but  we'd only need  the folder DiscoveryTool, on this folder we have the CLI tool we'll use on the script.

The script is quite simple, we add a tmp directory on the remote computer which we copy the files we need for running the Intel tool using psexec and finally we delete the tmp directory.

In addition to this we have two log file, one of them is quite simple 'Log. txt' (just the computer name and the exit code) and a second one  'DetailDATETIME.log' with a full detail just in case we need to do some troubleshooting




The meaning of the different exit code is the following,




And finally here you are the script.
 
PS: In order not to have troubles it's advised to run from a cmd with enough privilegies, usually a domain admin.

Enjoy!

Culex.