Geek Memos
  • Home
Sign in Subscribe

oscp

A collection of 3 posts
dns

Automate DNS Zone Transfer

/bin/bash #Simple zone transfer bash script with $1 being first argument given #Tested against zonetransfer.me #for example ./zonetransfer.sh zonetransfer.me if [ -z "$1" ];then echo "[] Simple Zone Transfer script" echo "[] Usage : $0 " exit 0 fi #if argument was given, identify DNS servers for domain. #For each of
Mar 6, 2015
bash

SNMPWALK against multiple IP address

For a recent test, I needed to perform multiple snmpwalk scans against a set of IP addresses. Instead of running each scan separately, I was able to write a bash script. Enjoy: for ip in $(cat snmpWindowsIPs.txt); do echo "----------------------------------------------------"; echo " [+] Testing " $ip; echo "----------------------------------------------------"; echo " " echo "----------------------------------------------------"; echo
Oct 18, 2014 1 min read
certification

My journey towards OSCP

I’ve started studying for Offensive Security Certified Profession [http://www.offensive-security.com/information-security-certifications/oscp-offensive-security-certified-professional/] (OSCP) certification also called Penetration Testing with Kali (PWK). This certification claims to give you good grip on penetration testing which includes network and application side of things. When you sign up for 30, 60,
Oct 18, 2014 1 min read
Page 1 of 1
Geek Memos © 2023
Powered by Ghost