#room-bugs

1 messages · Page 12 of 1

spare mirage
#

No it's not a bug . It's common for app logic to blacklist certain input and not to blacklist other 🙂

#

That's a misconfiguration that's done on purpose in this room 🙂

round cove
#

Did this ever get resolved?

cobalt lily
#

I am doing password attack in protocols and server 2 and I typed I think the correct syntax to retrieve the password, but it stay blocked on status and i can’t get the pass

round cove
#

@cobalt lily, do you see packets leaving your attack box? Ex. run tcpdump in a different terminal looking at port 143.

cobalt lily
#

Like in what way? What do I type?

round cove
#

Ex. tcpdump -nnpi tun0 port 143

cobalt lily
#

Why I have to do it?

round cove
#

Oh you are using the Kali VM.

cobalt lily
#

Kali

round cove
#

You don't need tun0 just eth0 or whatever the interface label is.

cobalt lily
#

But why? On the tube i saw they use hydra

round cove
cobalt lily
#

Oh

round cove
#

If it was working you should see a lot of packets going to the target.

cobalt lily
#

But why the packet are not leaving? I typed the string you told me but the system doesn’t recognize tun0

#

Ok I can install it maybe

round cove
#

Read up. Since you are using the Kali VM from within the browser you would use eth0 instead of tun0.

cobalt lily
#

The system doesn’t recognize even the eth0

round cove
#

ip addr list will give you the interface labels.

cobalt lily
#

Maybe there is another way to see if packages are Lea ing

#

Leaving

round cove
#

Which room is this?

cobalt lily
#

Protocols and servers 2

round cove
#

Got it. Let me take a look.

#

@cobalt lily tcpdump -nnpi ens5 port 143

#

It's just a way to troubleshoot. Look at packet leaving the box.

#

Run that in a different tab while you are running hydra.

cobalt lily
#

My attackbox doesn’t let me run two box in the same time but I try

round cove
#

Create a second tabl in the terminal

cobalt lily
#

Wait maybe I didn’t type the pass 🤣

#

I solved

#

Thanks

round cove
#

lol. okay

#

The username in screen capture is not the right one too.

round cove
quaint sparrow
round cove
#

@quaint sparrow, so there's no workaround? I don't know if I can survive leaving the room in this state with one unanswered question. 🙂

round cove
#

Thank you.

smoky berry
#

the oder of the kill chain seems to be pretty messed up in the "Incident handling with Splunk" room

exotic flame
#

hello
[8:13 PM]
I keep getting unable to connect error in Attackbox when trying to access IP address through firefox
[8:13 PM]
Splunk 2 Room

fresh kernel
#

any solution of getting timeout after using ssh?
i can use ping fine but ssh just doesnt work

spare mirage
fresh kernel
#

AttackBox

spare mirage
fresh kernel
#

ssh: connect to host 10.10.218.239 port 22: Connection timed out

spare mirage
#

This is Windows machine

fresh kernel
#

Username: ballen

Password: Password1
what im i supposedto do with these?

spare mirage
fresh kernel
#

🤦‍♂️

spare mirage
fresh kernel
#

thx for the help

woeful zodiac
#

On the search skills section it says to use shodan to see what country uses lighttp the most but it only shows 404 not found in Brazil on shodan

final nebula
#

Metasploit: Meterpreter room task 5.
The hint: In the Meterpreter prompt: You will need to migrate to the "lsass.exe" process first (ps will list its PID), then run "hashdump".
When trying to migrate the session dies. I followed youtube to get the correct first answer first but only my sessions dies. This should not happen?

meterpreter > migrate 736
[*] Migrating from 2912 to 736...

[*] 10.10.195.105 - Meterpreter session 1 closed. Reason: Died

radiant slate
#

Task 2 Blue
msfconsole -q
exploit/windows/smb/ms17_010_eternalblue
set rhosts <ip_target>
set payload windows/x64/shell/reverse_tcp
run
now i have 150 session opened and it doesn't stop

tight barn
#

OWASP Juice box questions unreadable on dark mode

serene vector
#

Hello, I just wanted to report a possible human error in the description for the SOP in SOAR room part of SOC analyst lvl 2 path.

It does estate the same-origin policy SOP description
instead of the Standard Operating Procedures also abbreviated as SOP or SOPs

This would be spotted in task 3.

light vine
#

in https://tryhackme.com/r/room/gobusterthebasics I am running into an issue. Task5 Question #2 wants you to enumerate www.offensivetools.thm but will not enumerate. When I plug in the ip address instead of the website I still find the secret directory, but as far as I can tell offensivetools.thm isn't accessible in VM or even outside of it, or anywhere.

spare mirage
light vine
spare mirage
light vine
livid escarpBOT
#

Gave +1 Rep to @spare mirage (current: #2 - 2414)

earnest jetty
wheat fractal
#

Working through the MISP room in dark mode and in Task 4, there's a graphic in the Taxonomies section that is barely legible in dark mode

tender cove
uncut sandal
#

Is this command causing any bugs as it starts the nmapping but doesn't progress:
nmap -A -sS 10.10.41.135

quaint sparrow
#

You're going an aggressive scan stealthily, you'll be there for a while.

sweet cloak
uncut sandal
quaint sparrow
uncut sandal
uncut sandal
quaint sparrow
#

Yeah, will still be slow though.

sweet cloak
uncut sandal
livid escarpBOT
#

Gave +1 Rep to @quaint sparrow (current: #1 - 3301)

glad badger
livid escarpBOT
#

Gave +1 Rep to @sweet cloak (current: #2621 - 1)

spare mirage
uncut sandal
spare mirage
uncut sandal
wild anchor
#

"Command Injection" room has several errors in Task #4

In the example, it says

This means that any commands such as whoami will not be processed.

This is not correct. (HTML-side filters won't prevent command injection). Similarly, the next paaragraph says

  1. The application will then only proceed to execute this data which is all numerical.

Awkward English phrasing aside, there is no such check on the server side.

#

In the same room, "Command Injection", same Task #4, the PHP code in the image has syntax errors and woudln't run anyway! This is hard to see because of the red boxes, but is especially noticeable from the code coloring. (The closing ?> tag is the "string" color)

Line #3 of the code snippet SHOULD read

echo passthru("/bin/ping -c 4 " . $_GET["ping"]);

(Notice the . is in the wrong place, and there is an incorrect " before close of the function call.)

#

Same room ("Command Injection"), same Task #4, not a bug but enhancement suggestion: in the second code snippet, add a comment, e.g.,

if (!filter_input(INPUT_GET, "number", FILTER_VALIDATE_NUMBER)) {
    // Only run this code if $_GET["number"] is a valid Number // <-- Add comment
}

Though not wrong this is a bad code snippet anyway, because 0 is a valid number and is falsey. Better would be

if (false === filter_input(INPUT_GET, "number", FILTER_VALIDATE_NUMBER)) {
    // Invalid input; handle error and return
}
heavy jacinth
#

Hey! I think there's a room bug in the Nmap Basic Port Scans room, Task 5

I'm tring to do a syn scan to find the services but I can't seem to get the output that's needed to get the answer to the room, I tried scanning for all ports to see if that would fix the issue but it didn't

I looked up online and found a write up and noticed that the author of that write up only did a nmap -sS scan to the the target with no additional flags and was able to get the port and the service to show up

quaint sparrow
heavy jacinth
wild anchor
heavy jacinth
#

This attached screenshot is with the flags that the question tells me to use

wild anchor
heavy jacinth
#

I had to terminate the machine and then start it again and then it worked NotLikeThis

#

don't really know what went wrong on the backend for that to happen

wild anchor
#

In Room "File Inclusion", Task #5, it appears as if all instances of /etc/passwd/. should be replaced with /etc/./passwd (changed position of dot). Does not work as currently written.

#

The room "File Inclusion" also has "black text" when in Dark Mode. This occurs in several tasks, including at least Task #4 and Task #5.

sharp ridge
#

gys i need help

empty kernel
sharp ridge
#

Bro

#

I got it

sharp ridge
empty kernel
#

ok

sharp ridge
#

Wait are u like good at thm

sick kestrel
honest turret
#

Thank you! I was losing my mind thinking I was not reading the instructions properly. But it is in fact an error in the instructions.

livid escarpBOT
#

Gave +1 Rep to @sick kestrel (current: #174 - 45)

wheat fractal
#

https://tryhackme.com/r/room/blue

Whenever you use metasploit, sometimes the entire terminal will stop responding, if i use a command, such as just a simple search command > search eternal, the terminal will freeze and you're stuck in a loop where whatever you type, it doesn't register and you can only click enter to go down new lines which also doesn't do anything.

TryHackMe

Deploy & hack into a Windows machine, leveraging common misconfigurations issues.

spare mirage
#

Be patient

#

Also specify -f if you want to search for file

wheat fractal
#

it still stays like that

wheat fractal
spare mirage
wheat fractal
#

pretty sure that's what this role is for, idk

spare mirage
spare mirage
wheat fractal
livid escarpBOT
#

Gave +1 Rep to @spare mirage (current: #2 - 2467)

spare mirage
wheat fractal
#

I am doing linux fundamentals part 3 and just tried running this command: python3 -m http.server

and I got the below error after hitting enter:

Traceback (most recent call last):
File "/usr/lib/python3.8/runpy.py", line 194, in _run_module_as_main
return _run_code(code, main_globals, None,
File "/usr/lib/python3.8/runpy.py", line 87, in _run_code
exec(code, run_globals)
File "/usr/lib/python3.8/http/server.py", line 1294, in <module>
test(
File "/usr/lib/python3.8/http/server.py", line 1249, in test
with ServerClass(addr, HandlerClass) as httpd:
File "/usr/lib/python3.8/socketserver.py", line 452, in init
self.server_bind()
File "/usr/lib/python3.8/http/server.py", line 1292, in server_bind
return super().server_bind()
File "/usr/lib/python3.8/http/server.py", line 138, in server_bind
socketserver.TCPServer.server_bind(self)
File "/usr/lib/python3.8/socketserver.py", line 466, in server_bind
self.socket.bind(self.server_address)
OSError: [Errno 98] Address already in use

.
Is there anything that I am doing wrong or is it just a bug or something? I restarted the whole thing but still didn't work.
Thanks in advance!

spare mirage
#

python3 -m http.server 9000

#

default port is probably used by another service

wheat fractal
#

Thanks KGB, i tried port 8080 and it workded

odd falcon
#

In Linux Fundamentals 2 room, this portion doesn't make any sense.

#

The highlighted portion refers to older content.

spare mirage
# odd falcon

Screenshots in rooms are usually just for example purposes 🙂

odd falcon
#

Although it is available in walkthorugh video.

spare mirage
spare mirage
odd falcon
proper hinge
#

I was completing the passive reconnaissance room, and it asked me this: "According to Shodan.io, what is the 2nd country in the world in terms of the number of publicly accessible Apache servers?"....I went to shodan.io, and it said china was second, so I put that in. it wouldn't take it, so I went back to shodan. I saw that Germany was close in 3rd, so I put that in instead, and it worked. (im gonna guess china passed germany since the room was made)

wild anchor
wild anchor
# sick kestrel I believe the `.` at the end is just a period ending a sentence. Placing the do...

See specificly this paragraph (notice where the code ticks are):

To make it clearer, if we try this concept in the file system using cd .., it will get you back one step; however, if you do cd ., It stays in the current directory. Similarly, if we try /etc/passwd/.., it results to be /etc/ and that's because we moved one to the root. Now if we try /etc/passwd/., the result will be /etc/passwd since dot refers to the current directory.

(Also worth noting that /etc/passwd/.. doesn't work as the text claims because passwd isn't a directory.)

strong kelp
wild anchor
#

In room "Burp Suite Basics" there is a very minor dark text issue in Task #14

Submit the form — the request should be intercepted by the proxy.

Somehow the em-dash gets it's own explicit black styling.

Submit the form&nbsp;<span style="color:rgb(32, 33, 36);font-family:arial, sans-serif;font-size:14px"></span>&nbsp;the request should be intercepted by the <span data-testid="glossary-term" class="glossary-term">proxy</span>.
sick kestrel
wild anchor
# sick kestrel I was referring to the first question/answer in that task... what you suggest do...

You're referring this this paragraph (which is also incorrect)?

  1. In this section, the developer decided to filter keywords to avoid disclosing sensitive information! The /etc/passwd file is being filtered. There are two possible methods to bypass the filter. First, by using the NullByte %00 or the current directory trick at the end of the filtered keyword /.. The exploit will be similar to http://webapp.thm/index.php?lang=/etc/passwd/. We could also use http://webapp.thm/index.php?lang=/etc/passwd%00.
#

Again, please note the positioning of the code ticks. I don't think your interpretation is correct. ... but perhaps it's because both paragraphs incorrectly treat passwd as a directory.

sick kestrel
#

Give Lab #3 a try to read /etc/passwd. What is the request look like? is just a .

wild anchor
craggy laurel
#

Hi everyone. I was doing https://tryhackme.com/r/room/introtok8s Task #8. It seems like when I run kubectl apply -f nginx-deployment.yaml the container is stuck at ContainerCreating status. kubectl describe pod returns following error " Warning FailedMount 119s (x14 over 14m) kubelet MountVolume.SetUp failed for volume "webapp-volume" : configmap "webapp-config" not found ". If someone has faced this issue before, please help

TryHackMe

TryHackMe is a free online platform for learning cyber security, using hands-on exercises and labs, all through your browser!

civic loom
#

I'm not at all sure if this is a bug or not, but I'm doing https://tryhackme.com/r/room/netsecchallenge on the very last task, and I got it down to 6% chance of discovery and nothing's happening. I'm not sure if I need to get it even lower (if so I have no clue what else I can possibly due, as fragmenting the response returns no open ports no matter what seemingly, and I am using everything else that I have access to I think) or if it's just not giving me the flag. I'm just kind of confused.
EDIT: I got it to work with some help. I added too many flags and for some reason it wasn't working because of that. A simple nmap -sN <ip> was all that was required. This was a bit confusing to me personally, but it did work.

sour jolt
#

i think there is problem in sql in this ctf :Lunizz CTF

#

have a look

naive osprey
#

could be a nothing burger

#

okay, while i have the start machine in browser on right side for the practice, my browswer extension block the use of the lab material. i view page source and i see my details of when i signed up to THM, IP address, etc

#

(i already did this room, just going over material)

#

using https://10-10-x-x.p.thmlabs.com works. when iwent back to the way i had it before it still shows details when view page source.

wild anchor
# sick kestrel

Right. Looks like I was trying this on the Lab3 page not the Lab4 page.

On further investigation the trailing /. does work with include() and file_get_contents() in PHP 5.2.17. However, much like the null byte trick, the trailing /. does NOT work with PHP 7.4.3 (the version on the AttackBox) for include() or file_get_contents(). (See attached images; one with reverse shell + PHP interactive into the Lab's target, the other with PHP interative on AttackBox.). For the particular filter in Lab4, the suggestion of doing /. infix (in the middle of the path) will work in all versions.

earnest jetty
odd arrow
#

Hello,

I'm working on a Kubernetes challenge and I've encountered an issue with the question about the replica set name. From the kubectl commands I ran on the cluster, I can see:

  1. When I run kubectl get rs, the replica set name shown is:
    hello-tryhackme-875767b84

  2. When I run kubectl get pods, the pod name shown is:
    hello-tryhackme-875767b84-sfk2c

I entered the replica set name as shown in the kubectl get rs output (hello-tryhackme-875767b84), but the system is marking this as incorrect. Could you please verify if there's an issue with the answer validation or clarify what exactly is being asked for in this question?

Thank you for your help.

lilac solstice
#

i encountered the same problem.. did this get resolved?

rotund raptor
#

Using the most up to date kali VM to redo AoC D10, and reverse TCP fails to bind, had to use the AttackBox in order to be able for it to work.

lyric lynx
#

I'm still stuck on this SNORT The Basics set of challenges. I have the packets without issue and they match those on the write up i'm using https://medium.com/@jcm3/snort-challenge-the-basics-tryhackme-walkthrough-0fd146bed94f ```WARNING: No preprocessors configured for policy 0.
05/13-10:17:10.205385 65.208.228.223:80 -> 145.254.160.237:3372
TCP TTL:47 TOS:0x0 ID:49316 IpLen:20 DgmLen:1420 DF
A* Seq: 0x114C7C80 Ack: 0x38AFFFF3 Win: 0x1920 TcpLen: 20

#

I've edited the correct local rules file and my snort command should be alright snort -v -n 63 -c local.rules -A full -l . -r mx-3.pcap I have the rule alert tcp any 80 <> any 80 (msg: "this should work as a message"; sid: 101; rev:1) Does anyone see anything wrong? Is there anything I'm missing?

mystic bronze
lethal hornet
#

On the offensive security intro room, they want you to use gobuster to scan textfiles on a fake website but it is not working in accordance to the lesson. It's supposed to output a set amount of statuses but on my box, it just says "unable to connect".

Lesson: https://tryhackme.com/r/room/offensivesecurityintro

sick kestrel
lethal hornet
#

@sick kestrel The module gives you the exact command to enter into the terminal for the desired result I mentioned:

gobuster -u http://fakebank.thm -w wordlist.txt dir

This is supposed to give the exact output I mentioned previously where it displays "/images (Status:301 and /bank-transfers (Status: 200)" however, the TryHackMe webhosted VM's connection request to the URL in the command above is being refused.

I appreciate you taking the time to reach out!

unborn pulsar
quaint sparrow
median patio
#

Hi, I have a room bug

#

ok third time is a charm lol.

#

The docker pull command is incorrect in the DAST room - Task 7
It says to run docker pull owasp/zap2docker-stable but it should be docker pull zaproxy/zap-stable

#

and some of the other commands are wrong also

tidal zephyr
#

I just got the idea from #general chat that this channel might be more appropriate for this issue (I posted this in #site-bugs earlier today):

There are outdated links in the Velociraptor room.
https://tryhackme.com/r/room/velociraptorhp

In Task 5, it provides this link (in both the task body and the first two hints), which takes you to a 404 page:
https://docs.velociraptor.app/docs/gui/vfs/

The updated link appears to be this:
https://docs.velociraptor.app/docs/clients/vfs/

It looks like there's an outdated link in Task 6 as well.
The final question hint of the task provides:
https://docs.velociraptor.app/docs/extending_vql/

But the correct link is:
https://docs.velociraptor.app/docs/vql/extending_vql/

wheat fractal
#

Wireshark: The Basics room (Task 2) has black text on Dark Mode

#

More below:
Highlighted text:

#

Non-highlighted:

raw bison
livid escarpBOT
#

Gave +1 Rep to @thorny sequoia (current: #2629 - 1)

stone crow
obsidian kiln
stone crow
austere gorge
#

'MBR and GPT Analysis' room is unreachable, tried on 3 differents browsers restarted the machines 6 times. When i finally connect it's unstable as hell. Am i alone ?

wraith obsidian
#

@austere gorge I just tested there and its working ok for me. Are you able to browser or search for the room and find it? Other rooms all working fine?

austere gorge
#

Just this one restarted itself a couple of time

wraith obsidian
#

Interesting, good its back working. Strange, website logic wise there isn't anything specific to certain rooms (unless there is some A/B product experiment ongoing). Thanks for reporting, I'll keep an eye on it.

austere gorge
#

Maybe, my connexion was unstable, in that case, my bad.

umbral girder
#

In room /Zeekbro, there is a minor dark text issue (when in dark mode) on Task 6 Zeek Scripts | Fundamentals.

ashen swift
#

Hello Guys hope you're fine,
I got an eror when lauching the room nmap :https://tryhackme.com/r/room/nmap When i tried to start the machine for practice nothing happen, like the screen of the VM don't display, someone can check this out ?

quaint sparrow
ashen swift
quaint sparrow
#

You don't need to connect to SSH for that machine.

#

All tasks can be answered with nmap.

ashen swift
#

i know but i can't acces it

quaint sparrow
#

Are you using the attackbox?

ashen swift
#

nope, it is preferable for this task to use the attackbox ?

tiny pilot
#

@quaint sparrow I’m in the Security Principles room on Task 6. There are 3 questions. I’ve tried all 10 answers but none of them work. Any suggestions?

ashen swift
sullen epoch
naive osprey
#

this room https://tryhackme.com/r/room/lle has a link [thefindcommand] which is a private room.
plus there are few typos

spare mirage
sullen epoch
#

I got it. 🤦🏻‍♀️🤦🏻‍♀️🤦🏻‍♀️

mossy socket
#

noy a bug but a typo... ROOM: Networking Core Priotocols task 2: states. "DNS traffic uses UDP port 53 by default and TCP port 53 as a default fallback." which im sure it ment to mention a different port number to fall back. im happy to help 🙂

tardy silo
#

Not really a bug but some texts are invisble in dark mode due to font color
This is from Snort room

TryHackMe

Learn how to use Snort to detect real-time threats, analyse recorded traffic files and identify anomalies.

raw bison
hardy ice
#

In task 3, "what is the framework flag?" I have the answer for it but it is not accepting the answer. Error shows that answer is too short but it is the correct answer

hardy ice
spare mirage
hardy ice
#

Oh sorry then

neon palm
#

only works if i ctrl+A

#

and its highlighted

wheat fractal
stone crow
little field
wheat fractal
#

Is this the correct channel to highlight these? I'm just calling them out as I progress through all the learning paths. Apologies if it's not and I'm spamming the wrong channel.

spice pollen
#

im trying to upload a VM as a material but i keep getting stuck here can somone help pls?

#

cant upload a picture for some reason but it says 'NaN% Converting...'

raw grotto
#

A few hours ago Wreath network was down and I was unable to start it, now it shows as Running but no timer and no vpn server file available

fallen trail
#

guys, i'm trying to complete active Reconnaissance room and there's a task where i need to nc to a vm via 21 port, but the vm is refusing connection

#

i'm stuck

#

it lagged

#

everything's okay now

spare mirage
ashen swift
#

Hello Guys, everything fine ?
I got a little problem when trying to answer to nmap room : https://tryhackme.com/r/room/nmap i don't get the "machine IP" that i need to scan on Task 3, someone can help pls ?

spare mirage
ashen swift
livid escarpBOT
#

Gave +1 Rep to @spare mirage (current: #2 - 2602)

vestal surge
#

yea you gotta start machine twice in some rooms for some reason

ashen swift
livid escarpBOT
#

Gave +1 Rep to @vestal surge (current: #2633 - 1)

naive osprey
#

for the DOM based attacks room, the AttackBox has warning about Unable to mount 77MB volume. No. Filesystem or .Encrypted interface on D-Bus object

upbeat fulcrum
#

Finding issues with my first TryHackMe course... seeing exercises are poorly constructed and VM instance does not work. For example in the first course SOC1 - Threat Intelligence Tools - Task 7, the VM instance does not have internet connectivity to access VirusTotal to upload malicious attachment. There isn't a method to download the malicious emails used to local machine.

#

Is anyone else running in to similar issue?

spare mirage
upbeat fulcrum
#

Our company paid for a subscription. How does one go about completing the room if the tools are not available to complete the material?

spare mirage
#

Or if you're premium user you can use AttackBox

upbeat fulcrum
#

I did load the Attack Box, but unable to download the email samples to transfer the malicious attachment

spare mirage
upbeat fulcrum
#

Is there a method to download the sample malicious emails? I would then be able to analyze on my on local workstation

spare mirage
#

Then search that hash on VT 🙂

upbeat fulcrum
#

Are all the excerises on TryHackMe half baked?

#

s

spare mirage
hazy tiger
upbeat fulcrum
livid escarpBOT
#

Gave +1 Rep to @hazy tiger (current: #6 - 1461)

scarlet marlin
#

owaspjuice shop/ dark bug

wild anchor
wild anchor
#

In room "25 Days of Cyber Security", Task 8 (Day 6) [from 2020]

Question "Run a ZAP (zaproxy) automated scan on the target. How many XSS alerts are in the scan?" has accepted answer of 2; correct answer is 5

lilac spindle
#

Downloading wreath openvpn file leading to http error 500 now

heady cairn
#

Dark bug on /r/room/fileinc

trim moat
#

#room-bugs
Small bug in "Task 5 - Interacting With the Filesystem!" in "Linux Fundamentals Part 1"

What is the contents of this file?
Hello World

But content of the file is: Hello World!

little field
#

maybe its just me but in room https://tryhackme.com/r/room/uploadvulns Task 9. According to older walkthroughs the site is supposed to tell you "Gifs only please!" when you upload another file type. but instead nothing happens it just returns to the original screen with "no files selected"

fallen trail
#

guys, i have a problem with both attack boxes (kali, thm attack box), my keyboard input is not working though the mouse is working

#

i've reloaded them multiple time

#

s

#

On kali there was also a similar kind of error

#

@spare mirage

spare mirage
# fallen trail <@719261261665402921>

Yeah , I think that staff is aware of that , it is already reprted a few times 🙂 . You can just ignore it . It should impact AttackBox functionality 🙂

fallen trail
#

thx, it fixed itself somehow

#

strange things

long valley
#

Hi! Room "Linux Privilege Escalation" task 7 about SUID seems a bit scrambled structure-wise. It says "nano /etc/shadow" will read the file when you actually need to exploit another binary. Semantically a bit confusing that part. Also there is a sentence in lowercase "reading the /etc/shadow file" in the middle of the task seeming out of place 🙂

sour sandal
#

a

runic path
#

Hello everyone. Need a little help here. I'm receiving the 405 error code - method error when trying to access a local URL on one of the atattack boxes that is assigned to me. I can't answer the questions without accaccessing the site. Has anyone run into that issue?

blazing gulch
#

In the Caldera room of the SOC Level 2 path, the command to run the Caldera server doesn't work as shown in the room walkthrough. After activating the Python virtual environment, running python3 server.py --insecure as instructed results in a ModuleNotFoundError. However, if one executes the command with python rather than python3 then the server works as expected.

spare mirage
storm canopy
#

Hello, the GoBuster: The Basics room doesn't work properly. I have everything well configured, I restarted it and still doesnt' work 😦

#

I used the IP of the machine instead the adress "www.offensivetools.thm" and still can't make it work properly

spare mirage
storm canopy
#

omw!

#

Like this?

spare mirage
#

ctrl+x

storm canopy
#

yep i'm gonna try

#

Yeah it works now

#

hahah

#

ty

#

Gonna try to enumerate everything again

#

Works flawlessly, thanks again

#

❤️

spare mirage
raw bison
livid escarpBOT
#

Gave +1 Rep to @tardy silo (current: #1725 - 2)

raw bison
raw bison
deep glade
#

what is the secure port for SMTP

spare mirage
daring cloak
#

anyone also having some problems with Nessus scanner? it shows zero vulnerabilities

quaint sparrow
daring cloak
#

I'm using the "target ip adress" from the THM machine

#

even though I applied all the settings that are recommended, it still showing zero vulnerabilities

#

in other domains I can scan without any problems

stone crow
#

Hello, in Android Hacking 101, task 3, there is a typo: Dinamyc Analysis

shrewd wharf
#

Hello !
There seems to be a small error in the task03 of the room Moniter Link (CVE-2024-21413) ( https://tryhackme.com/r/room/monikerlink ) :

It says: Modify the Moniker Link (line #12) in our PoC to reflect the IP address of our AttackBox, but it seems to me that the IP address of the attack box should be indicated in line #17.

Thanks for all you do! ❤️

daring cloak
sick kestrel
#

the URL republicofkoffee.com used in the webosint room was bought up and it now redirects to malicious site

hazy tiger
#

-mute 1334499215338115153 DM Jabba to be unmuted

livid escarpBOT
#

🔇 Muted bryanjackson.9052 for 1 day

hazy tiger
#

-mute 1334499215338115153 9999d time update

livid escarpBOT
#

🔇 Muted bryanjackson.9052 for 27 years 20 weeks and 4 days

mossy socket
#

what could be the reasdn for tryhackme website freezing every 10 seconds for me in firefox? its the only website that does this? i am even worried about being hacked LOL

marble barn
#

hello

#

I can't connect to the VPN

spare mirage
mossy socket
#

its almost imposioble to study like this. the website freezes. lags, its the only website that does that

marble barn
#

I have no way to connect

mossy socket
#

yesterday io spent 2 hours and could not go over almost anything,. its very frustrating... is there suipport here for that?

spare mirage
last loomBOT
#
TryHackMe's Email

TryHackMe's support email address.

mossy socket
#

ty

mossy socket
#

what password did the user submit here? i decoded it but the pass wont fit the solution blank...

#

needs to fit here unless ists bugged.

mossy socket
#

THM(7BB8WM6P) but that does not fit

spare mirage
#

Curly not ordinary brackets 🙂

mossy socket
#

yeah yeah.. thats automatic on the response format

#

but it does not fit. it fits up until the M

spare mirage
mossy socket
#

Nestworking Secure Protocols, task 8

spare mirage
# mossy socket see?

%7B is encoded {
%7D is encoded }
Refresh the page and copy this || THM{B8WM6P} ||

mossy socket
#

and how do i know that?

#

it worked, but how do i know next time where it should begin ?

spare mirage
#

When you see % it usually indicates some URL-encoding

tardy silo
hasty mountain
#

Thanks it would be nice if this information would read in the room instructions (about the timeframe).

livid escarpBOT
#

Gave +1 Rep to @waxen yoke (current: #91 - 82)

obsidian kiln
# sick kestrel <@650476435269484549>

Oh, that's not an Easter egg or a bug. Just unfortunately what happens sometimes. The room needs to be reworked around it, although if it's a community room there's a good chance the creator is long gone.
I'm assuming that domain was once legitimate and owned by someone else, or I would say the room creator should have bought it themselves to protect the room.

sick kestrel
obsidian kiln
#

Oops kekw

austere jacinth
#

see as it show room completed but not updating in path

#

Also similar happen with another room like i complted the room didn't get the badge then i have reset and redo the room to get the badge

spare mirage
austere jacinth
mild owl
#

There seems to be a problem in the room: Passive Reconnaissance. The answer for task 6 is no longer germany but china.

glad badger
livid escarpBOT
#

Gave +1 Rep to @sick kestrel (current: #147 - 53)

junior shore
#

k2 middle camp and summit has a lot of disconnections. Tried with both attack box and kali. Its a premium room. Lost my shell so many times because the VM keeps disconnecting. Not a fan that this is a premium room and its having issues. Please get this fixed, I did not pay to do premium rooms that keeps disconnecting.

wheat fractal
#

for the third metasploit room in cybersec 101, can run msfdb init as root. but also doesnt work as non-root (ubuntu).

as root i get: Please run msfdb as a non-root user

as ubuntu i get: pg_ctl: could not start server failed

spare mirage
livid escarpBOT
#

Gave +1 Rep to @spare mirage (current: #2 - 2707)

split iris
#

Idk if it’s something I’m doing but in the metasploit room, I start the attack box. Click start machine on the task 1 and it doesn’t open. Aside from that when I try to run msfconsole it tells me the software needs to be updated.

spare mirage
split iris
#

Yeah one opens in the split screen and the other from task 1 doesn’t open. I had the same issue for John the ripper. Maybe cus I have the web page open to long 🤷‍♂️

sick kestrel
split iris
spare mirage
split iris
spare mirage
#

You're usually supposed to use AttackBox to exploit the machine like in this case

sick kestrel
split iris
summer dirge
#

Windows Fundamentals 1 room
unable to switch windows local users
On lusrmgr.msc user: tryhackmebilli . 'V' Marked on "User not allowed to change password" and I have changed the password .

fading ivy
#

Hey everyone I need help I solved some questions on the webosint room like 2 or 3 hours ago but when I re-open the room. This is saying room is locked the room owner has locked this room to access material start machine and answer questions sh***tt!!!!!

quaint sparrow
severe tundra
#

DevSecOps path, CI/CD and Build Security Room, Network is not starting

odd kite
#

Hey guys, does any one knows if there's an error with What the shell? task 14 ? , I'm trying to use nc with -e but it keeps saying invalid option -- 'e'

sour hawk
#

In room "Windows Fundamentals 1", task 3, I don't really understand the question "Besides Clock and Network, what other icon is visible in the Notification Area?". What does it look for?

odd kite
#

@sour hawk you're looking for Action Center

sour hawk
#

Got it. Thanks.

odd kite
austere jacinth
pallid quarry
gloomy sphinx
#

Room -> Gobuster: The basics
Issue - Adding dns server to resolved.config as instructed doesn’t work at all.

Fix - Added the dns server to /etc/resolv.config & it worked.

Anyone want to explain why? I’m all ears.

severe tundra
livid escarpBOT
#

Gave +1 Rep to @austere jacinth (current: #1728 - 2)

wild anchor
#

Room "JWT Security", Task 3
TYPO

Symmetric Signing - A symmetric signing algorithm, such as HS265, creates the signature [...]

HS265 should be HS256

spare mirage
obsidian kiln
misty gull
#

Thinking this may be more of a bug...

spare mirage
stone crow
#

In Linux fondamentals part 3
Task 8
There are no .log files that describes what the question is asking me for
I tried checking all access and error logs, tried all ips and none is matching the format or the answer after for the file, am I dumb and missing something or the room is bugged ?

spare mirage
stone crow
#

....

#

No dont continue

#

Please

#

I'm dumb

#

My bad, sorry

stone crow
livid escarpBOT
#

Gave +1 Rep to @spare mirage (current: #2 - 2726)

valid temple
#

It's showing /home/karen: No such file or directory

spare mirage
valid temple
#

Yeah but the connection getting closed, getting the following error message

Warning: Permanently added '10.10.84.83' (ED25519) to the list of known hosts.
Could not chdir to home directory /home/karen: No such file or directory
mktemp: failed to create directory via template ‘/home/karen/.kitty-ssh-kitten-untar-XXXXXXXXXXXX’: No such file or directory
Creating temp directory failed
Shared connection to 10.10.84.83 closed.

uncut sandal
#

Moniker Link (CVE-2024-21413) Exploitation
Not sure if this is a bug or me just being dumb but in the Task it says "Modify the Moniker Link (line#12)..."
However in line 12 is the recievers e-mail and the moniker link seems to be in line 17.
The line 31 for the "Mailserver placeholder" fits perfectly.

quartz yew
#

Currently doing the "Subdomain Enumeration" room, I can't complete Task 6. Looks like all of the requests have a size of 472. If I use -fs to filter that out, I get no requests returned. I've tried copy and paste, but still no results so maybe it's not a typo. I'm assuming MACHINE_IP is the AttackBox IP as I see no other IP address.

spare mirage
quartz yew
#

Ah, thought that didn't make sense. Thanks!

#

I think my confusion was that I was expecting a Start Machine button in that particular section, but it was at the start. The View Site buttons throughout made me think it would be in the same place as the task. But that makes sense now.

vocal hollow
#

I just started the nmap room and i cant seem to open the virtual machine.

#

I click on start machine and nothing pops up

sick kestrel
spare mirage
vocal hollow
#

Okay thanks

sick kestrel
sick kestrel
#

Additionally, whois has been updated, so Task 6 Q2 is incorrect

grim marsh
frail berry
livid leaf
smoky citrus
#

Please, I'm trying to deploy the machine on the Linux fundamental room, but it kept saying error parsing

smoky citrus
tidal void
#

Hello, hope everyone is fine

I was trying to do the room called Enumerating Active Directory, I started the attack box and I am not able to ping THMDC IP, seems attackbox is not part of the network, could you please help me?

novel carbon
novel carbon
livid leaf
#

@novel carbon oh 😮

#

i just tried, and now its working, ok perfect then

novel carbon
novel carbon
sick kestrel
novel carbon
# valid temple Yeah but the connection getting closed, getting the following error message War...

I have come across this same error: Could not chdir to home directory /home/karen: No such file or directory as per screenshot
I did not have the issue with mktemp: failed to create directory, and the connection getting closed
referring to your output, did it all happen in one go as part of the ssh login, or was there other activity (like entering commands) between the first error msg (Could not chdir to home directory ) and the seconde one (mktemp: failed to create directory)?

full sonnet
#

does the challenge room Smol supposed to show a website ?

cobalt lily
#

I’m trying to run the attackbox but the machine tell me that I can’t run 3 vm at time

#

I’m not running 3vm at time

spare mirage
cobalt lily
#

Already done

warm dagger
solar nest
#

The rooms Basic Pentesting attached VM does not expose users, or rather usernames.
First I tried it myself and then got a collegue with 25 years of experience to look over it.
He is also sure it should work. I guess there is a misconfiguration within the VM.

┌──(root㉿kali)-[~]
└─# enum4linux -a 10.10.75.98 | tee enum4linux-out
Starting enum4linux v0.9.1 ( http://labs.portcullis.co.uk/application/enum4linux/ ) on Mon Feb 3 13:00:04 2025

#

[+] Got OS info for 10.10.75.98 from srvinfo:
Cannot connect to server. Error was NT_STATUS_UNSUCCESSFUL

========================================( Users on 10.10.75.98 )========================================

Use of uninitialized value $users in print at ./enum4linux.pl line 972.
Use of uninitialized value $users in pattern match (m//) at ./enum4linux.pl line 975.

Use of uninitialized value $users in print at ./enum4linux.pl line 986.
Use of uninitialized value $users in pattern match (m//) at ./enum4linux.pl line 988.

==================================( Share Enumeration on 10.10.75.98 )=========================

quaint sparrow
solar nest
#

Kali Box von THM

#

Sorry, there you have the enum4linux output.

#

I think the problem lies within the target machine.

quaint sparrow
#

Yeah, enum4linux isn't friends on that, I'd suggest using the Attackbox.

solar nest
#

Ah that explains a lot. Alright, I'll try it again with the Attack Box and give feedback. Thanks 🙂

solar nest
livid escarpBOT
#

Gave +1 Rep to @quaint sparrow (current: #1 - 3340)

quaint sparrow
solar nest
#

Let's hope they implement a warning. It really confused me why it wasn't working.

#

Anyway, thanks a bunch 🙂

wheat fractal
#

After doing a TCP SYN Scan a bunch of times against the target VM, i get 7 ports shown to be open, right?

#

Guess what? My answer was considered wrong for apparently no reason

potent terrace
#

please help my openvpn connection problem in kali linux os

spare mirage
spare mirage
potent terrace
#

ok

spare mirage
wheat fractal
spare mirage
wheat fractal
spare mirage
wheat fractal
#

This is the one

spare mirage
wheat fractal
spare mirage
novel carbon
spare mirage
novel carbon
spare mirage
wheat fractal
#

Now I've completed the room

spare mirage
novel carbon
quaint sparrow
#

Was the first screenshot a fresh command?

#

Or did you use sudo previously?

livid escarpBOT
#

Gave +1 Rep to @novel carbon (current: #16 - 555)

novel carbon
quaint sparrow
#

You're in a terminal where you've already used sudo.

#

Nevermind, it has changed kekw

novel carbon
wheat fractal
sour gale
#

is there anyone aware of any known issues with silver platter? I am attempting to ssh using the username and password found @ the ip address of the box and it's coming back as permission denied. I've used the attack box and my own kali vm.

signal jewel
#

https://tryhackme.com/room/passwordattacks
Task 6 needs to be updated, as changes to john.conf are depreciated, and custom rules must be added to a new file /etc/john/john.local.conf, else they will return a rule-not-found error

TryHackMe

TryHackMe is a free online platform for learning cyber security, using hands-on exercises and labs, all through your browser!

alpine kindle
#

Hello every one quick question I'm currently in the Investigating with ELK 101 room . I've deployed the attack box and its been more than 5 minutes since i started the machine for this room typed the Ip in the browser getting 504 error any suggestion?

spare mirage
spare mirage
spare mirage
warm dagger
livid escarpBOT
#

Gave +1 Rep to @spare mirage (current: #2 - 2818)

wheat fractal
#

There seems to be a bug in the Content discovery room, task 7. The answer is site and it’s only showing that the answer is too short which it isn’t.

#

Learning path: Jr Penetration Tester

quaint sparrow
#

site is too short.

#

The answer is 5 characters long.

#

Look at the hint.

wheat fractal
#

site: doesn’t work either

spare mirage
wheat fractal
#

Same thing

quaint sparrow
#

Do you have underscores?

wheat fractal
#

I would send a screenshot but I don’t have the permission

quaint sparrow
#

Or *

#

I've forwarded this on to the team

wheat fractal
#

Thanks, I’ve been trying for like 10 minutes thinking I’m crazy or something

#

Hopefully they fix it

glass depot
warm sage
#

I know this is basic, "Which of the following characters cannot be used in a subdomain ( 3 b _ - )?" the answer is _ right? though its not accepting this

#

the answer is '_' right

quaint sparrow
warm sage
livid escarpBOT
#

Gave +1 Rep to @quaint sparrow (current: #1 - 3343)

sour gale
spare mirage
sour gale
spare mirage
sour gale
livid escarpBOT
#

Gave +1 Rep to @spare mirage (current: #2 - 2832)

cosmic mica
spare mirage
cosmic mica
glass depot
#

seems ok now

cosmic mica
#

Yes.. Thank you.. 😊

candid drum
#

Hi I am stuck with CI/CD and Build Security room. I forgot my password (to mother) and now I neither cannot login nor to register again. How to proceed??
I even restarted the room and reset all progress but it didn't help

full sonnet
#

Hey in the room Nmap Basic Port Scans, Task 5 i have done the nmap scan but there's no new ports with 4 digits, im assuming the service has been deleted from the machine

spare mirage
full sonnet
spare mirage
full sonnet
spare mirage
# full sonnet

Are you sure that you're using the right machine , this room has 3 diffrent machines 🙂 ?

full sonnet
#

oh shoot this one got over my head

#

i feel dumb now 💀

novel carbon
full sonnet
#

i have started the machine for task 5 TCP SYN Scan and now im getting one only open port

novel carbon
full sonnet
livid escarpBOT
#

Gave +1 Rep to @novel carbon (current: #16 - 558)

rotund spire
#

Hi 👋

#

Maybe it's bug, but greater than that ( >= ) so... if we take greater than 65 it means 65, 66, 67 and so on so forth. In this room 3 question task 2 maybe little issue, check pls 😉

waxen sparrow
#

Hello everyone. Just fyi, the ORM Injection room needs an Attack Box Start Button added to it.

waxen sparrow
#

||ORM Injection, ORMInjection, ORM Injection room, ORMInjection room ||The work around is to start the Attackbox VM from another room then come back to the ORM Injection room.

wispy moon
rotund spire
wispy moon
rotund spire
#

ohhh... I'm.... Thanks, I need to revise basic math signs, I thought it's >= not > 🫨

wispy moon
rotund spire
#

Yeap, you're right 😊

spice meadow
#

In introductory networking task 8 Dig
Qesution = what is the very first place your computer would look to find the ip address of a domain

spare mirage
#

What's the name on cache file on Linux that keeps DNS records 🙂 ? it is /etc/..... 🙂 ?

spice meadow
#

Ahh still showing wrong

spare mirage
spice meadow
#

I send you a picture please help me out I trying half an hour

spare mirage
#

/etc/ho.... 🙂 ?

spice meadow
#

I send you a picture in private

#

..... /....

spare mirage
spice meadow
#

Hosts

#

?

#

Cache

spare mirage
spice meadow
#

😭Thank a lot for helping me out. I didn't think I get help that much fast

#

Thank you KGB thanks a lot

spare mirage
pseudo jay
#

what should I do if the tasks in the room disappeared

spare mirage
pseudo jay
pseudo jay
spare mirage
pseudo jay
spare mirage
pseudo jay
#

yes

spare mirage
pseudo jay
livid escarpBOT
#

Gave +1 Rep to @spare mirage (current: #2 - 2868)

spare mirage
real grail
#

(Nmap Basic port scan room)
I run this command: nmap -sU -F -v 10.10.148.149, and it asks what new port is now open, but only the 2 ports that are in the example are open.

soft iron
spare mirage
soft iron
#

the eml files arent given in the room

#

I will try with the openVPN app see if I can copy the files from there

quaint sparrow
quaint sparrow
soft iron
quaint sparrow
#

You don't need to remove the file for that.

steel escarp
#

not sure if this is a bug or intended, in Phishing Analysis Fundamentals task 6 it says to defang the urls or ips so they cant be clicked, but question 2 doesnt require the email to be defanged, idk if it was intentional but thought it should be here edit: especially since question 4 needs to it be defanged

true ice
#

Passive Reconnaissance - TASK 6:
Question: According to Shodan.io, what is the 2nd country in the world in terms of the number of publicly accessible Apache servers?
Answer Germany, but shodan shows China

novel carbon
#

for the third UDP port, you have to wait for a few minutes, like 5-6 minutes, for the service to be ready
after that nmap is able to see it open

storm canopy
#

Isn't this a bug?

lime cape
#

xpath

idle python
still niche
#

Is the Incident handling with splunk bugged? I got the email address which I believe is correct: ||lillian.rose@po1s0n1vy.com|| but it doesn't fit so it just does ||lillian.rose@po1s0n1vy.co||

primal radish
#

Tcpdump: The Basics - Task 4
For the last question i get the IP address x.y.53.80 but the accepted anwser is x.y.80.53

quaint sparrow
primal radish
rocky dune
#

Issue is still present

fluid gorge
#

lol

storm canopy
rocky dune
#

Not sure if this is the right place to report, but the url in this room (rubyfu[.]net) redirects to a malicious looking page

idle python
wind night
#

was the interactive lab shut down or..? (what is network room)

quaint sparrow
wind night
fleet root
#

The remnux room is not loading and freezes…

storm canopy
signal jewel
#

Enumeration Room (https://tryhackme.com/room/enumerationpe)
Task 5
For current release of SNMPCheck, the snmpcheck command simply brings up the GUI, whereas the command that provides the data needed to finish the task is named snmpwalk

TryHackMe

TryHackMe is a free online platform for learning cyber security, using hands-on exercises and labs, all through your browser!

median flare
#

Hello, for the room 'LookUp', why i can not access at her web site :

spare mirage
median flare
livid escarpBOT
#

Gave +1 Rep to @spare mirage (current: #2 - 2925)

midnight terrace
#

I think the flag is missing a closing bracket

#

Room: Data Exfiltration

junior shore
#

who on earth implemented this crap flag submission

junior shore
#

I have the correct flag but its not accepting it

#

mine is for a different room but I would imagine its affected in other rooms

spare mirage
midnight terrace
#

Did, doesn’t work

junior shore
midnight terrace
#

Not all

#

Some

junior shore
#

Why on earth did they change the flag submission style

#

like please we do not care about the design of it. We just care about submitting it. I am hoping they roll back to the previous one

spare mirage
junior shore
#

What happened during the QA check 😅 . I swear I am able to find an issue for a lot of rooms nowadays.

junior shore
junior shore
#

Think this is the wrong chat Katherine 🙂

#

@spare mirage is the site down for u?

#

literally got a 404 error and cannot even access any pages anymore on THM 😅 .

#

ok nvm the flag issue is now fixed. I guess they applied some sort of fix that caused me to get booted out of my account. Logged back in and now all is working

spare mirage
obsidian kiln
#

Not least because the docs haven't been updated and (logically) that scan will always require raw packet privileges. i.e., Linux distros would need to remove the restriction which prevents low privileged users from crafting raw packets. I'd expect that from Kali, but not a distro designed to be stable

#

Kali definitely seems to be okay with it though

whole fossil
#

Hey everyone. I just wanted to let the THM team know that I've encountered a bug in the Room "CyberChef: The Basics", in Task 5 question 5. The answer is correct but (I suppose) because of the way the input form is structured with a clear URL structure, the correct solution can't be entered because it's in a different structure but the form on the site is hardcoded.
The answer is: https%3A%2F%2Ftryhackme%2Ecom%2Fr%2Fcareers

While writing this I was able to solve the issue but it's still a bug, beacuse the answer to the question is provided directly in the question. Currently the correct answer is defined as https://tryhackme.com/r/careers while it probably should be https%3A%2F%2Ftryhackme%2Ecom%2Fr%2Fcareers therefore either the question is not properly asked or the answer is not defined correctly.
Kind regards, Daniel

jaunty matrix
#

I had the same issue.
To bypass this bug I used Burp proxy (on the attackbox) with a "Match and replace" rule:
Type: Response Header, Match: SameSite=None, Replace: (empty)

Burp would also help to solve some of the questions. Instead of removing the cookie from the browser devtools, use Repeater and delete the cookie from REST requests.

scarlet narwhal
#

The last task called "Msfvenom" in room https://tryhackme.com/room/metasploitexploitation . Seems to have some issues. The virual machine that you start for that part "MetasploitMSFVENOM". Starts up with error "Could not chdir to home directory /home/murphy: No such file or directory". Then it is possible to do the sudo su and get a shell, but every time I switch back and forth between the attackbox and that box, that session is kicked out and stopped. And I need to do the sudo su again. This does not seems to be correct.

spare mirage
scarlet narwhal
#

But what about the missing home folder for user murphy, that does not seem to be a ok error message?

quaint sparrow
midnight terrace
strong jasper
#

PROBLEM: The underscore(_) character introduces regression when answering a flag.
ROOM EXAMPLE: windowprivesc20
REPRODUCTION: When typing manually a flag containing an underscore in the "Windows Priviledge Escalation" room from the Jr Penetration Tester path, the underscore will automatically delete itself.
SOLUTION: Copy/Pasting flags w/ underscores will work.
PS: As a side note whomever baselined 60 minutes to complete this same room was A BIT too optimistic 😉

smoky berry
#

Velociraptor room task 4 question "Review the output. How many files were uploaded?" Has an error. The answer it wants is 20, but the actual output you get in the exercise is 19 and I confirmed this not just in my machine, but in multipe walkthrough and youtube videos all sharing the same issue

fast mortar
livid escarpBOT
#

Gave +1 Rep to @strong jasper (current: #2656 - 1)

quaint sparrow
strong jasper
#

PROBLEM: Dead link(404) from the Conclusion portion of the windowsprivesc20 room
ROOM: windowsprivesc20
REPRODUCTION: Clicking on the "Hacktricks - Windows Local Privilege Escalation" link brings a "Document no found(404)" tab

wild anchor
#

TYPO (duplicated text)
ROOM: ORM Injection / TASK 5

Let's take a closer look at the source code used by the developer: to Let's take a closer look at the source code used by the developer for the Email (Vulnerable) input field:

#

GRIPE: "LDAP Injection" room was a mere 16 points. "Server-side Template Injection" room was similarly few points. Contrast with the next room in the series, "ORM Injection" which was 100+ points.

sly maple
#

guys is this machine bugged? or have any issuse?
i cant read the "/var/log/apache2/access.log." file
and i tried everything
even i saw the writeup and still

tame karma
gusty lotus
#

@last loom whatever you did with the answer bar, please restore it to old method. copy pasting screws up,
first Wreath now Snort room

gusty lotus
#

?

gusty lotus
quaint sparrow
#

Won't be fixed today though

gusty lotus
#

ok

tropic rover
#

Anyone know if the wreath room is down? I try starting up the network and it fails.

smoky berry
#

the pcap is not on the virtual machine tryhackme provides for this task in "thehiveproject" room. Task 5 Question: "Upload the pcap file as an observable. What is the flag obtained from https://10.10.195.217//files/flag.html". Also that link does not work that is provided in the question unless you remove the "s" from "https", since the site uses http

#

Also new answer format makes it impossible to enter the full answer to this last question for "thehiveproject" room meaning I cant answer it -

spare mirage
smoky berry
#

its the new answer format bug that scrubz says is a known issue

spare mirage
#

But those two have same number of characters , only in your is R at the end and it should be S 🙂

smoky berry
#

wait wait i see what u mean

spare mirage
smoky berry
#

yea i did i was SO CONFUSED cause i literally copied the exact answer i found in a walkthrough but its just a copy paste issue not a character limit. Didnt realize the typo at the end

smoky berry
timid cloud
#

That's a problem i encounter moslty in old rooms. It's readable only in light mode or if i have it in dark mode i need to highlight it in order to read it.

frosty yarrow
#

hi, somone can help me with the Loopkup challenge? I can't reach the login page. I'm connected with vpn on my own kali machine

spare mirage
frosty yarrow
#

oh xDxD, i try

#

ty very much, but should I do the same on the AttackBox?

spare mirage
frosty yarrow
#

ok, ty

daring hollow
#

Hello, is this room working for anyone ? https://tryhackme.com/room/shellsoverview
I can't add attachments to show but this is what I see: there is the page structure (room description, "created by" section), but no tasks
thanks :)

spare mirage
daring hollow
livid escarpBOT
#

Gave +1 Rep to @spare mirage (current: #2 - 2991)

spare mirage
daring hollow
tidal zephyr
#

It appears that something is not working correctly with the URL given (http://MACHINE-IP.p.thmlabs.com) in Task 3 of the room "Splunk: Dashboards and Reports" (https://tryhackme.com/room/splunkdashboardsandreports).

It says it will take 3-5 minutes for the Splunk instance to start, but after 15 it still shows a webpage stating that "Further configuration is required."
This is in both my browser and the Firefox browser in the AttackBox

However, using the Target IP Address directly in the address bar of Firefox on the AttackBox pulls up the Splunk instance.

civic carbon
#

Can I report typos here?

spare mirage
civic carbon
#

https://tryhackme.com/room/logstash

Task 11, just before the questions, it has you save a .conf and run from location:

/usr/share/bin/logstash/

should be:

/usr/share/logstash/bin/

#

thanks KGB

tidal zephyr
spare mirage
spare mirage
tidal zephyr
spare mirage
wraith ginkgo
true leaf
#

Guys, when doing the Olympus room, i send my shell through the chat, but it doesnt show up on the database when i dump it, in fact it only shows the 3 "standard" messages the chat has when you dump the database, is this a bug?

tame karma
tame karma
signal jewel
#

type the letter before, then after any underscores. I agree though, the old way was better.

manic flame
#

Hi. How much affects operation of the Caldera room if Aurora License is expired? ( License file found
Module: Aurora-Agent
Owner: content-dev@tryhackme.com
Reason: license expired
Valid: false
Valid-From: 2024/01/31
Valid-To: 2025/02/07)

pearl wren
#

Hello, please check the room - "pyLon"
https://tryhackme.com/room/pylonzf
There is an error in getting privilege escalation.
There is probably an error in the certificate itself. Because the room was created a long time ago.
Please check for operability.
Thank you.

sand pumice
#

I'm having an issue where webpages aren't loading, I've waited up to an hour, I can ping 10.10.10.10 and DNS is even working but no website

sand pumice
#

Smol right now, but it's occured on others

spare mirage
sand pumice
spare mirage
# sand pumice

Have you added that domain and subdomain to /etc/hosts

#

?

sand pumice
#

I just put in the IP

spare mirage
sand pumice
#

I didn't put anything in hosts

#

That's just the DNS working

spare mirage
obsidian kiln
sand pumice
# obsidian kiln What DNS

The DNS that I'm assuming is running in the room if it can tell that 10.10.35.60 is supposed to be smol.thm

obsidian kiln
#

What makes you think that's DNS?

spare mirage
sand pumice
#

Oooor now it's working

spare mirage
# sand pumice

Those domain aren't registered anywhere , normal DNS won't work in this case and as far as i know that machine doesn't have DNS service running 🙂 . So we need to add it to our /etc/hosts , now our machine acts as a DNS server . This doesn't apply just to this room 🙂

obsidian kiln
#

Your machine doesn't act like a DNS server. It just manually maps the hostname smh

DNS in a lab environment like THM is technology possible. I've got a PoC sitting around in a repo somewhere. I've never seen it implemented in practice though.

obsidian kiln
smoky berry
#

linux fundamentals 3 says its 18 min long, but the provided youtube video is 45 min long. Might need some adjusting

amber sleet
#

I completed the Trooper room a week or so ago it showing that its only been 50% completed. How can this be resolved.

strong jasper
#

PROBLEM: Use of the underscore regresses the next character
ROOM: traverse
DESCRIPTION: When manually typing an answer containing the underscore caracter, typing the next character will sum up in the underscore being deleted. (More explicitly at answer 3). The only solution is to copy/paste an expression containing an underscore and then clicking on "submit".

dark reef
#

I wanted to confirm if this was not an issue on my end.
PROBLEM: cannot access upload-1.php page via target machine and THM Attackbox.
ROOM: Demonstrate Obfuscation
DESCRIPTION: I get four separate warnings relating to an Undefined array key and trying to access array offset on value of type null. Cannot complete Task 8 due to this

serene vector
amber sleet
plush kiln
#

hi, I think there is a bug having with ques 2, task 9 in Incident handling with Splunk room. There is not enough space for the second answer due to which i am not able to complete the room. Stuck at 95%.

dark reef
spare mirage
grave aurora
#

Hello, i'm trying to practice pivoting using the wreath room, but i'm not able to see/download the ovpn file for the wreath network. i did it in the past, just wanted to try it again using ligolo-NG.

spare mirage
grave aurora
#

is there a way to unjoin then rejoin the room again?

spare mirage
grave aurora
#

it says it failing to start the network, when i clicked the green start button

#

i'm not connected to any vpn yet

grave aurora
#

tep

#

yep

plush kiln
#

the answer is also given in the conclusion of the room

spare mirage
grave aurora
# spare mirage Wreath ?

The ovpn for wreath network is not listed in the list of Network VPN server when i go to the access page

spare mirage
plush kiln
spare mirage
plush kiln
#

this is what happens when i try to paste it - lillian.rose@po1s0n1v.y.c

spare mirage
spare mirage
plush kiln
#

nope, the formatting has fixed dots

spare mirage
plush kiln
#

im guessing the room creator or thm would be able to resolve it?

spare mirage
plush kiln
#

okay great, thanks

hearty prism
#

i have uploaded an ova file in tryhackme and after processing its not pinging what to do its is my first box

quaint sparrow
#

What specs have you gave it?

novel carbon
livid escarpBOT
#

Gave +1 Rep to @obsidian kiln (current: #10 - 846)

twilit spruce
#

Room Burp Suite: Intruder; Task 10

#

Room Burp Suite: Intruder: Task 10
When doing everything like described in the task, the respons with the shorter length has the credentials "j.wilcox:corleone"
this works for logging in but is not accepted as the right answer.
Instead "m.rivera:letmein1" is accepted as the right answer but does not work for logging in.

hearty prism
quaint sparrow
hearty prism
#

2gb ram 1 core cpu

#

it was a ubuntu server

#

i have using it in nat is there a issue on that

quaint sparrow
#

Maybe drop the ram to 512mb and half core.

See if that helps

#

As that's what free users get

dense tiger
#

the explanation in premium room oauthvulnerabilities is quite confusing, in task 7 which is about the CSRF:

  • The section "Exploiting the Vulnerability" mentioned "obtaining the victim's authorization code and sending it to the attacker", however the following procedure is getting attacker's auth code and let victim send the auth code on attacker's behalf instead. We can even say the description is completely opposite.
  • the code snippet is embedded out of the sudden, without further explanation on what it is related to, plus the function naming might be the wrong one, which makes me wonder what's the point of showing this code. After going thru the whole procedure, just realize the code might be showing us a helper function, but yet the link shown in the code is not the same as the screenshot, which makes it more confusing
boreal steppe
#

The data you acquire in the Networking Secure Protocols task 8 challenge is flawed. The data you get from the wireshark analysis is "thm&pass=THM%7BB8WM6P%7". The challenge answer space will not allow you to enter the found PW correctly. There's not enough spaces in the answer prompt. Therefore the challenge is un-solvable.

spare mirage
boreal steppe
#

assuming you mean that the %7 means a curly bracket?

boreal steppe
#

that's what I was missing. They really need to be more clear on how these should be being done.

spare mirage
heavy stone
mystic island
#

Hi, Found a small error in this room:

CyberChef: The Basics

Task : 5

Error:
The answer of the last question is not correct, The learner should encode the vlaue of the URL according to the question: What is the URL encoded value of https://tryhackme.com/r/careers?
The correct answer is currently the exact same URL without encoding.

hexed thistle
obsidian kiln
hearty prism
#

even after making it 512 gb ram and half core still not pinging

hearty prism
#

can anyone here help me

obsidian kiln
#

Dare I even ask what you've got running to make Ubuntu Server panic on 512mb of RAM?

#

Assuming GB is a typo

wind fog
#

I think I found a bug on the room "Internal". For whatever reason dns resolution to internal.thm does not redirect. Resolving for the internal address using resolvectl query returns nothing. Not sure if this is a new issue or not.

#

actually looks like you need to add "internal.thm" to your hosts file but that does not make sense at all to have to do that for this lab lol

swift mason
#

I'm solving TryHack3M:Bricks heist but when i spawn target machine and try to open website or mentioned ip (10.10...) it gives me DNS error or content of page take forever to load. Need help 🥲

spare mirage
spare mirage
spare mirage
swift mason
spare mirage
hearty prism
#

Need to reduce that as well ?

obsidian kiln
naive barn
#

goodmorning everyone new room new noob problem : room hydra task 2 I get errors concerning the password lists i am trying to use.

spare mirage
naive barn
#

Ah because rockyou.txt i also tried but i guess i need to use full path to it, so that was my mistake 😦 thank you

naive barn
#

How long should it take to find that pasword .. been more than 30 minutes now heheh

#

ohh i am in the wrong room so sorry

spare mirage
naive barn
#

yeah sorry i was in wrong room i got it to work but it is still running ( for over an hour now)

spare mirage
naive barn
#

ok i will break it off and try again 🙂

wheat fractal
lucid steppe
#

can someone hack me

sick kestrel
thick island
#

Still having accees problem to the log file: /var/log/websrv-02/rsyslog_sshd.log which is required to finish task 4 in SOC Level 2/Log Analysis/Intro to Logs room. I thing there is a bug since user damainhall does not have access to this file.

spare mirage
thick island
#

Please see the sccreen shot I do not have access to compresed (rotated) file and to uncompressed file.

thick island
sick kestrel
thick island
#

actually I do not have access to highlighted commpresed (rotated) file and to the uncompresed log file

sick kestrel
thick island
#

Exactly, this maybe a bug in this excercise,,,

sick kestrel
#

or the adm group

thick island
#

not in admin. group, and only admin grup has permisions required to open the file

sick kestrel
#

i was able to generate the file with the correct perms.

#

try terminating the VM, and starting over being very careful with the steps

#

sudo systemctl status rsyslog
confirm service is running
nano /etc/rsyslog.d/98-websrv-02-sshd.conf

$FileCreateMode 0644
:programname, isequal, "sshd" /var/log/websrv-02/rsyslog_sshd.log

ctr-x & y Save and Quit
sudo systemctl restart rsyslog
ls -la /var/log/websrv-02
** you should see the file with the correct perms**

#

you can also cat /etc/rsyslog.d/98-websrv-02-sshd.conf to confirm it has the correct file creation perms '0644'

thick island
#

3rd time is a charm :)coolguy It finaly worked for me. Thank you very much!

gusty lotus
spare mirage
gusty lotus
#

is there any hint provided for the asnwer format?

spare mirage
proven haven
#

My laptop shows erorr recovery screen how to fix

#

Please

quaint sparrow
proven haven
#

Please easy way

#

Hi

rough glade
#

Can someone help with the CyberChef: The Basics Room? - Task 5, Question 5. - Think the answer is wrong

#

Or am I missing something?

naive osprey
#

literally cannot answer question as answer box does not allow any characters

  • /learnssti room
  • task 2 the answer box has {{ by default and does not allow characters
  • refreshed the page and still does not work
spare mirage
#

Site is wrong 🙂

rough glade
#

Legend - Thank you for confirming!

low shard
#

100,000 most common passwords link on Operating System Security task 2 - the page has been removed

fair quarry
#

Anyone very new to Kali Linux here?

quaint sparrow
fair quarry
civic loom
#

Hi! I'm not 100% sure if this is a bug or if I'm just being dumb, but on the linux privilege escalation room task 10, nothing's coming up when I start the machine. Every other task when I hit start machine it has opened up a terminal connected to the ssh, but for some reason this one isn't. I've restarted it 3 times and still nothing. It's been 2 days since I worked on the room, so I'm not sure if it's this task isn't working, something got updated and now it's bugging out, or if it's not supposed to launch one for some reason on this task. But it feels like a bug to me.
EDIT: Just wanted to add that I was able to SSH into the machine and complete the challenge, but the actual in browser tab never worked. (Also this isn't at all a bug, but I didn't understand what ./test was at all or why I needed to use it). The next task, task 11 properly opened up the split view machine when it was started, so I do believe that it is just something weird with task 10.

spare mirage
lost veldt
spare mirage
lost veldt
neat depot
#

guys I want to know it the problem is from me, I want to acces this room but can't

#

I try to ssh into the machine but can't

#

and even with attackbox I can't

stone crow
lethal cave
#

Hey all. It won't let me input the answer for Task 6 Enumeration through Bloodhound in the Enumerating Active Directory Room. 😦

cosmic flint
#

i know i have the right one since i looked at a walthrough after and did everything right

rich roost
#

Hey there 😊
I’m currently working through the Metasploit Module in Room 3, and I’ve run into a bit of an issue. The progress bar seems to be stuck at 50% even though I’ve already completed the tasks in the room.
I’d really appreciate it if you could take a look and help me out!
Thanks so much for your time and support 🙏

naive osprey
unborn pulsar
last loomBOT
spare mirage
spare mirage
neon hornet
#

Hello, in regards to the Intro to Networking for the question: Which city is the registrant based in? under the WHOIS section - it seems the answer has changed from what was previously accepted by the site. The information given by whois is both the incorrect number of characters and is two words.

merry creek
#

Found a bug in "Intro to IR and IM" first room. You can't interact with it to solve the task and acquire the flag.
Correction: You can solve it, it's just not very well optimized and need to be careful where you place the puzzle.

obsidian kiln
neon hornet
livid escarpBOT
#

Gave +1 Rep to @obsidian kiln (current: #10 - 851)

warm bridge
#

Hey there. I am not able to finish task task 8 (What is the IP address of the user who visited the site?) in Lindux Fundamentals 3. Apache Access Log is empty 😦

spare mirage
warm bridge
#

i did. the answer is not there 😉 i also restarted sthe machine.. access log has always 0 size

warm bridge
#

dont know how 😦

spare mirage
warm bridge
#

afk

spare mirage
# warm bridge

You're inspecting logs on your AttackBox , you need to connect via SSH to target machine and inspect logs there 🙂

warm bridge
#

I know. But when i am trying to access the logs on the other machine i am getting an access denied

#

ok, the second file works. getting access denied only on the first one. thank you!

rich roost
spare mirage
radiant slate
raw bison
radiant slate
livid escarpBOT
#

Gave +1 Rep to @raw bison (current: #5 - 1847)

raw bison
#

Mh, okay it seems to accept the URL encoded value but represents the answered question wrongly. I need to raise that. But I guess you should be able to answer it.

last creek
velvet pebble
#

Recon-ng does not work in the attack box. Modules are not loaded.

storm canopy
supple steppe
#

Armitage doesn't start on AttackBox -> Room is specifically based around using the Blue_exploit through armitage.
Any workaround?

spare mirage
supple steppe
#

ooh okay lemme look up cli commands then 😄

livid escarpBOT
#

Gave 1 Rep to kgbkp (current: #2 - 3306)

spare mirage
tidal zephyr
#

Forgive me if this doesn't qualify as a bug, but it's a typo that I feel should be fixed.
In Task 5 of the Atomic Red Team room (https://tryhackme.com/room/atomicredteam), the example PowerShell command in the Sysmon section reads:

Invoke-AtomicTestT1547.001 -TestNumbers 1

but it should be:

Invoke-AtomicTest T1547.001 -TestNumbers 1

I stumbled on the missing space for a bit (not noticing it because this is my 4th room of the day 😵‍💫) wondering why the command wasn't working...

tidal zephyr
#

Also, I keep getting an expired license for Aurora for the same task as above:

rigid robin
#

In the room Nmap Post Port Scans Task 4 , third question: Launch the AttackBox if you haven't already. After you ensure you have terminated the VM from Task 2, start the target machine for this task. On the AttackBox, run Nmap with the default scripts -sC against MACHINE_IP. You will notice that there is a service listening on port 53. What is its full version value?
The problem is that everytime i try to scan that port i will get that the port its closed/filter and i tried fragmented scan, using decoys, custom packets, max-parallelism , scan delay everything (in my opinion) and i cannot get that answer if you are kind to help me

rigid robin
#

yes sorry

spare mirage
rigid robin
spare mirage
rigid robin
#

i tried that too

wraith ginkgo
#

In CI/CD and Build Security, someone managed to delete the Enviroments repo in Gitlab. You can't move forward without it. Can someone force reset? It's at 4/5.

rigid robin
spare mirage
rigid robin
#

i tried to restart the machine

quaint sparrow
spare mirage
rigid robin
#

nothing about port 53

spare mirage
rigid robin
#

i tried this many days and many times

#

i tried this friday saturday today and nothing

spare mirage
rigid robin
#

thanks a lot

spare mirage
rigid robin
spare mirage
livid escarpBOT
#

Gave +1 Rep to @rigid robin (current: #2679 - 1)

wraith ginkgo
#

You can't do Task 9.

quaint sparrow
livid escarpBOT
#

Gave +1 Rep to @wraith ginkgo (current: #2679 - 1)

spare mirage
#

Hey @rigid robin , I just ran the scan and i got the results on the 1st try. Try to start new machine instance later and try again it should work .

rigid robin
#

at bind version what its 9.9x ...

spare mirage
rigid robin
#

that its the answer

#

i will try again

#

tomorrow

rigid robin
#

incredible

waxen sparrow
#

Just FYI, I noticed in the fileinc room there are a lot of formatting and grammar/wordage issues that make the content harder to understand and sift through.

#

For example, this snippet from the bottom of Task 5, a big part of the sentence is invisible until you highlight it:

spring crag
#

Hi
I have a problem with Practical Exercise on Cyber Security 101
Security Solutions
Vulnerability Scanner Overview
Qestion is "What is the score of the single high-severity vulnerability found in the scan?"
But scaner found only 1 medium and 1 low vulnerability 😦

dusty raft
spring crag
#

thank you

hazy tiger
#

Hey everyone,

We're moving bug discussions to a new forum channel to help us better organise and track bug reports.

🔗 Bug Reports Forum: https://discord.com/channels/521382216299839518/1333993673381253162
📌 Post Guidelines: https://discord.com/channels/521382216299839518/1333994601157103626

Before submitting a bug report, please:
✅ Check existing posts to avoid duplicate reports.
👍 If you're experiencing the same issue, use the upvote reaction instead of creating a new post - this helps us assess impact.

This channel will stay public for reference but will be locked moving forward.
If you have any questions, issues, or feedback, feel free to DM me or use the #community-feedback thread.

Thanks for your cooperation! 🚀

weary pier
#

Hello, not a big deal but on the first metasploit course (may be others too), even if i have already add 1 hours to the machine, the page send a pop-up to tell me the machine expire soon (even if my machine count say i still havec 1h02). And the machine stop after the 2min like if the hour was never added (im using an adblocker, may be its linked).

thick panther
#

The box doesn't stop, you just need to refresh the page and your IP will be listed again

#

It's a weird site bug that's in progress for a fix

weary pier
#

Ok thanks, its working 🙂

compact meadow
#

👀

wheat fractal
#

Alfred room does not seem to have a root.txt flag

viral cobalt
#

it would likely be in c:\Users\Administator\Desktop\root.txt

wheat fractal
#

I've searched filesystem for root.txt