#modules

1 messages · Page 429 of 1

sacred rock
#

Password is wrong. Try loop0p1.

grizzled schooner
#

Tried that, didnt work

sacred rock
#

Password is wrong, missing a -u before the password as well.

grizzled schooner
#

That syntax from the module had that for pw?

fathom pendant
#

It helps to know the module/section as well

grizzled schooner
#

Yeah that's 90% of my problem, I haven't understood 95% of the entirety of pw attacks, genuinely making me want to toss Kali and not look back

#

Lol

fathom pendant
#

What section is this from lmao

#

So i can help to sanity check

grizzled schooner
#

Cracking archives I think

fathom pendant
grizzled schooner
#

Yeah

polar widget
#

mfs at htb academy have been doing it wrong

fathom pendant
polar widget
#

This thing should be in insane tier

#

Windows Kernel Telemetry & Detection Techniques

#

where is our academy's insane tier

#

we need a separate module for this alone - Windows Filtering Platform (WFP)

fathom pendant
polar widget
fathom pendant
#

hard is generally fair. It doesn't look like it requires you to stare into the abyss to learn anything

sacred rock
# grizzled schooner Yeah

If fixing the typo on the password and changing the /dev/loop0p2 to /dev/loop0p1 doesn't work, you have done something wrong beforehand.

fathom pendant
#

and hard also means that it supposes you already have a grasp on the underlying principles before it (same with it being a tier 4 module)

grizzled schooner
sacred rock
fathom pendant
#

@grizzled schooner as a general note; whenever you mount a device with something like loop; do lsblk which will show you the mount partitions of a mounted device like a vhd

#

i was able to perform the instructions nearly identitically (save for the -u<password>) and /dev/loopNpY

#

as a note with any partition type; /dev/typeNpY; N is the disk # and Y is the partition #

#

if it was a full vhd device, (OS and everything) it may have had more partitions on it like a boot partition/recovery partition/etc

grizzled atlas
#

Hey, guys when i use this command impacket-ntlmrelayx -t http://10.129.234.172/certsrv/certfnsh.asp --adcs -smb2support --template KerberosAuthentication
I get this message [-] Authenticating against http://10.129.234.172 as / FAILED
[*] GOT CERTIFICATE! ID 13
Exception in thread Thread-6:
Traceback (most recent call last):
File "/usr/lib/python3.13/threading.py", line 1041, in _bootstrap_inner
self.run()
~~~~~~~~^^
File "/usr/lib/python3/dist-packages/impacket/examples/ntlmrelayx/attacks/httpattack.py", line 42, in run
ADCSAttack._run(self)
~~~~~~~~~~~~~~~^^^^^^
File "/usr/lib/python3/dist-packages/impacket/examples/ntlmrelayx/attacks/httpattacks/adcsattack.py", line 81, in _run
certificate_store = self.generate_pfx(key, certificate)
File "/usr/lib/python3/dist-packages/impacket/examples/ntlmrelayx/attacks/httpattacks/adcsattack.py", line 113, in generate_pfx
p12 = crypto.PKCS12()
^^^^^^^^^^^^^
File "/usr/lib/python3/dist-packages/cryptography/utils.py", line 68, in getattr
obj = getattr(self._module, attr)
AttributeError: module 'OpenSSL.crypto' has no attribute 'PKCS12'

polar widget
fathom pendant
#

or is it your own notes

polar widget
#

my partial table which I made

grizzled schooner
fathom pendant
#

also labeling the left side as "module" can be misleading @polar widget ; it'd be more apt to call the lefthand side "topic(s)"

polar widget
#

yeah topics

#

The essence being - roughly you can club 2/3 sections from that module and have 1 dedicated module separately, because it is so much interlinked

#

havent unlocked it, but will comment for sure

polar widget
fathom pendant
#

yeah if you haven't actually done the content yet it's kinda hard to comment on what ought to be the case

#

i'd have been surprised if you did it all that fast

polar widget
#

Well its a beautiful module, good things take time

indigo plover
polar widget
#

jesus I was reading your blog last month on the EDRs

#

hats off to your content!

indigo plover
polar widget
#

you're way above than average souls like me

mild star
#

Heyy all I'm new here need help with some stuff where do i ask ? Can't text on general group

fathom pendant
#

Yeah we don't do that kind of thing here

#

And yes what you did is patently illegal, you should not be testing the validity of something like that

polar widget
#

proud of you, it takes time !

ember ibex
#

congrats fam!!!!

grand timber
#

anyway I can stream my screen somewhere for help

grizzled schooner
#

what are you working on?

#

I doubt I can help, but I'll give it a try

fathom pendant
#

but it helps to say what module and section you're working on

grand timber
#

uhh its the HTTP request section of the Javascript Deobfucation module inside Craacking Hack The Box module think

fathom pendant
#

one sec so i can pull it up

grand timber
#

okiii

fathom pendant
grand timber
#

I got to the point where I decoed the serial.php into a message

fathom pendant
#

it should return a random string

#

that string is what you input, not the decoded string

#

you worked one-step ahead :D

grand timber
fathom pendant
#

this module really does get you with those

grand timber
#

woooopppsss

grand timber
clear seal
#

Ok peeps. I been stuck on this Burp Intruder section all day. No matter what I do, I get 404, no 200s to find the flag on the lab at the end of the section. I’m going nuts. Any advice?

glacial minnow
#

hello all, i'm stuck in the password attacks module section: hunting for credentials in network shares, question 2: As this user, search through the additional shares they have access to and identify the password of a domain administrator. What is it?

#

I've ran snaffler, netexec, and the other docker tool but they all werent helping so i tried to write custom scripts or manually look for pass in admin$ share but to no avail

#

im going to retry with hamspider

#

manspider*

clear seal
#

I’m annoyed because I’m finding the stupid 403 forbidden directories right away. I wonder if I need to use a diff word list.

fathom pendant
glacial minnow
fathom pendant
#

@grand timber you need to include the data with your post request

#

where the data is in the format "serial=(decoded output from previous section)"

cloud urchin
#

@grizzled schooner Please take care to not spoil content from modules above tier 0

fathom pendant
#

@grand timber so you're misunderstanding how requests work, also your screenshot is containing spoilers.
curl -X POST http://ip:port/serial.php -d "serial=<insert decoded thing here>"

grand timber
#

so just a modivifed version of curl -s http://SERVER_IP:PORT/ -X POST -d "param1=sample"? where the qutation gives value to the -d?

fathom pendant
#

and you're told that the value of serial is the decoded output

#

as a general note, whenever you include data in your curl request, it's assumed post

#

that's why you were getting the string again

grand timber
#

I didnt see and pram in the question-

#

nvm I figured it out

grand timber
fathom pendant
#

then you have the answer :)

#

i thought you answered already LOL

#

the answer is the N2... string

burnt flax
#

Is it just me or does the method they provide to solve the last two questions in getting started under the penetration tester path not work at all? I’m pulling my hair out at this point. Like I made it all the way through the enumeration steps and got to the exploitation steps. But that’s when I noticed nothing worked. So I read the guide they provide and none of those steps worked either.

fathom pendant
burnt flax
grand timber
fathom pendant
#

the following section is what uses the decoded string

grand timber
#

OH NOPE sorry misred

fathom pendant
grand timber
#

so now i decode the n2 string and thats the answer?

fathom pendant
grand timber
fathom pendant
#

yep

#

the question gives you all the elements to get the proper answer

burnt flax
grand timber
fathom pendant
fathom pendant
fathom pendant
burnt flax
fathom pendant
#

i believe the first time I ran through this i used the msfconsole method

burnt flax
# fathom pendant i did the manual method

Weird I followed it to a T and the php shell command I placed inside the themes document never connected back to my nc listener, and when I tried the msfconsole method it would say started tcp listener but would never progress past that

fathom pendant
#

did you replace the php exec command with your system's IP and port to call back to?

burnt flax
#

Do you mean the part where it says PWNIP and PWNPO? Yes

#

I replaced that with my ip and port number for the listener

fathom pendant
#

and you had the listener started before trying the exploit?

burnt flax
#

I even cntrl c out of it and restarted the listener multiple times

fathom pendant
burnt flax
#

Oof I kinda already terminated the instances… but for clarification when you asked if I replaced the php exec command do you mean replaced the php exec phrase with my ip and port or the PWNIP and PWNPO part like I mentioned? Because I left the php exec part in there

fathom pendant
#

hey @sacred rock i was messing around and looked at the walkthrough for the alternate way to root the knowledge check, i ran the tool mentioned in the guide but i didn't get the output that indicated the specific file with the info mind if i dm to discuss?

frosty crescent
#

`python passthecert.py -action ldap-shell -crt user.crt -key user.key -domain <domain> -dc-ip <ip>
Impacket v0.13.0.dev0+20250130.104306.0f4b866 - Copyright Fortra, LLC and its affiliated companies

("('socket ssl wrapping error: TLS/SSL connection has been closed (EOF) (_ssl.c:992)',)",)
`
What am I doing wrong here ? I'm piping this through ligolo could this be the issue?

fathom pendant
burnt flax
fathom pendant
#

but without seeing the output/what you did it's hard to say where you messed up

burnt flax
fathom pendant
#

yeah

#

and ending the php with ;

#

the ; is required at the end of every php command

#

nvm @sacred rock ; it looks like the issue was a limitation of the terminal size/screen scroll

burnt flax
# fathom pendant yeah

Crazy I have no idea why it didn’t work then. I set my nc listener to 1234 to match the port in the code is it because it set it to 1234?

fathom pendant
#

you want the port you're calling to to match the port you're listening on

#

the caller doesn't know you meant 4321 if you put 1234

#

it thinks you meant 1234 and if it's not open it just fails to connect

burnt flax
#

Huh? No I put 1234 for both

fathom pendant
#

i'm just making a generalized example

#

if you dial 911; you're not gonna be connected to a pizza place if that makes more sense

burnt flax
fathom pendant
#

the last thing of course is actually visiting the page at /theme/<Themename>/template.php

#

the code doesn't execute on the editor page

burnt flax
#

Oh I know I did that too even tried refreshing the page but it would load into a black blank page

fathom pendant
#

(in firefox) the infinite loading until you close the connection

burnt flax
#

Ya it loaded into that. I had ‘ marks in my php code towards the end. If these marks aren’t supposed to be present maybe that’s why it loaded into that? Caused a loading error which means the code didn’t execute

#

Loaded into a blank black page I mean not into the infinite loading thing you mentioned

fathom pendant
#

well you can dm me when you get back to it

burnt flax
#

Sounds good I appreciate your help 🙂

polar widget
#

If anyone’s working on windows-kernel-telemetry-detection-techniques then lemme know, I’ll be your buddy.

fathom pendant
#

bro bought the flags to the new module Kappa (kidding ofc)

drowsy vine
#

does anyone know how to solve this error in Linux Privilege Escalation -> Miscellaneous Techniques?
I run the shell binary in victim pwnbox and i got this error. tried to gcc compile it in victim box and then transfer it to attacker box via wget and it can't be transfer.

./shell: /lib/x86_64-linux-gnu/libc.so.6: version 'GLIBC_2.34' not found (required by ./shell)

waxen totem
cursive ice
#

👍 👍

sharp torrent
#

Can somsone provide a nudge for the password skills assessment. I discovred hw user/pass but cant do anything with it. Help would be very much appreciated please.

rancid coyote
#

I tried "tryhackme" a little while ago and was turned off by the beginner modules which weren't skipable does htb have that sort of thing or can I just jump in

waxen totem
rancid coyote
#

ty

wise galleon
#

Hello

rancid coyote
wise galleon
#

Ok

rancid coyote
#

the. u get general access

reef thorn
#

hello

#

can someone help me with the brute forcing module

#

I have been trying the exact command it asks me to in the module and have even tried specifying the command further by specifying the authentication type yet I get 0 matches every time for the password.

#

I dont know how to send images here but I have screenshots of the commands I have used

storm elk
#

@reef thorn welcome! you can send images if you verify your account as per the instructions in #welcome 🙂 then you should be able to send screenshots in here

reef sonnet
#

I am doing Pivoting, Tunneling, and Port Forwarding module, on ICMP Tunneling with SOCKS right now the task is to launch a ptunnel-ng on target host but i am facing with this error:
./ptunnel-ng: error while loading shared libraries: libcrypto.so.3: cannot open shared object file: No such file or directory
anyone got fixes for it? I read that most people downloaded other vms or docker images to fix it

sturdy ivy
#

Not the right place, mate. Read the rules

sturdy ivy
vast wind
#

Can someone please dm me the root flag for nibbles privilege escalation pen tester path? I found the root flag but as I went to screen shot it I accidentally reset my pwn box and nearly drove myself crazy trying to go through the process again. For everyone else out there starting the path I highly recommend just setting up your own VM.

opal basalt
#

I don't think you should be asking that question here

reef sonnet
somber sonnet
#

hi, Im currently trying to do the Windows Attack & Defense - PKI module. I've solved the first part and moved on to the second, but I am unable to connect to PKI.eagle.local (tried using both hostname and IP address to RDP, but it does not connect)

#

both the Kali jumphost and the WS001 machine cannot reach the server

novel fog
#

Can i do cyber security on Android

#

?

signal hound
#

hi guys, im trying to do pass the certificate section in password attacks module
im trying to RDP into the machine but get an error

#

i also tried remmina and it still fails

fathom pendant
#

Authenticate, in this instance, means using the given user:pass to perform the attacks

novel fog
fathom pendant
# novel fog .

you'd have a lot of trouble doing the modules on a mobile device

#

if you mean in-general, even more so. Not a lot of tools exist for use with android/mobile devices

novel fog
fathom pendant
#

the simple answer to not getting hacked on android is not running sketchy apps or clicking on sketchy links sent to you

fathom pendant
#

aside from that, the conversation is off-topic to this channel. I suggest reading #rules and #welcome

novel fog
#

I can't chat in general

fathom pendant
#

if you want to continue engaging in off-topic convos, you'll need to:

  1. make a hackthebox account
  2. follow the instructions in #welcome to link your account
novel fog
#

Ok thx

novel fog
fathom pendant
feral basin
#

Hey guys, I am on module 143, section 1509 of CPTS ... Attacking Domain Trusts - Cross-Forest Trust Abuse - From Linux.

I am facing a problem. For the second question, the hash I get from first question is unrecognizable by hashcat. Mode 13100 is not working because hash is unrecognizable. Thus I am unable to crack it.

fathom pendant
#

if the hash does start with $krb5tgs$23$ then 13100 should work

feral basin
#

But It's not working

fathom pendant
feral basin
#

Yeah I checked it there

fathom pendant
#

then you likely didn't save or copy the full hash if you're using it independently

feral basin
#

But I have noticed that length of hash that I am getting is way longer than specified on Hashcat wiki page for 13100

fathom pendant
#

it's gonna be a variable length

#

it's not a static length

#

no reach out to instagram support. If they can't help you're SoL

#

@feral basin i just spawned a fresh target and was able to request the ticket as well as crack it properly not sure what you're doing wrong tbh

#

the only thing i can think of is you need to run the hashcat command on your host machine/pwnbox not on the target jump-host that you ssh into

digital pendant
#

I'm not stuck but kind of confused. On the Pivoting / Tunelling module of CPTS I have just finished my SSH port forwarding section and now on the Remote/Reverse Port Forwarding bit.

The module text says to go ahead and get a reverse shell from the windows host sat on the 172.16.x.x network, but we haven't been given RDP credentials over there, only credentials we have is on the ubuntu server. Since this module isn't pushing us to hunt for credentials on the system or look for misconfigurations. I'm confused why the module is asking for things like "download the payload onto the windows device" To do that we'd need to know the credentials wouldnt we??

#

this is sort of optional I guess but given the text clearly says we should give it a go, it feels backwards

fathom pendant
digital pendant
#

huh I must have missed the windows credentials in the module text, ill have a look then thanks marcie

lucid badge
#

i'm running into an issue with Login Brute Forcing - Skills Assessment Part 2 - https://academy.hackthebox.com/module/57/section/516
i have already SSHed into the provided IP, and have read the incident report that provides the FTP user's name. Based on this, I have used username-anarchy to create a relatively small list. I believe my problem however lies with my password list. I've tried the passwords.txt on the SSHed host to no avail. I went on to create a new list using "cupp -i" that adds numbers and special characters, but the resulting list would take days to iterate through with Hydra.
Also, I tried to apply the regex from the "custom wordlists" section to trim it down, and the output is completely empty.
In case this is relevant, I am using this syntax on the SSHed host: ||hydra -l userlist.txt -P passwords.txt ftp://94.237.56.47||

fathom pendant
#

you shouldn't be using the external ip when messing with internal services 😉

earnest leaf
#

hello

lucid badge
#

aaaaaaaaaand i got the password in 10 seconds (i've been at this question for an hour and a half)

fathom pendant
lucid badge
#

tysm @fathom pendant

#

i see you helping everyone and you're the goat btw

fathom pendant
#

as the windows IP; it looks like the example for "logging into the windows host" is missing that crucial bit of text

earnest leaf
#

I'm doing the "Attacking Authentication Mechanisms" module, I'm in the "SAML SIgnature Wrapping Attack", I modify the SAML Response but I get a "Invalid SAML Response". WHen I validate it with an online validator it passes the check, so I guess there's something with the encoding. Can someone halp, please?

digital pendant
#

it really is! I didnt want to bash the module as its written well just felt like I was missing something to proceed... thank you ❤️

earnest leaf
fathom pendant
#

just to be clear @digital pendant it's this section? Remote/Reverse Port Forwarding with SSH

#

also don't really worry about practicing it on that section, plenty of other sections to practice on

digital pendant
#

Yeah thats the one

fathom pendant
#

the module is littered with windows hosts to practice with

digital pendant
fathom pendant
#

@earnest leaf that would be considered a spoiler btw

earnest leaf
#

why? it's literally a link

fathom pendant
#

the link you posted contains potential spoilers for the SAML you're sending

#

-_-

earnest leaf
#

okay, sorry..........

#

could you help please?

fathom pendant
#

i haven't done the module, so you'll have to be patient and wait for someone that has

earnest leaf
#

okay

wooden seal
#

Windows PrivESC -> Pillaging
Optional Exercises
when trying to pass the hash of admin getting this screen is it intentional or i did something wrong?
Is it coz of blank password thing? coz i am using PTH

fathom pendant
wooden seal
fathom pendant
whole stag
#

I'm working on Attacking Common Services > Attacking Email Services
I tried smtp-user-enum with the provided users.list and with all methods (VRFY, EXPN and RCPT) for the target.
I got nothing in return.
smtp-user-enum -M <method> -U users.list -D inlanefreight.htb -t <target ip> -w 25
Can anyone help me?

ancient parrot
#

hi guys, in the password attack module, skill assessment, that .pcap file is the right vector?

sacred rock
forest tendon
#

What module is recommended next, after completing "windows os fundamentals" and "windows cli module"?

whole stag
rapid lichen
#

Hey all. I've finally figured out Q2 of the "NTLM Relay Attacks" Skills Assessment after quite a bit of head scratching and am now trying to figure out what to do with the access to get the password for Q3. I've been through the module content a few times and can't figure out how to make use of the privileged access. Can anyone provide a pointer or two pls? Cheers!

reef sonnet
#

Doing Pivoting, Tunneling, and Port Forwarding , on the RDP and SOCKS Tunneling with SocksOverRDP question rn.
I believe that i've done everything correct, but it just does not wanna load it for me.
anyone faces such issues with the connectivity?

Solved it eventually, had to re-launch rdp about 10 times to make it work lol

rapid lichen
#

So, I've searched the Discord channel for other ppl stuck at the same spot. Seems the consensus is to check shares on the host. So maybe craft a malicious .lnk in the ShareBackups folder?

tired flax
#

Hello guys someone can give me some help on the Skill Assessment of wkhtmltopdf, PDF generators, In Injection attacks Module?

solar arch
#

so new blue modules are now only released for 90€ each and not included in gold annual? 🆒 🆒 🆒

rapid lichen
#

Hey! Did you ever get through Q3 on the NTLM Relay module as I'm now stuck too! I reckon the way forward is to do with a malicious lnk file on backup01 but can't see the wood for the trees.

solar arch
# ornate pine they later will

token manipulation was released half a year ago already and is still 90€ and contains (i guess) lots of information microsoft currently is deprecating because they rework the tokens and admin accounts...

flint palm
#

guys hello I am getting this kind of an error ./kernel_exploit: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34' not found (required by ./kernel_exploit)

#

can someone guide how to solve it?

ornate pine
celest peak
flint palm
#

you mean gcc?

celest peak
#

Yep

flint palm
#

I did it already

celest peak
#

What module and section are you on

flint palm
#

kernel exploit

#

linux priv escalation

#

it means that the version of glibc on target is older then my

celest peak
#

I think it worked for me, so not sure about this. Maybe someone else can help

flint palm
#

which exploit did you use?

opal basalt
#

Hi everyone,I was doing skill assessment From the CBBH (File-Upload module), I uploaded the web shell but i cannot read the flag that is on the root directory like when i do cat /flag....txt . It doesn't show me any result. My question is, Am I still missing something or not doing enough to get flag. EDIT: Dang it, URL Encoding got me . Fixed do proper url encoding while getting the flag and i was able to grab the flag

fiery berry
flint palm
#

I have already compiled it on my attack host

#

on target glibc is version 2.27 and exploit requires version 2.34

#

i don't have permissions to upgrade the system

waxen totem
#

you can also just: transfer the libraries

flint palm
#

you mean me?

waxen totem
#

if a file isn't found on the system... transfer the file to the system

#

simple as

fiery berry
tender nimbus
#

Hey guys little question about the Windows Event Logs & Finding Evil module in the Analyzing Evil With Sysmon & Event Logs
section, I found all the awnsers of the questions but I'm trying to digging deeper, when I launch mimikatz, as they say in the module It will access another service (LSASS) so it is an event ID 10, but when I go in the event viewer and filter on id 10 after using mimikatz, I have 0 entries do you know whyK?

flint palm
warped rivet
#

good afternoon, anyone here to help me? i'm stuck

waxen totem
warped rivet
#

i'm currently stuck @ Spraying, Stuffing, and Defaults "Password Cracking module"

#

so i've SSH'd to the VM. Found a notes.zip on another users desktop. Tried to crack the password, but my cracking fails. i know there's info in this zip to find the password for the user that can connect to the SQL server since i also found a id_rsa file in this users folder but can't access it and my exploits seem to fail

#

anything i missed?

waxen totem
somber sonnet
#

is it just me, or are the Academy VPN connections not very stable?

#

I've gotten disconnected from any RDP session I create within 5 minutes

#

and then cannot connect again unless I reset the machine

autumn pilot
#

reach out to support to further troubleshoot the behavior

compact patrolBOT
somber sonnet
paper basalt
#

Anyone else experiencing issues with "Target(s) are spawning..." being stuck forever? Never experienced this before

celest peak
#

Had it happen to me once, waited it out and it let me spawn them again

fierce sable
#

need some help in Password Attack Skill Assesment

when I try to use nmap through proxychain it give me a error and I dont know why

proxychains nmap -sT -Pn --open 172.16.119.11 172.16.119.10 -p 53,88,135,139,389,445,464,593,636,3268,3269,3389,5985 -oA internal_domain_scan
ProxyChains-3.1 (http://proxychains.sf.net)
Starting Nmap 7.94SVN ( https://nmap.org ) at 2025-06-25 12:23 UTC
dig: parse of /etc/resolv.conf failed
dig: parse of /etc/resolv.conf failed
dig: parse of /etc/resolv.conf failed
dig: parse of /etc/resolv.conf failed
dig: parse of /etc/resolv.conf failed

waxen totem
fierce sable
# waxen totem uncomment `proxy_dns` in your proxychains conf

Already configured

sudo cat /etc/proxychains.conf

proxychains.conf VER 3.1

HTTP, SOCKS4, SOCKS5 tunneling proxifier with DNS.

The option below identifies how the ProxyList is treated.

only one option should be uncommented at time,

otherwise the last appearing option will be accepted

dynamic_chain

Dynamic - Each connection will be done via chained proxies

all proxies chained in the order as they appear in the list

at least one proxy must be online to play in chain

(dead proxies are skipped)

otherwise EINTR is returned to the app

#strict_chain

Strict - Each connection will be done via chained proxies

all proxies chained in the order as they appear in the list

all proxies must be online to play in chain

otherwise EINTR is returned to the app

#random_chain

Random - Each connection will be done via random proxy

(or proxy chain, see chain_len) from the list.

this option is good to test your IDS 🙂

Make sense only if random_chain

#chain_len = 2

Quiet mode (no output from library)

quiet_mode

Proxy DNS requests - no leak for DNS data

proxy_dns

Some timeouts in milliseconds

tcp_read_time_out 15000
tcp_connect_time_out 8000

ProxyList format

type host port [user pass]

(values separated by 'tab' or 'blank')

Examples:

socks5 192.168.67.78 1080 lamer secret

http 192.168.89.3 8080 justu hidden

socks4 192.168.1.49 1080

http 192.168.39.93 8080

proxy types: http, socks4, socks5

( auth types supported: "basic"-http "user/pass"-socks )

[ProxyList]

add proxy here ...

meanwile

defaults set to "tor"

#socks4 127.0.0.1 9050
socks5 127.0.0.1 9050

fathom pendant
warped rivet
#

@fathom pendant mind if i bother you in PM?

fathom pendant
#

about?

warped rivet
#

a module i'm stuck at atm but don't want to spoil too much info

fathom pendant
#

well it helps to know which module so i know what portion of my notes to look at

warped rivet
#

Password attacks - Spraying, Stuffing, and Defaults

gray yacht
fathom pendant
#

looks like it hasn't really changed (at least the method/answer); the hint here is defaults

warped rivet
#

so i'll have to look further into: "creds"

fathom pendant
#

the only creds you need to care about are what's given to you, after that you have to research what default passwords may exist (there is a tool/repo linked in the module)

warped rivet
#

and i'm going way to far?

fathom pendant
#

you don't need to bruteforce anything with tools

#

there's a cheat-sheet linked 😉

#

that's all i can tell you

#

you don't need to put extra spaces in your question/request. it just pushes other peoples asks out of the way
With that being said; if it's hanging then i suggest restarting the target

#

also deleting bc spoilers (yes even though the creds are given)

warped rivet
young gale
#

@fathom pendant Is there a tutorial on hackthebox on how to setup a secure Linux VPS?

fathom pendant
young gale
#

cause I have a project i need to put up

fathom pendant
#

The general tip for securing any VPS is not to use default passwords or insecure passwords, where possible use stuff like PKI for authentication. I.e. RSA keys to log in via ssh

warped rivet
#

found it @fathom pendant i was in waaaaaay too deep

young gale
warped rivet
#

thanks alot!

fathom pendant
young gale
fathom pendant
#

feel free to submit /feedback

fierce sable
thin citrus
#

There is no way to get 100 cubes when doing the final exercise from Unexpected Input - PoC and Patching (Parameter Logic Bugs) the max with 5 dollars is 80 cubes. tried tones of variations. Can someone help me with this????

rapid lichen
#

@gray yacht OK thanks. This Q3 is a doozy! I'll get some food and revisit the compromised host with fresh eyes!

gray yacht
rapid lichen
#

@gray yacht ah that might be the issue with the lack of familiarity - I'm working through tbe CREST CPSA/CRT path not CAPE.

gray yacht
steep forum
#

Are you connected to the VPN?

rapid lichen
#

@gray yacht thank you again. I'll check out the netexec wiki as I've not used the tool before. Hopefully this will help the penny drop but very much appreciate the DM offer! I may hold you to that!

gray yacht
#

Is this from the Footprinting module? I doubled checked it and it is, so please refrain from posting content from modules over Tier 0, which is why I deleted your message. There are other ways to explain your issue, without spilling that information.

steep forum
#

It seems to be solved though.

sharp torrent
#

anyone available for a nudge on the password assessment please. Discovered two creds, setup tunnels to use them but unable to connect to anything. help would be appreciated.

gray yacht
sharp torrent
sacred rock
#

Have you tried those creds for all protocols on the internal servers?

sharp torrent
sacred rock
#

I think top 20 ports would have found what you need to be honest.

sharp torrent
gray yacht
forest tendon
#

guys i'm trying to run a psession via winrm but seams like my attack machine is not in the trusted host list, how can i connect remotely via winrm to the target machine?

narrow mist
#

The introduction to the infosec path briefly mentions some general tips and guidelines.

#

let me see what page it was

coral willow
#

Hey folks, in the secure coding 101: JS module, the description mentions that the module is the "first module in the Secure Coding path." But I dont see a path focused on secure code, anyone have any info if that is something in the works? Or is there a path/module that I am not seeing

narrow mist
pulsar island
#

hi

#

first time using discord. have a question regards to Active Directory LDAP module- I was struggling with the last question... Find the name of an account with a ServicePrincipalName set that is also a member of the Protected Users group.

#

is there someone i can talk to?

forest tendon
#

guys ! i think i messed up winrm application on my lab machine xD

#

i had a tough time trying to configure winrm and some how i try to configure the winrm and it just broke down

glad flicker
#

on the Password Attacks module Skills Assessment, i'm totally stuck at the first hurdle.

With only a single ssh port, and a potentially correct password, I just don'tk now how to get past the first step. I've tried so many permutations of the given user's name and the company name for a domain, but just nothing works.
(betty jayde)

Surely I'm missing something? But there's no website to scrape for additional info to inform the username or anything. This is making me pull my hair out.

vital zodiac
#

Hi
Is there anyone can help me with this module "Rapid Triage Examination & Analysis Tools"?

Please DM

clear seal
#

Done with the web proxies module.

round wigeon
glad flicker
round wigeon
#

Yeah, I had some very frustrating experiences, but it makes them more memorable

twilit cape
#

Do you recommend finishing networking first and then moving on to Linux fundamentals, or is it possible to do both at the same time?

wraith locust
#

Hi

rustic sage
young gale
#

@proud pine i redeem gift card but how do i use the balance now

proud pine
thin citrus
#

Can someone help me with parameters logic bugs unexpected input

sacred rock
#

Password Attacks?

#

You are given a name and a likely password. What tool can you use with the name that was taught in the module? What can you do next?

#

Oh yeah! Stay focused, you got this!

#

You don't need this. You need the tool that will generate potencial usernames out of a name.

nova pecan
#

Review the module: Attacking Active Directory and NTDS.dit

#

the tool you need is in there

#

you bet! best of luck to you 🙂

sacred rock
#

The cheat sheet has it too, don't sleep on the cheat sheet

nova pecan
#

i forgot those exist too haha, thanks for the reminder!

tall imp
#

someone who wants to help me, I need it, because I don't know what else to do, I'm in the password attacks section specifically already in the last Skills Assessment module Has anyone finished it? Does anyone know how to complete this module? write me by private message

fading olive
fathom pendant
#

please do not share spoilers of modules above tier 0 :)

tall imp
fading olive
quasi wave
#

not a request for help yet, but just a comment. I should have listened when the module said to start the target and then read the section for this specific AD module. I'm on AD Enumeration and Attacks module.

#

I am doing the section I'm on tho its been a few days since I last did HTB

#

past couple days have been trying to get a job

#

I might have a desktop technician job soon

tall imp
fading olive
vast wind
#

Can someone please dm me the root flag for nibbles privilege escalation pen tester path? I found the root flag but as I went to screen shot it I accidentally reset my pwn box and nearly drove myself crazy trying to go through the process again. For everyone else out there starting the path I highly recommend just setting up your own VM.

sudden owl
#

Why is my target unreachable? The ping said that too

fathom pendant
fathom pendant
sudden owl
#

Yes

fathom pendant
#

also not all targets might be able to be pinged/respond to ICMP echo requests

vast wind
#

Okay.

celest peak
nova pecan
#

anyone able to help me understand proxy chains within the password attacks skills assessment? i've setup my proxychain, but unsure where to go now

sudden owl
#

It was just working yesterday too

#

Damn am i not supposed to update the packages

tall tusk
#

Can someone help me w/ something?

#

I use this website called cheaters.fun and I also use VSCode. I copy and paste the load string, but that doesn’t work. Can someone help?

fiery forge
#

Can I DM anyone for a nudge in the Password Attacks Skill Assessment?

nova pecan
sudden owl
#

Damn i was using the starting point vpn instead of the academy no wonder it cant ping

gray yacht
ancient parrot
#

the new update passwords attack improves the quality of lessons effectively, hope more updates

silent ivy
glad flicker
#

How slowly nmap runs through proxychains and openvpn (like 0.1% per minute, literally) makes me feel like i have no shot at the CPTS exam, practically speaking.

safe star
#

you can always try ligolo

glad flicker
#

Like i want to pivot but i can't even do a basic nmap scan through proxychains without waiting 3 hours

safe star
#

but proxychains shouldnt be that slow in my experience

glad flicker
#

Yeah idk what the issue is

safe star
#

have you tried running with sudo and -sT?

glad flicker
#

Yep, and also tried cranking it with -T5 and upping min parallelism, no dns resolution, still snails pace impractically slow

#

I've had this issue on several boxes now. Not always but i worry it'll happen in the exam

#

Like it was literally faster to jusy bruteforce guess which services were gunna be active on the target host on default ports than wait for nmap to scan even top 100.

safe star
#

yeah thats why a lot chose ligolo going into the exam

meager osprey
#

Guys, I'm stuck on the attacking enterprise networks module, I'm on the last question, obtain the ntlmv2 password hash for mpalledorous, but the inveigh doesn't capture anything, i already tried with .exe and .ps1 versions

glad flicker
#

I'll double check that my hypervisor isn't throttling bandwidth on my VM

glad flicker
#

I'll also try going from my bare metal kali lappy and if i have any better luck that way. Could just be VM jank

meager osprey
quartz ermine
#

Im having an issue with the module "Password Attacks: Remote Password Attacks" issue with the rdp question. no matter what i do, im having severe connection issues when trying to bruteforce the creds with the given lists

meager osprey
#

And i already tried a solution from a guy here 6 months ago, but it still doesn't work

magic mango
#

Virtual hosting, i'm running gobuster without errors but my results are coming up empty and even the output file is empty, i've tried different word lists, slowing down the scan, speeding it up, and using the wildcard (which i feel gives me a bunch of BS) what am i doing wrong?

#

nvm, i think i might have found what i was doing wrong

somber sonnet
#

what is the Windows machine's address that I need to connect to for Windows Attack & Defense - Skills Assessment?

cloud urchin
somber sonnet
magic mango
#

i take it back, i think i'm still doing it wrong

cloud urchin
magic mango
cloud urchin
magic mango
cloud urchin
#

did you add the hostname to your /etc/hosts file?

waxen totem
magic mango
magic mango
cloud urchin
#

That's probably your problem, although I haven't done that module since the update. You need to add the domain to /etc/hosts, if you look at the example gobuster command provided they are using the hostname not the IP.

#

I do see they also have one example with the IP and appending the domain, but yeah idk I didn't do it after the update. Maybe try the other way they show.

#

also make sure you're using the correct port.

magic mango
#

i'm using what HTB gives me as a target

waxen totem
#

This is all explained in that section (maybe in the previous one, cant exactly recall)

#

@magic mango its specified that you need to put the ip and the domain into your hosts file (/etc/hosts)

magic mango
#

i'm just gonna go put my foot in my mouth

somber sonnet
#

for Windows Attack & Defense, why doesnt this work?

#

cant send pictures apparently

cloud urchin
#

no need really, you can just explain the issue

somber sonnet
#

when copy-pasting the certificate obtained using the previous steps, then pasting it into Rubeus on the target Windows machine, it just says KRB-ERROR (16): KDC_ERR_PADATA_TYPE_NOSUPP

#

Skills Assessment module

#

ok I think I know why

#

ok yeah it still fails, not sure why

viral raven
#

Hey guys I’m currently doing the JavaScript Deobfuscation Module and I’m seem to be stuck for this question

Repeat what you learned in this section, and you should fine a secret flag, what is it ?
Answer : HTB{1_4……0r!}

I did decode it and got the flag but it does not seem to accept the answer. Is there any issues with the question or what am I missing out

cloud urchin
#

make sure to include the HTB part and the brackets, but it sounds like you got it. maybe manually type it make sure there are no whitespaces

viral raven
#

Tried it as well, does not seem to work 🥲

thorny cape
#

hi

viral raven
thorny cape
cloud urchin
thorny cape
cloud urchin
thorny cape
#

done reading? check out modules show

viral raven
young gale
#

Struggling on pivoting through networks on password cracking module on skills assessment

fathom pendant
young gale
somber sonnet
#

when restarting the skills assessment for Windows Attack & Defense, I got a "Trust relationship" error when trying to logon

cloud urchin
#

or that

#

takes 3~5 mins for environments to fully spawn

somber sonnet
#

its been 20min tho kek

cloud urchin
#

yeah restart the target then

fathom pendant
snow mirage
#

Before or after you connected?

somber sonnet
#

oof ok

young gale
fathom pendant
#

no

somber sonnet
fathom pendant
#

i don't do content with other people

somber sonnet
#

yeah I'll restart the VM

snow mirage
#

Ah. Yeah that module is always a doozy. Dw. The boxes are a little finicky but if you stick to the lab instructions when accessing the local domain machines once you connect to your initial host you have creds for (should be Bob with slavi123 or something like that if I remember) you'll moving like butter!

fathom pendant
#

694d8832765cae433777b347b4ac4b7b - should be the result @viral raven if it doesn't match that, then you're missing something

somber sonnet
#

time to take a nap while I wait for it to fully boot kek

snow mirage
#

this is the way

young gale
fathom pendant
young gale
#

i got the ssh creds, but pivoting im not sure what the move is

full drum
#

Hi there! I think there might be an issue with the "Attacking WPA/WPA2 Wi-Fi Networks" Module on Page "Reconnaissance and Bruteforce". Is someone available to check whether i'm being stupid or whether there'sa a legit issue?

Edit: The issue is that sending the brute force request results in the following TimeOut errors when the -vv flag is used:

[+] Associated with D8:D6:3D:EB:29:D5 (ESSID: HackTheWireless)
[+] Sending EAPOL START request
[!] WARNING: Receive timeout occurred
[+] Sending EAPOL START request
[!] WARNING: Receive timeout occurred

Thanks!

fathom pendant
#

just have patience and someone may help @young gale

young gale
#

Alrigvht

fathom pendant
#

generally proxychains [command] to go through proxy

young gale
fathom pendant
lucid pecan
#

I was retaking the AD Skills Assessment 2 and when I ran mimikatz as system on SQL01 host, it returned the wrong Administrator NTLM Hash. I had to reuse the hash I found during my first attempt at this lab and worked.
Does anyone know why mimikatz would return an NTLM hash that doesn’t work?

gray yacht
gray yacht
#

Ah I think i misinterpreted what was being said.

lucid pecan
crimson moon
#

minikerberos INFO Loading certificate and key from file
INFO:minikerberos:Loading certificate and key from file
2025-06-25 22:54:21,624 minikerberos INFO Requesting TGT
INFO:minikerberos:Requesting TGT
Traceback (most recent call last):
File "/opt/PKINITtools/gettgtpkinit.py", line 349, in <module>
main()
File "/opt/PKINITtools/gettgtpkinit.py", line 345, in main
amain(args)
File "/opt/PKINITtools/gettgtpkinit.py", line 315, in amain
res = sock.sendrecv(req)
File "/usr/local/lib/python3.9/dist-packages/minikerberos-0.2.20-py3.9.egg/minikerberos/network/clientsocket.py", line 87, in sendrecv
minikerberos.protocol.errors.KerberosError: Error Name: KDC_ERR_PADATA_TYPE_NOSUPP Detail: "KDC has no support for PADATA type (pre-authentication

Getting this error on BleedingEdge section in AD module of CPTS path.

#

This is while requesting TGT using gettgtpkinit.py with base64 certificate received.

steep forum
crimson moon
crimson moon
waxen totem
waxen totem
waxen totem
waxen totem
#

e.g.
ACADEMY-EA-DC01\$

crimson moon
#

yeah tried that as well 😄

waxen totem
#

welp, time to get a new pfx I guess 😅

crimson moon
fierce valley
#

any idea why it's working in the pwnbox but not in the VM ?
VPN connection is good i don't have any idea
module "Getting Started" - section ''public exploits"
i can ping the machine ,
enumerate it

waxen totem
cloud urchin
waxen totem
#

Also you don't need the VPN cos it's a public IP

wooden seal
cloud urchin
#

oh lol you got it

fierce valley
#

i tried all of the lol
terminated the pwnbox , killed the vpn connection and used http
still it's mad for some reason

cloud urchin
#

working from my pc

fierce valley
#

the fact it worked on my windows but not in the VM is funny

cloud urchin
#

try on your host computer instead of your vm

#

can you reach google in your vm?

fierce valley
fierce valley
cloud urchin
#

also don't use tun0 in your curl, tun0 is for the VPN IP which can't reach it

#

yeah idk then. really should work it sounds like. are you using bridge mode, nat, something else?

fierce valley
cloud urchin
#

that may be why. i'm using NAT.

fierce valley
cloud urchin
#

no that's only to resolve hosts

#

there is no host to resolve, you're using the IP

wooden seal
#

Windows PrivESC (Miscellaneous Techniques) is way tooo easy should be changed (my opinion)

fierce valley
cloud urchin
fierce valley
fathom pendant
fierce valley
fathom pendant
#

in vm settings

fierce valley
fathom pendant
#

pwnbox you can't access the settings sorry i thought you meant your own vm

#

pwnbox settings can't be changed or adjusted aside from spawn region and vpn region

somber sonnet
#

@snow mirage oh yeah restarting and waiting 20min did help, now the ticket is imported successfully

#

thanks kek

somber sonnet
#

for Intro to Malware Analysis: Debugging module, is it normal that once you click run, the executable gets stuck on the EntryPoint and doesnt proceed further?

#

also according to the module, it says notepad.exe should've been opened, but I dont see the program launched

tawdry zealot
#

Hi Guys,

someone know why this command not working? its Freeze ...

mysql -u robin -probin -h 10.129.89.192

MYSQL module

waxen totem
somber sonnet
waxen totem
tawdry zealot
#

yeah dude

#

3306 port his open on HTB and have ping there, i cant to figured out the issue

waxen totem
tawdry zealot
#

0xWILD you are champ! its worked :))) many thanks!

vague cedar
#

guys in password attack skills assessment we are given betty jayde's password do we have to figure out the username?

#

first

storm elk
#

Sharing accounts is against ToS

fathom pendant
#

ah it was cleared up kek

#

gotta love when my brain isn't fully functional yet

waxen totem
fathom pendant
#

my mind also happens to be a vault sometimes (never anything actually important)

waxen totem
fathom pendant
#

methodology; i engage with the socratic method of teaching. Asking questions to help engage the student with understanding how to link concepts together

#

i.e. "what does this tell you?" when looking at scan results or important text files

tropic cove
fathom pendant
tropic cove
#

That you do

fathom pendant
#

no idea what it does i never looked too deep into it; but also that's completely unrelated to this channel

#

i suggest reading #welcome to see what this server is about

tropic cove
#

Ok

mossy totem
#

I am stuck at Skill Assessment in Password Attacks. Need help for nudge

brave field
#

Is this statement correct?

raven oriole
#

i have been struggling with getting the admin password for question in passwords attacks module on the credentials hunting in network shares
can anyone give me a clue on this

fathom pendant
# brave field Is this statement correct?

yes, the PHK is what fingerprints the server;
Say you always ssh to somewebsite.com and suddenly that signature changes because some malicious actor somewhere in the DNS chain changed the resolution of somewebsite.com to their own website, they can't fake that signature and you'd be prompted with it. Likewise (and this is often the case when you do and redo enough modules) you'll get a message that says "oh this host already exists in your .ssh/hosts file or something along those lines.

#

like how browsers will generally alert you when there's a certificate error or mismatch when browsing websites, "hey this information doesn't match what is stored, are you sure you want to continue?"

minor hinge
#

Hi everyone,
does someone know in Module "Dynamic Port Forwarding with SSH and SOCKS Tunneling" Pivoting Tunneling and port forwarding how to make nmap scan the RDP port in the machine and not return "filtered". I can connect via RDP and proxychains, but nmap does not say its open, just filtered: I used this for example: -v -Pn -sT -p 3389

sacred rock
minor hinge
faint hamlet
fathom pendant
#

server needs to know that you exist, and are who you say you are (say if there's some additional filtering in place)

#

if you feel that this is a problem with the reading though feel free to submit over in #1234357888114364508

waxen totem
#

This is an English only server

sacred rock
zenith helm
#

Hey all, is there anyone I can DM for a sanity check on AI Red Teamer - LLM Output Attacks Skill Assessment? I have an idea of what I am attempting to do as I have gone through module material ideas, but no jackpot yet.

sacred rock
#

Probably ligolo-ng is the most used alternative right now, chisel too.

#

Correct you do. Same for chisel.

rancid aurora
#

Hi

waxen totem
#

For pivoting you'll most likely need to transfer an agent to work unless you know enough ssh and ssh is installed on the target and pivot box and you have root access on the pivot box to create tunnel interfaces, but that's getting too complicated.

#

It's all up to preference and the scenario, they both can do port forwarding and socks proxy

rancid aurora
#

Hi everyone, I'm still stuck at the firewall and IDS/IPS Evasion- Hard lab

silver fable
faint hamlet
#

yep, you want an agent on the network where you want to pivot to.

waxen totem
#

I'd probably just transfer nmap over to the machine connected to the internal network

#

Then yeah you'd need either chisel+proxychains, or MSF, or ligolo to pivot to that internal network

fathom pendant
#

that's not how that internal range works for 172

#

at least use the proper range lol

#

it's just as bad as hollywood using 274.295.499.231

#

i don't need the snark.

#

very funny

#

i mean it's still not an internal range, but at this point it'd just be passive aggressive back and forth

waxen totem
#

It is, you put 170.16.10.0/24

fathom pendant
#

^

#

lol

waxen totem
#

ngl didn't read the ips the first time just assumed they were right dogekek

#

if you had a server on that IP it'd be public so the whole pivoting thing wouldn't apply

fathom pendant
#

technically the cidr for the 172.x.x.x is 172.15.0.0/16 from the range 172.15.0.0 -> 172.32.255.255 if i'm remmebering correctly

#

it's either 172.32 or 172.31

#

it's a narrow range ik that

#

ye you wouldn't need a pivot on a public IP lmao and tbh, i probably wouldn't have given a second thought to the 172 start tbh "eh close enough" kinda thing

#

but in all reality that 172 private range is just one of the more weird ones to remember

#

i'm just needlessly pedantic at times

waxen totem
fathom pendant
#

just don't want to confuse others that stumble into and read this

fathom pendant
#

if you ever see APIPA on your network: you fucked up

#

anyway i think i derailed the chat enough for now, i need breakfast... or at least to wake up a bit more

prisma wing
autumn pilot
#

neo4j:neo4j

prisma wing
#

Thank you, i've tried that already and it does not work

fathom pendant
prisma wing
#

Ah my bad! there was a spcae after the username

autumn pilot
#

That set of credentials work for the bloodhound ui

prisma wing
#

Got it thank you!

prisma wing
fathom pendant
round marten
waxen totem
round marten
#

fair

rain mirage
#

Find additional information about the specific share we found previously and submit the customized version of that specific share as the answer.

what is this question asking .. and what does this mean when it says customized version

storm elk
#

why?

#

Why?

#

-top secret-

#

This is an educational server.

feral hawk
#

yo im learning web security and trying to find vulnerabilities and tryin to find admin panel but im stuck at a step for hours can anyone help pls

craggy edge
#

this is the best

feral hawk
#

I'm not doing a module from any platform — I'm practicing on a real site (not behind login) just for educational purposes. I'm currently trying to find the admin panel (admin hunting)

fathom pendant
feral hawk
#

then at what channel should i go

storm elk
#

do you have permission to test this?

#

if not - you're up to illegal activities - no place for that in this server

feral hawk
#

It’s a free practice site made for learning web security totally legal and safe to test on... i cant chat on general chat i dont know why

storm elk
#

Your question might be a better fit for #web

young gale
#

What is the NTLM hash of NEXURA\Administrator?
Skills Assessment - Password Attacks

I found credentials, conducting pivoting now i cannot connect to RDP for some reason, does anyone know if i should try nmaping the environment?

#

only tcp/53 exists

snow mirage
#

Rdp inside an rdp

young gale
#

i resetted the machine and it's doing the same thing again

snow mirage
#

are you using the windows rdp or the attack box rdp?

young gale
#

wait can i send u the ss i took in dms?

#
  1. I started ssh -D 9050 (this port is in the proxychain config) then i gave it's IP and user and signed in.

  2. performewd a ping sweep in the environment to see what other network interfaces i can access to pivot to
    64 bytes from 172.16.119.11: icmp_seq=1 ttl=128 time=2.18 ms
    64 bytes from 172.16.119.13: icmp_seq=1 ttl=64 time=0.016 ms

  3. I then tried xfreerdp with proxychains on the attacker machine above was in the internal network

  4. then it didn't decide to work when i wanted to accept the cert to auth to the RDP

#

Wait thats weird i tried to jump into the JUMP01, and it said the cert thing..

sick depot
#

can anyone help with win priv esk skills assess 1

fathom pendant
#

-s reads from stdin

sacred rock
fathom pendant
#

: is a function call

young gale
main ridge
rustic sage
#

anyone have a hint on where to go after hwilliam in Passwords Attacks assesment? i checked his desktop and smb shares but didnt find anything

fathom pendant
main ridge
fathom pendant
#

Also module is above tier 0, so spoilers

quartz sundial
#

Hello everyone!

I decided to refresh some memories after passing CPTS, I open one of the modules and start the virtual machine. And the virtual machine does not correspond to what is written in the module. In this case, the user should have SeDebugPrivilege rights, but for some reason it do not. The module is dedicated to the method of increasing privileges via SeDebugPrivilege, I start the virtual machine at the end of the module.

https://academy.hackthebox.com/module/67/section/631

What should I do?

sacred rock
storm elk
#

hey jarvis

light idol
#

hello everyone,

twilit cape
#

Do you recommend finishing networking first and then moving on to Linux fundamentals, or is it possible to do both at the same time?

fathom pendant
#

i mean you can't do 2 modules at once, generally, but i suggest focusing on one topic at a time

light idol
#

i am stuck in this question from Infiltrating Unix/Linux , Shells & Payloads ... the question is : Exploit the target and find the hostname of the router in the devicedetails directory at the root of the file system.

#

metasploit shows these

quartz sundial
fathom pendant
#

also: you can't share images since your account isn't linked

viscid epoch
#

did you get it ?

junior fjord
#

I am facing problem in password attack skill assessment, I am going crazy 😧

viscid epoch
junior fjord
#

Please help, since 4 days i am trying

fathom pendant
#

so you pivot through that

junior fjord
fathom pendant
#

and there may or may not be open SMB shares 😉

junior fjord
#

Ya 1 internal IP has open smb shares

junior fjord
#

😉

fathom pendant
junior fjord
#

139 is open

#

Port on main DC

reef holly
#

Hello. For "Firewall and IDS/IPS Evasion - Hard Lab" I ran nmap -sS -sV .... --source-port 53... etc and it found the open port in question. Then I tried to apply what I learned in the lecture and run netcat to attempt to login using source port 53. That port was "occupied" on the local_host by dnsmasq. I proceeded to kill that process, reran the netcat and got the flag. The question is why did nmap work using source port 53 while netcat did not?

fathom pendant
reef holly
tranquil axle
viscid epoch
vagrant pendant
#

Does anyone know in DACL attacks2 logon scripts module are the users supposed to login autmatically for the exercise questions. ive foudn the attack path and added the logonscript but it says the target user has not logged in at all ?

tranquil axle
vagrant pendant
gray yacht
#

You can also DM to avoid spoiling.

placid haven
#

Hi, I am having an issue with the flag I gained through the ncdu exploit from Linux Privilege Escalation: Environment Enumeration. When trying to submit the flag from /root/flag.txt I always get "Incorrect Answer". Tried to refresh, logout and login again, restarted the lab and the target as well. Any ideas what I could do? I mean it sure won't be another flag in a different directory right?

gray yacht
fathom pendant
#

yeah this section isn't about exploiting anything

#

just looking for potential flags in a file on the system. (may not be a .txt file)

placid haven
#

Got it, thanks

covert pine
#

Tapping Into ETW
Practical Exercise

I am currently doing this module, made it onto the practical part, did everything correctly but when i go to the etw.json file and look for ManagedInteropMethodName using ctrl F, the closest I get to the answer is TdhGetEventMapInformation or TdhGetEventInformation. I even tried redoing the SILKEtw and it still did not work. Im not sure what i did wrong? If anyone able to help, DM me or @ me please

junior fjord
#

I am mad !

fathom pendant
junior fjord
#

Please help me it's my 4 hour

fathom pendant
#

did you try blanks?

junior fjord
#

To try with blank password

fathom pendant
gray yacht
#

Did you update your hosts file?

south crystal
#

hmm with the dc01 ip or the another?, do yo u have an example?

gray yacht
gray yacht
icy egret
#

Hello,

Guys, I need help with getting OneDrive password for mcharles. I dont really understand what is going on there,

How I can run cmd as admin?

I am not having any progress after loggin in as rdp......

gray yacht
icy egret
#

I am trying,, the section was moving as sadams user but used mimikatz.exe as admin. i am wondering how he was able to get admin access.

faint hamlet
#

Follow the module 😅
All of this was also explained in module, but I find above share method to be more practical and easy

fathom pendant
#

please don't share spoilers for modules above t0 :)))

fathom pendant
icy egret
gray yacht
fathom pendant
gray yacht
fathom pendant
#

the hint mentions UAC bypass (and that's generally for mimikatz, lazagne works just fine)

keen fiber
#

Hi all, I have a question concerning the Active Directory Enumeration & Attacks - Privileged Access: I can't get SQLAdmin code execution to work for PowerUpSQL.ps1. Happy to provide more details in DMs, but don't want to spoiler anything. Did anyone got it to work and can share their approach?

junior fjord
#

Please one more !

fathom pendant
#

you should have all the tools and info to get through this on your own

junior fjord
#

I am using smbcliet

fathom pendant
#

proxychains is gonna be the tool to use through this type of proxy

junior fjord
#

Ya wait

#

I am doing like this

#

It says "not enough" 😧 ?? But what ?

fathom pendant
#

i think proxychains breaks some stuff

#

also learn how to take proper screenshots/rotate images

#

breaking my neck trying to read that

junior fjord
fathom pendant
#

i'm already judging you for runing around your system as root shell ¯_(ツ)_/¯

#

but also maybe that's not the only system in the subnet that has smb enabled

#

nxc is a decent tool for mass enumeration as well

fathom pendant
#

actually taking a look at it more

#

did you search for a keyword on the file system as the initial user?

faint hamlet
# junior fjord

Try it with -N -L, I remember arrangements of arguments causing issues in smbclient

fathom pendant
sick depot
#

Can anyone help with win priv esc skills assessment

faint hamlet
junior fjord
#

It says smb not available but port 139 is open

#

Still stuck

gloomy geyser
#

LLM output is interesting to play with

paper nest
storm elk
#

Just a gentle reminder. If you see that someone was given permission to dm someone for some help with a module, that doesn’t give you the permission as well. Always ask for permission before DM’ing someone. #rules

wise crystal
#

Is somebody able to help me with DNS? I’m in the Footprinting module and the last question it wants is the FQDN with a last octet being .203

I’ve been running wordlists from seclists/Discovery/DNS

And been finding absolutely no hits and I’m lost afff

acoustic owl
#

You need small lists. Lists with 5000 entries or more are too large

wise crystal
#

So I should just wc whatever’s in the DNS folder and run those?

#

And I’ll rephrase from I’m not getting the hit I need, I keep getting the same other 3 that keep getting hits but they’re not my task

solar arch
sacred rock
green shuttle
#

hi anyone knows the reason for this in pass the certificate section , new password module └─$ impacket-secretsdump -k -no-pass -dc-ip 10.129.75.174 -just-dc-user Administrator 'inlanefreight.local/DC01$'@dc01.inlanefreight.local

Impacket v0.12.0 - Copyright Fortra, LLC and its affiliated companies

[] Dumping Domain Credentials (domain\uid:rid:lmhash:nthash)
[
] Using the DRSUAPI method to get NTDS.DIT secrets
[-] 'NoneType' object has no attribute 'getRemoteHost'
[] Something went wrong with the DRSUAPI approach. Try again with -use-vss parameter
[
] Cleaning up...

sacred rock
fathom pendant
green shuttle
solar arch
fathom pendant
#

After going back and forth; i like the new Password Attacks skill assessment and looking at the solution-- kudos to the writers for using ligolo

#

though i did find a minor typo in the official solution kek

tropic wind
#

for The Live Engagement in shells & payload am i meant to have a browser in the RDP? I see webservers running on multiple of the IP's but firefox or chromium isnt on the rdp and my only option seems to be curling

fathom pendant
#

:)

tropic wind
#

ah, i wasnt sure cause the application wasnt showing on the search, thanks lol

fathom pendant
#

you rarely need to be running around as root

tropic wind
#

ah, i entered as root cause i was testing perms i wasnt really thinking about it

#

worked, thanks!

fathom pendant
#

yeah; root tends to mess things up kek

hexed oyster
#

how do I get burp suite chrome to not connect to https?

fathom pendant
#

though i don't generally use the burp browser

hexed oyster
fathom pendant
#

there's probably some other setting i'm forgetting about for chrome

hexed oyster
#

TEAR IT DOWN AND START AGAIN!

#

@fathom pendant you're probably right in that it's something on my end. I'm restarting burp.

fathom pendant
#

i generally just use firefox and foxyproxy with burpsuite

hexed oyster
fathom pendant
#

well i should say i have foxyproxy set to use 127.0.0.1:8080 since that's what port burpsuite uses; you'll also need to install the burp CA -- you can find instructions in the using proxies module and on the burp website

tropic wind
#

ive been struggling on the upload host for a minute, i see that theres a .zip/tar.gz upload, but i cant install foxyproxy as an extension and burpsuite browser keeps saying google.com isnt valid

#

I'm assuming its meant to be a aspx upload and changing the file extension through burp

#

Nvm, i got access through the hint using tomcat

vital zodiac
#

is there anyone can help me for this question:

Download additional_samples.zip from this module's resources (available at the upper right corner) and transfer the .zip file to this section's target. Unzip additional_samples.zip (password: infected) and use IDA to analyze orange.exe. Enter the name of the function that is holding the name of the file intrenat.exe that orange.exe drops as your answer. Answer format: sub_4XXXX3

#

Module "Introduction to Malware Analysis" in "Code Analysis" section Q2

cunning osprey
#

Brute-force vhosts on the target system. What is the full subdomain that is prefixed with "web"? Answer using the full domain, e.g. "x.inlanefreight.htb"

I enumerated the vhosts with ffuf and found a lot of domains prefixed with web and none of them worked.
Also can't you just guess that the answer is "web.inlanefreight.htb" or am i completely missing the point of this ?

main ridge
#

Not a question. I have been using academy for over 2 years and it's incredible how bad VPNs and connections are working right now. It's annoying for a paid service to works like this.

steep forum
autumn pilot
#

have you reached out to support to troubleshoot your VPN connection

main ridge
# steep forum Did you try switching your server?

Yes, the complain comes because in the past few months I've noted it getting worse, constantly having to switch servers and lose everything you've uploaded to the target is frustrating. The problem is mainly with Windows hosts

steep forum
gusty cape
#

Hey everyone! 👋 I’m working on one of the HTB Academy web server exercises. I’ve uploaded a PHP reverse shell (with the correct public IP and port pointing to my external VPS), and I have Netcat listening — but I’m not getting any connection at all.

I’ve tested different ports (80, 443, 4444), disabled the VPS firewall, and even confirmed from another machine that the listener is reachable. Everything seems to be set up correctly.

Is it possible that the Academy web servers are blocking outbound connections entirely? Just trying to confirm whether it’s a setup issue on my side or a restriction on the lab environment. Thanks in advance!

rustic sage
#

good evening guys, there is someone who completed the password attack skill assessment that can help me a little?

Thanks!

sleek marsh
#

Assuming you've port forwarded correctly?

pulsar needle
#

idk I just use Ligolo-ng, I never mess about with any other tools if Ligolo-ng can do it.

candid vine
#

same erro with secretsdump.exe

harsh gorge
#

I keep having issues with Windows Lateral Movement Winrm - Connect to DC01 as Leonvqz and read the flag located at C:\Users\Leonvqz\Desktop\flag.txt and for whatever reason DC01 wont budge, as anything. Basically, the PSession will not be able to connect back to further hosts because of the double hop problem. But the workarround that the module suggests simply does not want to work for me. I've already tried importing the ticket inside my session for Rubeus but other than that I have had no success in getting another session into DC01. If anyone can help me, i'd really appreciate it

#

Here's the module for your refrence

#

Also what does it mean by further authentication?

idle thicket
snow spoke
steep forum
#

You have to resolve the domain controller's ip address to its hostname in the hosts file.

sleek marsh
#

Anyone got any hints for the LLM Output Attacks Skills assessment? the LLMPic's one

fathom pendant
snow spoke
fathom pendant
snow spoke
#

oop lol see this is why im quiet haha

fathom pendant
#

Yep, i try having creative hints

fading basin
swift anchor
#

hellow

#

can someone help me how to connect vpn trough my laptop

stuck hollow
swift anchor
#

any bro

#

i cant find any vpn thats free

stuck hollow
#

can u provide more context please?

#

dm me if u want

silent ivy
#

I thought you were talking about the HTB vpn's

stuck hollow
fierce valley
stuck hollow
#

they give vpns at end of exercices

stuck hollow
fathom pendant
fathom pendant
#

it seems like some firewall rules somehow in your vm that aren't in your host OS if you had to use an external vpn service to attack a public ip and port

#

@candid vine refrain from sharing passwords from the module; as i believe most of the passwords in that module you had to at least do some effort to dig/uncover first

valid gull
dusky light
somber sonnet
#

for the Introduction to Digital Forensics - Skills Assessment, where did you guys get the memory dump for analysis?

violet remnant
#

Hello, would anyone be able to provide a nudge for the Password Attacks: Skill Assessment? I'm stuck in JUMP01. Thanks!

fathom pendant
violet remnant
fathom pendant
#

as a note; once you get the shares thing down (nxc is a great tool) don't forget to enumerate the desktop if possible :)

fierce valley
crimson moon
#

how do you format base64 characters to a single line?

i tried cat base64.txt | tr -d '\n\r' but no

Also, base64 -w 0 base64.txt (but this converts the text file to base64 format and not into a single line output)

fathom pendant
crimson moon
#

python3 /opt/PKINITtools/gettgtpkinit.py INLANEFREIGHT.LOCAL/ACADEMY-EA-DC01$ -pfx-base64 MIIStQIBAzCCEn8GCSqGSI...SNIP...CKBdGmY= dc01.ccache

crimson moon
#

bleeding edge vuln section for requesting TGT

fathom pendant
#

likely due to impacket versioning differences, 0.12.0 saves it as a .pfx file usually not the b64

crimson moon
violet remnant
#

is it okay if I send you a dm?

fathom pendant
fathom pendant
violet remnant
#

the shares for Password Attacks: Skills Assessment

topaz lantern
#

How can i be great hacker…writing my own codes

compact patrolBOT
fathom pendant
waxen totem
#

Nothing like remoting into a machine only to remote to another machine. 2987zerotwo

topaz lantern
#

What are the basis?

fathom pendant
fathom pendant
violet remnant
#

ah let me rerun that - I overlooked something last night then

fathom pendant
topaz lantern
fathom pendant
#

you need to know how password attacks are done; how protocols authenticate; how to do multithreading... etc

#

this is getting off-topic for this channel; i suggest reading and following instructions in #welcome to access #programming where people may be able to give you some pointers on where to start

#

well we can't help you if all you're doing is re-asking the question it's giving

#

i suggest re-reading/going over notes you may have taken on the IDS/IPS evasion reading section within the module;

crimson moon
pliant comet
fathom pendant
#

nmap may not give you all the info you need; and running those scripts really won't do what you think they're doing.

pliant comet
#

some people have said to connect to it once have found the port, tried netcat and telnet and both refused

fathom pendant
violet remnant
pliant comet
fathom pendant
pliant comet
fathom pendant
#

@pliant comet i deleted your other messages because you spoiled module info

#

specific ports and stuff like that would be considered a spoiler

fierce valley
soft valley
#

new to HTB and learning the linux fundamentals and in my workstation i have 0/1 spawns left. was wondering if there was a way to get another without waiting for the timer to give me another other than buying a subscription?

soft valley
fathom pendant
#

i believe so yes

soft valley
violet remnant
#

@fathom pendant completed the Skill Assessment! Thanks much for the nudge!

haughty shore
#

fqdn

boreal vessel
fathom pendant
# boreal vessel Hi I need some help with Skills Assessment - Password Attack: https://academy.ha...

i'll give a few general hints on the password attacks skill assessment since it's not clear what portion of the SA you're on.

  • ||for foothold: username-anarchy||
  • ||initial foothold: grep can be useful to search for patterns||
  • ||PIVOT||
  • ||h* sharing is important||
  • ||check desktop||
  • ||try all discovered passwords and different protocols (NXC is useful, you can put a list of the different internal hosts in a file)||
  • ||b* mimimimimi||
  • ||s* spray and dump||
    Usernames intentionally left obscure, but you'll know when you get there, each hint is individually spoilered by step. Hopefully these are useful for you, even if vague
#

deleted because direct spoiler; but you can use hashcat --example-hashes and grep for a keyword to see what it may be (you can also go to the hashcat website and search the keyword)

#

ignoring case of course with grep, and the line that gives the hash mode is just before the line it'd be in so -B 1 is also useful with grep

fathom pendant
#

sure i'm just now getting to redoing my notes on the module fully i ran through it on a different computer that didn't have my notes earlier

storm elk
#

Don’t forget this @fathom pendant for your toolset

#

To crack the passwords

fathom pendant
storm elk
#

wow nice!

fathom pendant
#

it creates the "drop down" nesting

icy egret
sage oyster
#

Has anyone had problems with graphqldemo in attacking grapghql ?

icy egret
#

finally, i am able to get the admin priv, but still i am not able to find mimikatz.exe((((((

inland grove
#

👋 General question. If I buy annual subscription, which unlocks every module to Tier3. Once subscription is done, do I keep the access to the finished modules? Or how its handled?

fathom pendant
#

depends on the something

rancid fog
#

Like how to

fathom pendant
rancid fog
#

Why was the message deleted

fathom pendant
#

you don't. You gotta wait for it to expire. We don't help with hacking discord api or anything like that

rancid fog
#

Ok

fathom pendant
#

as that goes against the #rules as it's illegal

#

if you want to learn ethical hacking, that's what this server is for, it revolves around the ethical hacking training provided by hackthebox mostly for free; you can see #welcome for info about the server

compact patrolBOT
faint hamlet
fathom pendant
#

ah misread their statement

fathom pendant
icy egret
fathom pendant
#

was the method the xfreerdp ... /drive:linux,. ? otherwise you can start a python http server and use curl to grab the exe

icy egret
fathom pendant
#

when there's no internet on the box you'll need to get creative

#

otherwise it's not file transfer, it's just downloading the file

#

file transfer means moving the file from one machine to another attacker ↔ target or one target ↔ another target

thin citrus
#

I am at the final skills assessments Parameter Logic Bugs - dowload the the .zip file extracted and opened in vcode. I am able to build the image and ran the container. But the debugger does not connect. Does anyone has the same issue?

fathom pendant
#

i generally suggest not getting in the habit of starting the driveshare from your current directory, rather from a predefined directory or a directory like /tmp/share (you'll have to mkdir /tmp/share)

icy egret
junior fjord
#

I AM BACK AGAIN WITH NEW DOUBTS ! I DOING THIS :- Login Brute Forcing, brute force attck. its simple but it takes very long time coz of my PC is very low end i reached here but dont get anythinig please tell me where i got hit ? like on 5000 ? 6000 ? 3000? because my PC sucks after 5000 tries

#

AND BTW, yesterday's PASSWORD ATTACK MODULE is still not completed 😕 , not getting anything