4/22/2020

Paquetes De Office Totalmente Gratis 32 Y 64 Bits

En el mundo de la informática, es imprescindible aceptar que todo está cambiando de manera acelerada, sin embargo no todos estamos a la vanguardia y algunos cambios no son bien aceptados por los usuarios. Este es el caso de los paquetes de Office que ofrecen nuevas interfaces con cada entrega y, obviamente existen cambios drásticos muy difíciles de asimilar.
Ahora bien, que te parece retomar a esos paquetes de Office a los cuales estabas acostumbrado y que por alguna razón te pasaste a otro. Pues bien, en este post puedes acceder de manera gratuita a los distintos paquetes de Microsoft Office, y por qué no decirlo, la última versión del gigante de las programaciones en tareas básicas. 

Paquetes de Office totalmente gratis

www.dominatupc.com.co
Tenga en cuenta que no todos los ordenadores personales y equipos portátiles no tienen el mismo tamaño de análisis informático por lo que es sumamente importante que antes revise su equipo para evitar inconvenientes con el sistema operativo. Escoge el programa deseado y así mismo las unidades mínimas de información ya sea en 32 bits o 64 bits en los siguientes links:  
Microsoft Ofice 2010 32 bits (Descarga dando clic aquí
Microsoft Ofice 2010 64 bits (Descarga dando clic aquí

Microsoft Ofice 2013 32 bits (Descarga dando clic aquí)  
Microsoft Ofice 2013 64 bits (Descarga dando clic aquí

Microsoft Ofice 2016 32 bits (Descarga dando clic aquí)   
Microsoft Ofice 2016 64 bits (Descarga dando clic aquí

Microsoft Ofice 2019 32 y 64 bits (Descarga dando clic aquí)
Opción 2 (Descarga dando clic aquí)
En los enlaces entregados puedes tomar a disposición cualquier plantilla de Microsoft y contar con una licencia autorizada que puedes disfrutar en cualquier ordenador. No olvides recomendar este post a tus amigos y personas que necesiten este tipo de programas para mejorar su rendimiento. También te recomendamos leer el siguiente post relacionado: (Aprende todo sobre Office, cursos gratuitos del centro de aprendizaje Office)


Related links


  1. Hacking 101
  2. Hacker Seguridad Informática
  3. Tools For Hacking Wifi

Administración Remota De Servidores Desde Android

Sería muy util poder administrar todos nuestros servidores desde la palma de la mano.

Sin embargo una shell linux, no es viable en el teclado de un teléfono incluso de un tablet, sobretodo porque hay que escribir muchos símbolos, por ejemplo el guión, y estos teclados están pensados más bien para texto.

Pues bien, de esta necesidad surgió la aplicación SSHControl:


SSHControl

Esta problematica la he solucionado a base de utilizar nevegadores y estructurar los outputs para no acumular excesiva información en la pantalla.

- Navegador de ficheros
- Navegador de procesos
- Navegador de conexiones
- Navegador de logs
- Navegador de drivers de kernel

Esto permite administrar múltiples servidores con un solo dedo :)

Controlar la seguridad de sus servidores ahora es bastante sencillo y ágil, por ejemplo con solo hacer un "tap" encima de un usuario, podemos ver sos procesos asociados, con hacer otro tap en un proceso podemos kilearlo, ver mas info etc ..
Con hacer un tap encima de una apliacción, vemos sus conexiónes, con un tap en una conexión podemos agregar una regla de filtrado en el firewall, etc ..


En la siguiente versión habilitaré la opción de "Custom Commnands", la cual es muy util,
cada administrador o usuario linux, tiene una serie de comandos que repite con mucha frecuencia,
bien pues esta opción permite pre-programar estos comandos habituales, de manera que puedes lanzarlos con un simple tap.

En el roadmap tengo pensadas nuevas funcionalidades muy útiles :)

Aqui os dejo algunas capturas de pantalla:







Related news

Freefloat FTP Server 1.0 | Remote Buffer Overflow | Exploit

Related news


4/21/2020

Medusa: A Speedy, Parallel And Modular Login Brute-forcing Tool


About Medusa
   Medusa is a speedy, parallel, and modular, login brute-forcer. The goal is to support as many services which allow remote authentication as possible. The author considers following items as some of the key features of this application:

   Thread-based parallel testing. Brute-force testing can be performed against multiple hosts, users or passwords concurrently.

   Flexible user input. Target information (host/user/password) can be specified in a variety of ways. For example, each item can be either a single entry or a file containing multiple entries. Additionally, a combination file format allows the user to refine their target listing.

   Modular design. Each service module exists as an independent .mod file. This means that no modifications are necessary to the core application in order to extend the supported list of services for brute-forcing.

   Multiple protocols supported. Many services are currently supported (e.g. SMB, HTTP, MS-SQL, POP3, RDP, SSHv2, among others).

   See doc/medusa.html for Medusa documentation. For additional information:

Building on macOS

#getting the source
git clone https://github.com/jmk-foofus/medusa
cd medusa

#macOS dependencies
brew install freerdp
$ export FREERDP2_CFLAGS='-I/usr/local/include'
$ export FREERDP2_LIBS='-I/usr/local/lib/freerdp'

#building
./configure
make

#executing

./src/medusa
Medusa's Installation
   Medusa is already installed on Kali Linux, Parrot Security OS, BlackArch and any other Linux distros based for security pentesting purposes.

   For Debian-based distro users, open your Terminal and enter this command:
sudo apt install medusa

   For Arch Linux-based distro users, enter this command: sudo pacman -S medusa

About the author:

You might like these similar tools:
More articles

4/20/2020

HTML5 Games On Android

On my last hollidays, I made two HTML5 games, and published on android market. Nowadays javascript has powerful libraries for doing almost everything, and also there are several compilers from java or c code to javascript, converting opengl c code to html5 canvas, but definitely, javascript execution is slower than dalvik applications, and of course much slower than arm c libs. For improving the speed of sounds and images loader, I have used javascript asynchronous execution and scheduling priority has been controlled with setTimeout/setInterval which deprioritize or priorize a code block. This games are published on the android market here: Android Planets and here: Far Planet Related articles

Dockers And Containers


For years, developer had a challenge setting up development environment with the right configurations of tools as well as time required for the same.

This becomes even more complex when developer is using diverse technology stack. Consider a scenario where developer has written code in Python to accept the web requests using Mongo DB as back-end and further using analytics application to generate report.

Now as you can see diverse technology stack comes into picture here, is it easy task to setup all these stacks and connect with each others? Not at all. That's where docker technology comes into picture.

Above problem for installing the required technology tools/stack becomes very handy just with few commands! Rest you rely on the docker to take care of back-end dependencies.


  1. docker run  --name=db -d mongo   (This will install complete running Mongo DB for you )
  2. docker run --name=db -d MySQL  (This will install complete running MySQL DB for you )
  3. docker run  --name=db -d nginix   (This will install complete running NGINX for you )
Its that easy! Of course we can mention additional configurations by parameters, you can refer respective docker documentation for the same.



By Default when container is started, IP address is allocated within the sub net range defined for bridge network.

First we can list the interfaces as mentioned below : 

docker network ls









For viewing the details of default IP range configured we can use following command,

docker network inspect bridge
















Now we know the default range allocated for container. We can list the IP address of running container by executing following command

docker container inspect --format '' <container name>








List docker container processes running on system along with their details

docker ps








Related links


DOWNLOAD SQLI HUNTER V1.2 – SQL INJECTION TOOL

SQLi hunter is a tool to scan for an SQLi Injection vulnerability in a website on auto-pilot. It automates the search of SQLi vulnerable links from Google using different dorks. SQLi hunter can also find admin panel page of any website by using some predefined admin page lists. Download SQLi hunter v1.2.

FEATURES

– Supports 500 results
– Url List can be Imported / Exported
– The setting for connection timeout
– Proxy Settings
If you're not totally satisfied with this tool, you can try other sql injection tools like havij , sqli dumper and sqlmap. These tools are incredibly super flexible with their advanced injection features.

DOWNLOAD SQLI HUNTER V1.2

Related news