Kayıtlar

nmap etiketine sahip yayınlar gösteriliyor

Etik Hacking Giris Sayfası: Sızma Testine Yeni Başlayanlar İçin Kılavuz

Resim
 Etik korsanlık alanı, güvenlik uzmanlarının kötü niyetli bir bilgisayar korsanı gibi düşünerek sistemleri korumasını sağlayan heyecan verici bir alandır. Bu etik hacking hile sayfası, başlangıç ​​seviyesindekiler için penetrasyon testinin merak uyandıran dünyasına yönelik bir rehber görevi görür .   1. Keşif Herhangi bir gerçek bilgisayar korsanlığından önce, etik bilgisayar korsanları keşifle başlar - hedef sistem hakkında bilgi toplar. Bu, hedefin IP adreslerini, etki alanı ayrıntılarını ve hatta çalışan bilgilerini anlamayı içerebilir. Bunun için yaygın olarak kullanılan bir araç Nmap ' tir . Sistemleri, hizmetleri ve bunların yapılandırmalarını tanımlamaya yardımcı olan çok yönlü bir araçtır.  2. Tarama Keşif sonrası, bir sonraki aşama taramadır. Burada, istismar edilebilecek güvenlik açıkları için hedef sistemi araştırıyoruz. OpenVAS , bu amaç için oldukça yetenekli bir araçtır. Bir sistemdeki güvenlik açıklarını tespit edebilir, izleyebilir ve hafifletme sürecin...

Gain Access to the System-Testing 1/2{Ethical Hacking}

Resim
I really enjoyed hanging out in this lab. I worked on Kali Linux and windows using many different tools. I intrusioned my host and virtual machine in different ways, using fatrat and Metasploit. Most examples shown in the lab will not pass anti-virus programs and firewalls in real life. So I created exploits embedded in extensions like pdf, jpeg, and Docx. I created more hidden and powerful exploits. I have more than 100 screenshots in total. Of course, I will only share lab tasks and prevent the file from turning into an hackencyclopedia. : ) I hacked even into my own android phone. :)  Responder : I first encountered the responder tool while reading the hacker playbook. It's a simple to use tool that gives good results. Even if I easily reached my NTLM hash, I could not crack the password because my password was ultra-difficult. L0phtCrack : I saw the name of this tool for the first time in a book. It was featured in the stories in the book "The art of intrusion...

How To Scan a Target Network Using Metasploit

Resim
  Our topic is “ how to scan a target network using Metasploit.”  First, let’s explain what Metasploit is. Metasploit  is an open-source exploit framework. Metasploit; It can run in Linux, Windows Mac-OS environments. With Metasploit, not only direct attacks are made. You can make various backdoor files and attack the target system with them. Abuse codes written for vulnerabilities can be found on the site https://www.exploit-db.com/. Metasploit is a framework that includes scanning modules, antivirus circumvention models, and currently exploits. Metasploit comes preinstalled on Kali Linux, Backtrack Linux, or Parrot Linux. There are also auxiliary tools required for reverse engineering in Metasploit. Metasploit 3.0 and later versions are developed in the "Ruby" language. Apart from Metasploit, exploit codes can also be downloaded from sites such as https://packetstormsecurity.com/, milworm, and https://www.securityfocus.com/. However, the codes to be...

#basic1#Kısa Yollu Nmap Taraması #!/bin/bash

Resim
Genel olarak taradığımız ağlar için sürekli olarak parametre ve ip adresi girmemek için bir bash script yazacağız. Öncelikle Desktop'a touch komutuyla sh uzantılı dosyamızı oluşturuyoruz. Ardından nano da açıp yazmaya başlıyoruz. #!Bin/Bash Echo "bizim ağ için nmap taraması başlasın mı ? read baslat while read -r   do  nmap -oG output.txt -T4 -f -ipadress- done İster görseldeki gibi ister yazı şeklindeki gibi parametre ekleyin. (Echo read kısmı gırgır)  kaydettiğimiz projeyi ./dosyaadı.sh enter yaparak çalıştırıyoruz. işlem sonunda belirttiğimiz gibi tarama verileri oluşturulan .txt dosyasına kaydedildi. Bu kadar :)