Posts

Showing posts from July, 2023

scanning web

 open port scan shell sudo nmap -sS -p- -T4 192.168.1.108 scan result text PORT   STATE    SERVICE 21/tcp filtered ftp 22/tcp open     ssh 53/tcp filtered domain 80/tcp open     http MAC Address: 90:78:41:AD:C7:5D (Intel Corporate) Scan for details shell nmap -sV --script=vuln -p22,80 -T4 192.168.1.108 scan result text PORT   STATE SERVICE VERSION 22/tcp open  ssh     OpenSSH 7.9p1 Debian 10+deb10u2 (protocol 2.0) | vulners: |   cpe:/a:openbsd:openssh:7.9p1: |      EXPLOITPACK:98FE96309F9524B8C84C508837551A19 5.8 https://vulners.com/exploitpack/EXPLOITPACK:98FE96309F9524B8C84C508837551A19 *EXPLOIT* |      EXPLOITPACK:5330EA02EBDE345BFC9D6DDDD97F9E97 5.8 https://vulners.com/exploitpack/EXPLOITPACK:5330EA02EBDE345BFC9D6DDDD97F9E97 *EXPLOIT* |      EDB-ID:46516 5.8 https://vulners.com/exploitdb/EDB-ID:46516 *EXPLOIT* |  ...

Google Dork Hacking

Image
  Let's look at the most popular Google Dorks and what they do. cache : this dork will show you the cached version of any website, e.g.  cache:securitytrails.com allintext : searches for specific text contained on any web page, e.g.  allintext: hacking tools allintitle : exactly the same as allintext, but will show pages that contain titles with X characters, e.g.  allintitle:"Security Companies" allinurl : it can be used to fetch results whose URL contains all the specified characters, e.g:  allinurl:clientarea filetype : used to search for any kind of file extensions, for example, if you want to search for pdf files you can use:  email security filetype: pdf inurl : this is exactly the same as  allinurl , but it is only useful for one single keyword, e.g.  inurl:admin intitle : used to search for various keywords inside the title, for example,  intitle:security tools  will search for titles beginning with "security" but "tools" can be ...