Skip to content

Latest commit

 

History

History
13 lines (11 loc) · 679 Bytes

README.md

File metadata and controls

13 lines (11 loc) · 679 Bytes

THM-Room

THM-ROOM.PY is a python script created for educational purpose to fetch all the completed Tryhackme rooms details of a CTF player

It can be used to automate two things:

  1. Generate list of tryhackme rooms
  2. Automate “Join Room” for a List of Rooms

Usage python3 thm-room.py help

It can also be used with commands such as grep|sed to extract only Room URLs/Codes

Example:

python3 thm-room.py [username/url] ; cat roomInfo.txt | sort | uniq | grep -i "url"

python3 thm-room.py [username/url] ; cat roomInfo.txt | sort | uniq | grep -i "code:"

The above first command will only show Room's URL and the second one will show Room's code