Showing posts with label hacking. Show all posts
Showing posts with label hacking. Show all posts
Thursday, September 28, 2017
Hacking Android Ataques de Directory Trasversal con ficheros ZIP
Hacking Android Ataques de Directory Trasversal con ficheros ZIP
En la BlackHat London 2015 el investigador Ryan Welton mostr� c�mo se pod�a hacer directory traversal a trav�s de inyecciones ZIP en dispositivos Android. Mi compa�ero Fran Ramirez (@cyberhadesblog) y yo hemos estado ojeando esta t�cnica estos d�as. La idea es muy sencilla, un archivo ZIP creado de forma maliciosa puede permitir a un potencial atacante escribir un archivo arbitrario en secciones no controladas del sistema operativo Android. Y cuando decimos arbitrario, queremos decir en una ubicaci�n para la cual la app que lo ejecuta no tendr�a acceso a priori.
Como se puede ver, la idea presentada por Ryan Welton es sencilla a la vez que interesante. Podemos generar un ZIP que extraiga los archivos subiendo varios niveles de la carpeta d�nde se encuentra. Esto ser�a f�cil a trav�s de la sintaxis �../�. Si el fichero ZIP no es gestionado de forma adecuada, esto podr�a permitirnos escribir fuera del directorio de extracci�n, es decir, escribir un archivo en otra ubicaci�n, incluida otra aplicaci�n. Esta t�cnica no es nueva, y en el a�o 2010, en el blog Seguridad Apple, ten�amos ejemplos de estos trucos en herramientas como ZipEg para MacOS.
C�mo se explic� en la charla de BlackHat muchas apps descargan recursos en formato ZIP, por lo que un atacante podr�a intentar colocarse en medio de una comunicaci�n en una red y obtener ventaja modificando el ZIP que se descarga la app leg�tima y sustituirlo por un ZIP malicioso. Hay que tener en cuenta siempre los permisos de la carpeta donde queremos ubicar los ficheros inyectados. Si las rutas son directorios de sistema, ser� necesario que la aplicaci�n o proceso que descomprima el fichero ZIP tenga permisos necesarios.
En el ejemplo mostrado por Ryan Welton, �ste inyecta un fichero en unos de los ZIP que se descarga una aplicaci�n de la Google Play Store (�My Talking Tom�) y que luego se descomprime autom�ticamente al ejecutarse (desde el proceso �PackageInstaller� de Android) el fichero APK donde se encuentra la misma. De esta forma garantizamos que al menos en la carpeta donde se instala la aplicaci�n podemos inyectar nuestro c�digo modificado o incluso sustituir alguna librer�a o m�dulo del programa original como hemos mencionado antes.
Escenarios posibles
Los escenarios pueden ser distintos, por lo que vamos a ver distintos casos que se detallan en la charla de Ryan Welton:
En primer lugar, hablamos del entorno que se ha montado para llevar a cabo esta prueba.
En el siguiente video se puede ver MITMProxy mostrando las peticiones que se realizan, y en el instante en el que se quiere descargar un ZIP de una ubicaci�n X, se lleva a cabo la modificaci�n o inyecci�n del ZIP malicioso por el leg�timo.
Viendo esto est� claro que se puede manipular de forma sencilla este tr�fico. Una vez la aplicaci�n descarga el archivo ZIP modificado, depende de los permisos o mecanismos de seguridad que se tengan para proteger la extracci�n y la ubicaci�n d�nde se pondr�n los ficheros que se encuentran en el interior del ZIP.
Para esta PoC hemos utilizado el c�digo publicado en la art�culo de We Live Security cambiando solamente el formato de decodificaci�n de UTF-8 a ISO-8859-1 y el �payload�. Este script de mitmproxy detecta el tr�fico de red, en concreto analiza las cabeceras GET de http/https y cuando detecta un fichero con los caracteres �PK� en los primeros dos bytes (cualquier fichero en formato ZIP) activa inyecci�n.
La rutina �response� se encarga de detectar los ficheros y tambi�n es aqu� donde definimos las rutas de inyecci�n. La rutina �injectIntoZip� por otro lado, se encarga de insertar el fichero con nuestro payload (en nuestro caso el fichero �zipizape�) dentro del fichero ZIP interceptado. En vez de utilizar directamente mitmproxy hemos optado por la versi�n mitmdump, para poder mostrar los mensajes de salida (�Found ZIP� y �Zip injected�) una vez se ha realizado la inyecci�n como puede observarse en la imagen anterior. El funcionamiento de mitmproxy y mitmdump es id�ntico, s�lo tienen como diferencia la informaci�n que muestran en pantalla.
Unzip en BusyBox
En todos los sistemas Android donde hemos realizado las pruebas se ha utilizado el programa �unzip� integrado en Busybox. �ste es b�sicamente un paquete de aplicaciones que re�ne las utilidades y comandos m�s comunes de UNIX (como por ejemplo el mencionado �unzip�) en un �nico fichero binario. Muchos sistemas GNU/Linux llevan por defecto una versi�n de este paquete debido a su gran utilidad.
La primera curiosidad que nos encontramos es que en funci�n de la versi�n de Busybox que se est� utilizando, la inyecci�n a trav�s del ZIP funciona o no lo hace. En estos videos se pueden ver las diferentes posibilidades, con la versi�n 1.22 y con la versi�n 1.26.2.
Interesante charla y concepto de inyecci�n a trav�s de los ficheros ZIP. La posibilidad de tener o aprovechar un Directory Traversal en sistemas como Android es un concepto interesante. Por supuesto, hay sistemas parcheados y otros muchos Android que est�n expuestos a este tipo de ataques o t�cnicas, y, l�gicamente, dependiendo de las medidas de seguridad que pongan las apps para descargar los ZIP ser�n vulnerables o no a estos ataques. Adem�s, estos trucos podr�an empezar a ser utilizados por el malware para Android para ocultarse mejor en el sistema.
Autores: Pablo Gonz�lez P�rez (@pablogonzalezpe), escritor de los libros "Metasploit para Pentesters", "Ethical Hacking", "Got Root" y �Pentesting con Powershell�, Microsoft MVP en Seguridad y Security Researcher en ElevenPaths y Fran Ramirez (@cyberhadesblog) escritor de libro "Microhistorias: an�cdotas y curiosidades de la historia de la inform�tica" e investigador en ElevenPaths
![]() |
| Figura 1: Hacking Android. Ataques de "Directory Trasversal" con ficheros ZIP |
Como se puede ver, la idea presentada por Ryan Welton es sencilla a la vez que interesante. Podemos generar un ZIP que extraiga los archivos subiendo varios niveles de la carpeta d�nde se encuentra. Esto ser�a f�cil a trav�s de la sintaxis �../�. Si el fichero ZIP no es gestionado de forma adecuada, esto podr�a permitirnos escribir fuera del directorio de extracci�n, es decir, escribir un archivo en otra ubicaci�n, incluida otra aplicaci�n. Esta t�cnica no es nueva, y en el a�o 2010, en el blog Seguridad Apple, ten�amos ejemplos de estos trucos en herramientas como ZipEg para MacOS.
![]() |
| Figura 2: Ejemplo de manipulaci�n de fichero ZIP con nombres ../../../../ |
C�mo se explic� en la charla de BlackHat muchas apps descargan recursos en formato ZIP, por lo que un atacante podr�a intentar colocarse en medio de una comunicaci�n en una red y obtener ventaja modificando el ZIP que se descarga la app leg�tima y sustituirlo por un ZIP malicioso. Hay que tener en cuenta siempre los permisos de la carpeta donde queremos ubicar los ficheros inyectados. Si las rutas son directorios de sistema, ser� necesario que la aplicaci�n o proceso que descomprima el fichero ZIP tenga permisos necesarios.
![]() |
| Figura 3: Remotely Abusing Android [PDF] |
En el ejemplo mostrado por Ryan Welton, �ste inyecta un fichero en unos de los ZIP que se descarga una aplicaci�n de la Google Play Store (�My Talking Tom�) y que luego se descomprime autom�ticamente al ejecutarse (desde el proceso �PackageInstaller� de Android) el fichero APK donde se encuentra la misma. De esta forma garantizamos que al menos en la carpeta donde se instala la aplicaci�n podemos inyectar nuestro c�digo modificado o incluso sustituir alguna librer�a o m�dulo del programa original como hemos mencionado antes.
Escenarios posibles
Los escenarios pueden ser distintos, por lo que vamos a ver distintos casos que se detallan en la charla de Ryan Welton:
� El caso base: Aplicaci�n vulnerable y que no comprueba nada en la extracci�n del ZIP. Ante este caso la escritura del archivo malicioso en la ubicaci�n deseada es casi segura.
� Comprobaci�n del hash del ZIP esperado: En algunas aplicaciones se descubri� que comprobaban el hash del ZIP a descargar, por lo que, si �ste era manipulado en su descarga, no se proced�a con la extracci�n.
![]() |
| Figura 4: Validaci�n de Hash en fichero descargado |
� Manifest: En algunas aplicaciones que comprobaban el hash del ZIP, se enviaba una especie de manifest, un archivo JSON, en el que se pod�a ver el hash esperado. Esta petici�n tambi�n se realizaba por HTTP, por lo que se pod�a llevar a cabo la modificaci�n previa de dicho JSON.Probando la inyecci�n
En primer lugar, hablamos del entorno que se ha montado para llevar a cabo esta prueba.
� M�quina con Kali Linux 2.El procedimiento llevado a cabo es utilizar MITMProxy para ver el tr�fico generado por la app. Nosotros hemos querido ejemplificar este hecho, para que se vea claro.
� MITMProxy versi�n 0.18.2 para la inyecci�n del ZIP manipulando el tr�fico.
� Dispositivo m�vil Android.
� 4 m�quinas virtuales de Android, entre las que est�n la 7.1, 6.0, 5.1.0 Y 4.4.1.
� BusyBox 1.22 en las m�quinas virtuales.
� BusyBox 1.26.2 en el dispositivo Android.
![]() |
| Figura 5: Interceptando el tr�fico con MITMProxy |
En el siguiente video se puede ver MITMProxy mostrando las peticiones que se realizan, y en el instante en el que se quiere descargar un ZIP de una ubicaci�n X, se lleva a cabo la modificaci�n o inyecci�n del ZIP malicioso por el leg�timo.
Figura 6: V�deo de manipulaci�n de ZIP con MITMProxy
Viendo esto est� claro que se puede manipular de forma sencilla este tr�fico. Una vez la aplicaci�n descarga el archivo ZIP modificado, depende de los permisos o mecanismos de seguridad que se tengan para proteger la extracci�n y la ubicaci�n d�nde se pondr�n los ficheros que se encuentran en el interior del ZIP.
Para esta PoC hemos utilizado el c�digo publicado en la art�culo de We Live Security cambiando solamente el formato de decodificaci�n de UTF-8 a ISO-8859-1 y el �payload�. Este script de mitmproxy detecta el tr�fico de red, en concreto analiza las cabeceras GET de http/https y cuando detecta un fichero con los caracteres �PK� en los primeros dos bytes (cualquier fichero en formato ZIP) activa inyecci�n.
![]() |
| Figura 7: Script para hacer inyecci�n de ZIP en MITMProxy |
La rutina �response� se encarga de detectar los ficheros y tambi�n es aqu� donde definimos las rutas de inyecci�n. La rutina �injectIntoZip� por otro lado, se encarga de insertar el fichero con nuestro payload (en nuestro caso el fichero �zipizape�) dentro del fichero ZIP interceptado. En vez de utilizar directamente mitmproxy hemos optado por la versi�n mitmdump, para poder mostrar los mensajes de salida (�Found ZIP� y �Zip injected�) una vez se ha realizado la inyecci�n como puede observarse en la imagen anterior. El funcionamiento de mitmproxy y mitmdump es id�ntico, s�lo tienen como diferencia la informaci�n que muestran en pantalla.
Unzip en BusyBox
En todos los sistemas Android donde hemos realizado las pruebas se ha utilizado el programa �unzip� integrado en Busybox. �ste es b�sicamente un paquete de aplicaciones que re�ne las utilidades y comandos m�s comunes de UNIX (como por ejemplo el mencionado �unzip�) en un �nico fichero binario. Muchos sistemas GNU/Linux llevan por defecto una versi�n de este paquete debido a su gran utilidad.
Figura 8: PoC de inyecci�n de fichero ZIP en Android con Busybox 1.22
La primera curiosidad que nos encontramos es que en funci�n de la versi�n de Busybox que se est� utilizando, la inyecci�n a trav�s del ZIP funciona o no lo hace. En estos videos se pueden ver las diferentes posibilidades, con la versi�n 1.22 y con la versi�n 1.26.2.
Figura 9: PoC de inyecci�n de fichero ZIP en Android con BusyBox 1.26.2
Interesante charla y concepto de inyecci�n a trav�s de los ficheros ZIP. La posibilidad de tener o aprovechar un Directory Traversal en sistemas como Android es un concepto interesante. Por supuesto, hay sistemas parcheados y otros muchos Android que est�n expuestos a este tipo de ataques o t�cnicas, y, l�gicamente, dependiendo de las medidas de seguridad que pongan las apps para descargar los ZIP ser�n vulnerables o no a estos ataques. Adem�s, estos trucos podr�an empezar a ser utilizados por el malware para Android para ocultarse mejor en el sistema.
Autores: Pablo Gonz�lez P�rez (@pablogonzalezpe), escritor de los libros "Metasploit para Pentesters", "Ethical Hacking", "Got Root" y �Pentesting con Powershell�, Microsoft MVP en Seguridad y Security Researcher en ElevenPaths y Fran Ramirez (@cyberhadesblog) escritor de libro "Microhistorias: an�cdotas y curiosidades de la historia de la inform�tica" e investigador en ElevenPaths
Sigue Un inform�tico en el lado del mal - Google+ RSS 0xWord

download file now
Wednesday, September 20, 2017
Hackers Are Distributing Backdoored Cobian RAT Hacking tool For Free
Hackers Are Distributing Backdoored Cobian RAT Hacking tool For Free
Nothing is free in this world. If you are searching for free ready-made hacking tools on the Internet, then beware�most freely available tools, claiming to be the swiss army knife for hackers, are nothing but a hoax. Last year, we reported about one such Facebook hacking tool that actually had the capability to hack a Facebook account, but yours and not the one you desire to hack. <!--
Read Here�
thesheenblog.blogspot.com
download file now
Labels:
are,
backdoored,
cobian,
distributing,
for,
free,
hackers,
hacking,
rat,
tool
Eventos conferencias y cursos del 3 al 6 de Mayo Drupal Watson Hacking Prestashop BD Machine Learning
Eventos conferencias y cursos del 3 al 6 de Mayo Drupal Watson Hacking Prestashop BD Machine Learning
A pesar de que la semana que viene es un tanto extra�a por el puente de vacaciones en el que estamos inmersos, hay algunas actividades que van a tener lugar en esos d�as, y en concreto yo voy a participar en un evento que tendr� lugar en Londres. Esto es lo que tenemos por delante estos d�as.
![]() |
| Figura 1: Eventos, conferencias y cursos del 3 al 6 de Mayo |
Yo estar� el mi�rcoles d�a 3 de Mayo por v�deo-conferencia en el 5th CDO Forum que se har� en la reuni�n de Londres. Yo voy a hablar de Big Data, Information Security & Cognitive Intelligence en Telef�nica. Ah� se va a dar un premio al CDO del a�o por ser el que m�s cambios ha llevado a su organizaci�n con su trabajo y yo he tenido el honor de ser nominado como uno de los finalistas, as� que m�s que agradecido por ello.
![]() |
| Figura 2: 5th CDO Forum |
En Barcelona, ese mi�rcoles a las 19:00 tendr� lugar en el Mobile World Centre de Movistar una conferencia centrada en el Machine Learning en la que participar�n nuestro compa�ero Alexandros Kartzoglou, Director Cient�fico de Telef�nica Research y Jos� A. Rodr�guez-Serrano jefe del equipo de ciencias de datos de BBVA Data & Analytics. M�s info:
![]() |
| Figura 3: BCN Analytics Machine Learning I |
Tambi�n el d�a 3 de Mayo, a las 19:00 en la FlagShip de Telef�nica en Gran V�a, tendr� lugar una charla gratuita de Desarrollo de una asistente virtual con Watson. Tienes la informaci�n en el MeetUp de Bot Dev Madrid.
![]() |
| Figura 4: Desarrollo de un asistente virtual con IBM Watson |
El d�a 4, con el Centro de Ciberseguridad Industrial, participaremos en un evento gratuito que tendr� lugar en Madrid, donde hablaremos de como se puede hacer el proceso de "Automatizaci�n de un Sistema de Gesti�n de la Ciberseguridad Industrial con SandaS GRC". Tienes informaci�n completa de la agenda del evento y el proceso de registro en la siguiente direcci�n web:
![]() |
| Figura 5: Beneficios de la ciberseguridad para las organizaciones industriales |
El mismo d�a 4 de Mayo, a las 9 de la ma�ana en otro lugar de Madrid tiene lugar el PrestaShop Day para todos aquellos que quieran potenciar su e-commerce con esta tecnolog�a. Como sab�is, 0xWord est� desarrollado sobre PrestaShop y en ElevenPaths creamos el plugin de Latch para proteger PrestaShop, de hecho puedes probar Latch en el PrestaShop de 0xWord. Tienes info del evento en esta direcci�n web:
![]() |
| Figura 6: PrestaShop Day Madrid |
El viernes 5 tendr� lugar el curso online de "Auditor�a y Hacking Web" que podr�s hacer v�a HackersClub. Todos los participantes, se llevar�n tambi�n el libro de 0xWord de Hacking Web Technologies donde yo escrib� varios cap�tulos.
![]() |
| Figura 7: Curso Online de Auditor�a y Hacking Web |
Y para terminar, ten�is el Drupalcamp en Madrid, los d�as 5 y 6 de Mayo (viernes y s�bado) para dedicar el fin de semana a hacer comunidad y aprender. S�, tambi�n tienes un plugin para proteger Drupal con Latch.
![]() |
| Figura 8: Drupalcamp Spain 2017 |
Saludos Malignos!
Sigue Un inform�tico en el lado del mal - Google+ RSS 0xWord

download file now
Sunday, September 17, 2017
Download Android Hacking Security Apps Series 3
Download Android Hacking Security Apps Series 3
In this android hacking tricks and security apps series you get website tools for android mobile.With this web security tools you can analyze and scan website.This series is diffrent from other because you get android apk tools for website hacking and security.
First you check our previous post for Android Hacking and Security Apps Series.
Download Android Hacking and Security Apps Series 1
Download Android Hacking and Security Apps Series 2
These android hacking apps convert your android mobile into website hacking machine.You can hack and make a whole website from these android tools.

First you check our previous post for Android Hacking and Security Apps Series.
Download Android Hacking and Security Apps Series 1
Download Android Hacking and Security Apps Series 2
These android hacking apps convert your android mobile into website hacking machine.You can hack and make a whole website from these android tools.

Top 7-9 Best Free Android Hacking and Security Apps
Droidsqli Android Sql Injection
DroidSQLi is the first automated MySQL Injection tool for Android. It allows you to test your MySQL-based web application against SQL injection attacks.


DroidSQLi supports the following injection techniques:
Time based injection
Blind injection
Error based injection
Normal injection
It automatically selects the best technique to use and employs some simple filter evasion methods.
Legal notice: this application is for educational purposes ONLY. No warranties of any kind are expressed or implied. Use at your own risk!
Download DroidSqli Android apk for Android Mobile
Slowdroid DDos Tool
SlowDroid is a necessary security testing tool for network administrator.
Slowdroid allows security professionals to simulate a DOS attack (A http post flood attack to be exact) and of course a dDOS on a web server, from mobile phones.You can perform a ddos attack on any website from this android app.
Feature
- multi-protocol (SlowDroid is able to affect HTTP, FTP, email, SSH, file sharing, etc...)
- tiny amount of bandwidth needed
- tiny CPU and RAM usage
- transparent to server logs during the test execution; logs are usually updated once SlowDroid is interrupted
Base settings to execute a SlowDroid test:


How to use it:
- "Server IP Address" is the name or ip address of the server to be tested;
- "Port" is the port number of the listening service on the server;
- "Connections" identifies number of contemporary connections; to reach the DoS state try to augment this number;
- "Wait Timeout": how often to send characters between client and server.
SlowDroid is by far better than LOIC, Slowloris, Slow Read, Apache Range Headers, and many others.
Its a great Denial of Service testing tool!
Just try it on your own Apache server, for example!
SlowDroid is particularly effective if executed from a mobile phone, since it uses a tiny amount of network bandwidth to generate a Denial of Service on the server to be tested.
Download Slowdroid Dos Tool apk from Google Play
KSWEB :Make Your Android Mobile as Web Server and Host a Full Website On It
Your Android Device is more powerful than you think.You can host a website on Android Mobile Smartphone and make him a web server.


You can use any Android device as a full fledged web server that�s accessible either on LAN or from anywhere on the Internet. With an Android web server, developers can easily test their code without paying for a hosting service. Freelancers can carry a copy of the web tools they�ve built with them to show their clients. Home and small office users can even set up custom web tools for users on the local network.
Read More
Download KSWEB apk From Google Play Store
download file now
Saturday, September 16, 2017
Free Download 1000 Hacking Tutorials 2009
Free Download 1000 Hacking Tutorials 2009
Hey friends in this we will provide you 100 hacking tutorials for free...!!!!
Just CLICK HERE
Just CLICK HERE
download file now
Thursday, September 7, 2017
Top 10 Best Hacking Tools For Learners
Top 10 Best Hacking Tools For Learners
Hacking always involves tools. A good hacker knows how to use tools to his best advantage. An even better hacker writes his own tools. Here I have listed the top 10 most popular tools used in hacking. It is advisable to master these tools to become a good hacker. Note that all the tools listed here are completely free.
1. Nmap
Nmap is also known as the swiss army knife of hacking. It is the best port scanner with a lot of functions
In hacking, Nmap is usually used in the footprinting phase to scan the ports of the remote computer to find out wich ports are open.
2. Wireshark
Wireshark is a packet sniffer. It captures all network traffic going through a network adapter. When performing man in the middle attacks using tools like Cain, we can use Wireshark to capture the traffic and analyze it for juicy info like usernames and passwords. It is used by network administrators to perform network troubleshooting.
3. Cain and Abel

Cain and Abel is a multipurpose windows only hacking tool. It is a bit old now, but it still does the job well. Cain can be used to crack windows password, perform man in the middle attacks, capture network passwords etc.
4. Metasploit

Metasploit is a huge database of exploits. There are thousands of exploit codes, payloads that can be used to attack web servers or any computer for that matter. This is the ultimate hacking tool that will allow you to actually "hack" a computer. You will be able to get root access to the remote computer and plant backdoors or do any other stuff. It is best to use metasploit under linux.
5. Burp Suite

Burpsuite is a web proxy tool that can be used to test web application security. It can brute force any login form in a browser. You can edit or modify GET and POST data before sending it to the server. It can also be used to automatically detect SQL injection vulnerabilities. It is a good tool to use both under Windows and Linux environments.
6. Aircrack-ng

Aircrack-ng is a set of tools that are used to crack wifi passwords. Using a combination of the tools in aircrack, you can easily crack WEP passwords. WPA passwords can be cracked using dictionary or brute force. Although aircrack-ng is available for Windows, it is best to use it under Linux environment. There are many issues if you use it under Windows environment.
8. Nessus

Nessus is a comprehensive automatic vulnerability scanner. You have to give it an IP address as input and it will scan that IP address to find out the vulnerabilities in that system. Once you know the vulnerabllities, you can use metasploit to exploit the vulnerablity. Nessus works both in Windows and Linux.
10. THC Hydra

Hydra is a fast password cracker tool. It cracks passwords of remote systems through the network. It can crack passwords of many protocols including ftp,http, smtp etc. You have the option to supply a dictionary file which contains possible passwords. It is best to use hydra under linux environment.
9. Netcat

Netcat is a great networking utility which reads and writes data across network connections, using the TCP/IP protocol. It is also known as the swiss army knife for TCP/IP. This is because netcat is extremely versatile and can perform almost anything related to TCP/IP. In a hacking scenario, it can be used as a backdoor to access hacked computers remotely. The use of netcat is limited only by the users imagination. Find out more about netcat at the official website.
10. Putty

Although putty is not a hacking software by itself, it is a very useful tool for a hacker. It is a client for SSH and telnet, which can be used to connect to remote computers. You may use putty when you want to connect to your Backtrack machine from your Windows PC. It can also be used to perform SSH tunneling to bypass firewalls.
Note: This list is not comprehensive. There are many tools that I have left out. Those tools that did not make the list are; Sqlmap, Havij, Acunetix Web Scanner, SuperScan, John the Ripper, Kismet, Hping3.
Have you always wanted to know how to become a hacker? Great! Read this article and learn how to become a hacker.
1. Nmap

In hacking, Nmap is usually used in the footprinting phase to scan the ports of the remote computer to find out wich ports are open.
2. Wireshark

3. Cain and Abel
Cain and Abel is a multipurpose windows only hacking tool. It is a bit old now, but it still does the job well. Cain can be used to crack windows password, perform man in the middle attacks, capture network passwords etc.
4. Metasploit

Metasploit is a huge database of exploits. There are thousands of exploit codes, payloads that can be used to attack web servers or any computer for that matter. This is the ultimate hacking tool that will allow you to actually "hack" a computer. You will be able to get root access to the remote computer and plant backdoors or do any other stuff. It is best to use metasploit under linux.
5. Burp Suite

Burpsuite is a web proxy tool that can be used to test web application security. It can brute force any login form in a browser. You can edit or modify GET and POST data before sending it to the server. It can also be used to automatically detect SQL injection vulnerabilities. It is a good tool to use both under Windows and Linux environments.
6. Aircrack-ng

Aircrack-ng is a set of tools that are used to crack wifi passwords. Using a combination of the tools in aircrack, you can easily crack WEP passwords. WPA passwords can be cracked using dictionary or brute force. Although aircrack-ng is available for Windows, it is best to use it under Linux environment. There are many issues if you use it under Windows environment.
8. Nessus

Nessus is a comprehensive automatic vulnerability scanner. You have to give it an IP address as input and it will scan that IP address to find out the vulnerabilities in that system. Once you know the vulnerabllities, you can use metasploit to exploit the vulnerablity. Nessus works both in Windows and Linux.
10. THC Hydra

Hydra is a fast password cracker tool. It cracks passwords of remote systems through the network. It can crack passwords of many protocols including ftp,http, smtp etc. You have the option to supply a dictionary file which contains possible passwords. It is best to use hydra under linux environment.
9. Netcat

Netcat is a great networking utility which reads and writes data across network connections, using the TCP/IP protocol. It is also known as the swiss army knife for TCP/IP. This is because netcat is extremely versatile and can perform almost anything related to TCP/IP. In a hacking scenario, it can be used as a backdoor to access hacked computers remotely. The use of netcat is limited only by the users imagination. Find out more about netcat at the official website.
10. Putty

Although putty is not a hacking software by itself, it is a very useful tool for a hacker. It is a client for SSH and telnet, which can be used to connect to remote computers. You may use putty when you want to connect to your Backtrack machine from your Windows PC. It can also be used to perform SSH tunneling to bypass firewalls.
Note: This list is not comprehensive. There are many tools that I have left out. Those tools that did not make the list are; Sqlmap, Havij, Acunetix Web Scanner, SuperScan, John the Ripper, Kismet, Hping3.
Have you always wanted to know how to become a hacker? Great! Read this article and learn how to become a hacker.
download file now
Tuesday, September 5, 2017
Hacking For Beginners Methods Of Hacking
Hacking For Beginners Methods Of Hacking
You can hack with number of methods, I have listed some of them
- Wi-Fi hacking
- RAT-infecting
- Key-logging
- SQLi
- E-whoring
- Brute-Forcing

SQL injection in short is called SQLi, and actually means hacking of the database of a website.
All you need to do it is just a Browser that�s it!It also not that hard at all. You play with the URL of the website so the result are the content of the database.
Wi-Fi is actually a wireless router.And you can hack it by using any brute-force program like Hydra but there are also special programs for it like Reaver.
E-whoring is another thing that i will not consider as hacking method but you should learn it.
Most of the time hackers act like they are girls or women in chat rooms,they got fake and hot videos,pictures and web-cam videos of girls too.Now, as men will be men,they pays a lot of money for more pictures and videos, or even sometimes send money to the hacker (fake girl).Remote Administration Tool (RAT) is a program that enables hackers to control the PC of there victim.
The hacker gets victims (or better known as slaves) by spreading a Trojan,Trojan can be defined as a Malware(malicious software) that is made by a hacker Hackers spread there Trojan by mostly presented it as a helpful handy program so that other downloads it..!! But instead that program became handy they gives the hackers access to your computer. By this i mean that they have access to all your important files, keyboard, cam, mouse, edit your folders! To complete there objective hackers must make an undetectable Trojan so that antiviruses can�t detect it, hackers do that by crypting it.At present Darkcomet is a good free RAT and easy to use.
A key-logger is much easier than rat, all it does is it will records victims keys pressed from keyboard and obviously can be used to find the password of your victim. An example of a key-logger is REFOG.
A brute-force program,forces a password to be right brute.
To work with a brute-force program first of all you need some things: A Brute force program of course, a password list, a username list (optional).Hydra is an example of a brute-force program .
A password list is just a list of passwords�
The program will match and try every combination of word in that list until he has find the good one.
download file now
Free Download 1000 Hacking Tutorials
Free Download 1000 Hacking Tutorials
Hey friends today we bring to you 1000 hacking tutorials of 2008......!!!!
Enjoy!!

CLICK HERE To Download for free ?
Enjoy!!

CLICK HERE To Download for free ?
download file now
Monday, September 4, 2017
Hacking Windows 7 Password BY Ophcrack
Hacking Windows 7 Password BY Ophcrack

What Is Ophcrack ?
Opcrack is an open source windows password cracker based on rainbow tables. It comes with Graphical user interface(GUI) and runs on multiple platform such windows, linux and mac. It allows you to recover or crack windows password.How To Crack Windows 7 Password Using Ophcrack ?
Before you start doing this you will need a blank CD or DVD to burn the live image of ophcrack.1. Download Opcrack Live Cd by Clicking Here.
2. Download windows xp or windows 7 live cd depending on platform you are wishing to hack. For example:
- Windows 7 or Windows Vista: Click on ophcrack Vista/7 LiveCD.
- Windows XP: Click on ophcrack XP LiveCD.
3. Insert the disc into drive and restart you computer.
4. If everything goes right you will see screen like below.

5. After you see screen like above wait for ophcrack to boot automatically or you may press Enter to advance.
6. Now you will see several lines of code printed on screen or they might disappear very quickly (you dont need to worry about that).
7. Then you will see screen like below it is ophcrack password recovering software. At the Ophcrack screen it shows the Administrator and Guest account. Notice the word �empty�. This means that if the account is enabled you could log in without a password.

9. Copy this hash value which is under NT Hash field.
10. Navigate to http://crackstation.net/ which is an online hash cracking tool.
11. Type in the hash value you copied down in Step 9, Enter the captche and click on Crack Hashes
download file now
Tuesday, March 17, 2015
website hacking tutorial DNN
Hello frndzzzz, One more hacking method called "Portal Hacking (DNN)". This is a much easy trick for website hack :)
This method also uses google search to find hackable sites.. Now you can imagine that how much google.com is important for Hackers also...
Lets start the tutorials...
Step 1 :
http://www.google.com
Step 2:Now enter this dork
:inurl:/tabid/36/language/en-US/Default.aspx

this is a dork to find the Portal Vulnerable sites, use it wisely.
Step 3:
you will find many sites, Select the site which you are comfortable with.
Step 4:
For example take this site.
Example:
Step 3:
you will find many sites, Select the site which you are comfortable with.
Step 4:
For example take this site.
Example:
http://www.abc.com/Home/tabid/36/Lan...S/Default.aspx
Step 5: Now replace
/Home/tabid/36/Language/en-US/Default.aspx
with this
/Providers/HtmlEditorProviders/Fck/fcklinkgallery.aspx
Step 6:You will get a Link Gallary page.So far so good!
Step 7: Dont do anything for now,wait for the next step...
Step 8:Now replace the URL in the address bar with a Simple Script
javascript:__doPostBack(ctlURL$cmdUpload,)
Step 9:You will Find the Upload Option

Step 10:
Select Root
Step 11:
Upload your package Your Shell c99,c100 etc etc
Step 10:
Select Root
Step 11:
Upload your package Your Shell c99,c100 etc etc
Subscribe to:
Posts (Atom)













