Posted on Friday, 21st December 2018 by Michael

Part of my Path to OSCP series. I will be documenting my lab time to help others progress through the labs. Giving tips and encouragement along the way. Today I completed day 2 in the lab and part way through day 3. Please note in this video I make some hard truths and things to think about before you jump into this. This is not to dissuade you or to be harsh to people. It is a reality we all need to think about and find ways to overcome as we all learn differently.

Store:
http:// http://digitaloffensive.com/store -- don't see what you want, use any of the ads to search and purchase.

Suggested Material:
Hacker Playbook 3: Practical guide to penetration testing: https://amzn.to/2GzSzy6
Hak5 Wifi Pineapple Nano & Guide: https://amzn.to/2BBMwTQ

Scripts:

MSF:
------
#!/bin/bash

stat=`service postgresql status | grep Active | awk -F"(" {'print $2'} | awk -F")" {'print $1'}`

sleep 30
if [ "$stat" = "exited" ]
	then
		echo "Postgresql is running ...."
		echo "Starting Metasploit....."
		msfconsole -q
elif [ "$stat" = "dead" ]
	then 
	echo "Starting Postgresql...."	
	service postgresql start
	echo "Starting Metasploit....."
        msfconsole -q
fi

Burp:
-----
#!/bin/bash
java -Djsse.enableSNIExtension=false -jar /usr/bin/burpsuite

Win 7:
-------
#!/bin/bash
rdesktop -u offsec -p password IP_ADDRESS

Suggested Material:
Hacker Playbook 3: Practical guide to penetration testing: https://amzn.to/2GzSzy6
Hak5 Wifi Pineapple Nano & Guide: https://amzn.to/2BBMwTQ

Social Media Contact:
Twitter: https://twitter.com/genxweb
LinkedIn: https://www.linkedin.com/in/michael-l…
YouTube: https://www.youtube.com/user/genxweb

Posted in Uncategorized | Comments (0)

Leave a Reply

*