#modules

1 messages · Page 140 of 1

shut wraith
#

Hmm I see

runic rampart
#

Good evening! Friends, help me figure this out.
Introduction to Digital Forensics:During our examination of the USN Journal within Timeline Explorer, we observed "uninstall.exe". The attacker subsequently renamed this file. Use Zone.Identifier information to determine its new name and enter it as your answer.

carmine osprey
#

For the HTB footprinting medium lab, I’ve gotten the admin password and am into the mssql server. However, I can’t find the user password for the account HTB. I’ve searched high and low and I feel I’m overlooking something. Pointers?

rustic sage
carmine osprey
pearl crystal
#

I heard hack the box doesn't hold hands in teaching is that true

soft plume
#

Hey I'm doing the intro to linux and on a practice I have to get a username and a UID and replace the spaces with commas, whenever I get rid of the white space and add commas it'll just print the whole line (cry0l1t3,x,1001,1001,,/home/cry0l1t3,/bin/bash) but I want to get (cry0l1t3,1001) cat /etc/passwd | grep "cry0l1t3" | tr ":" "," | awk '{print $1, $3}' is what I wrote but whenever I do that awk can't pull specifically the 1st and 3rd slot. Can anyone help me with what I'm doing wrong, am I not using a argument I need?

sly dome
#

awk by default takes blank as separator

soft plume
#

thats what I assumed how would I make it take commas?

sly dome
#

awk '{print $1,$3}' FS=','

#

should do the trick

soft plume
#

sweet

#

what does FS stand for?

sly dome
#

im not on the pc and i donnot remember it by head

#

Field Separator

#

tell me if it works

soft plume
#

its giving me cry0l1t3 1001

#

no comma between it 🤔

sly dome
#

you can skip the tr step and do FS=':'

#

add the comma after

sly dome
#

cat passwd | grep | awk FS | tr ' ' ','

soft plume
#

ok lemme try

sly dome
#

the final step is TRansform space into a comma

#

the comma inside awk print is to select different fields

sly dome
soft plume
#

cat /etc/passwd | grep "cry0l1t3" | awk '{print $1, $3}' FS=':' | tr ":" ","

#

like that? and no worries haha

sly dome
#

yeee try

soft plume
sly dome
#

noo

#

the tr is ' ' instead of ':'

soft plume
#

Do I put fs in the '' awk

#

ohhh yea I forgot we transformed it to space before

sly dome
#

TRansform space into a comma

soft plume
#

then we do space to comma

sly dome
soft plume
#

lets gooo!!! thank you for the help

hushed jewel
#

.

sly dome
#

any time dude

soft plume
#

yea I gotch you, so in the AWK we are using the field separator which seperates it with space

hushed jewel
#

Real quick, how can I verify in this server for roles etc?

soft plume
#

and we take space and make it into a comma

sly dome
#

we tell awk hey the colon (:) is the field separator

#

take 1 and 3 by counting colons

#

and then we want the space to be a comma

#

ez

soft plume
#

yurrr appreciate you homie\

sly dome
#

ayeee

soft plume
#

shit was confusing me haha

sly dome
#

😴 good night

soft plume
#

night night bro

sly dome
acoustic owl
hushed jewel
#

I already figured it out on my own, thanks though. I should learn to read a bit more!

orchid pine
#

Hello guys

#

One question

#

If i have local admin on the DC

#

can i hunt for golden ticket

#

To get the domain admin

#

I was in my bed and i had this idea

#

Is it possible

acoustic owl
#

No, you need the password hash from krbtgt user

orchid pine
#

But i have local admin on the dc i can just dump the hashes to get the kbtgt

#

Thenn forge a golden ticket to go domain admin

#

I was googling but i didnt find the answer im looking for

acoustic owl
#

I am not sure if this will work.
You can try it

hallow kiln
#

pretty sure it wouldn't work, local admin has nothing to do with active directory (except possibly being an AD user, which isn't going to let you dump the hash unless the user has DCSync rights)

orchid pine
#

Yeah i found it

#

Thank you tho

#

Thank you payload and arthos

thorn urchin
#

secretsdump can do a lot more than just dcsync

cursive glacier
#

Exploiting web vulnerabilities in thick client apps module is unbelievably frustrating

peak rover
#

Thanks

#

I got engaged on THM it was quite interesting while learning Linux

#

and on HTB if the virtual machines are of the AttackBox type as in THM?

#

I'm just from Russia, I apologize for my English 😅

sage laurel
#

Hi, first message here.
Have someone done the "Intro to Assembly Language" skill assessment? I've been hardstuck for 3 weeks, there is only one thread in the forum and I'm not able to reproduce what other people did to achieve the flag, link to thread is https://forum.hackthebox.com/t/htb-academy-intro-to-assembly-language-skills-assessment-task-1/4164
I've tried everything, I'm already thinking in putting this Skill Assessment apart and continue other paths. Any advice/hint/help would be very much appreciated.
Cheers.

orchid pine
tranquil axle
naive wadi
#

Can someone tell me I am not going crazy. In DACL Attacks I it says this

#

"Let us launch a new cmd.exe window as Administrator and use the credentials of Pedro to confirm we have the appropriate access rights/privileges:
Pedro with Backup Operators Privileges"

#

But then shows this

#

Surely that means that the user does NOT have the privileges?

#

if so I will post in erratum just want to make sure I am not missunderstanding something fundamental?

analog dock
naive wadi
#

Is there a term for this so I can look into it more?

analog dock
sage laurel
# tranquil axle what have you tried so far and where are you stuck?

I've done so far:

  • Dumped the assembly code and added a label to loop through the stack and xor the rdx register with the key stored in rbx
  • Copied every iteration from $rcx = 0xe all the way to $rcx = 0x1, (the 14 iterations) and joining the contents of $rdx, removing the 0x and run the whole thing with the loader.py script. The only result I get is a red dollar prompt that ends whenever I press return. Also echo $? returns 0 so it ran correctly, but I have no clue where the hell is the flag.
sage laurel
tranquil axle
#

dw, what bytes is your extracted shellcode starting with and what bytes is it ending with? just making sure you concatenated correctly

tranquil axle
#

the starting bytes sound good, it should end on f05 and I dont have bd7 anywhere in mine

sage laurel
slate shell
#

How did u guys get through the permissions denied when trying to open the folder mounted during footprinting medium lab

fathom pendant
#

Got good

sage laurel
#

Now, to Task 2, wish me luck! 😃

fathom pendant
slate shell
fathom pendant
#

I think there's like norootsquash or no_root_squash but also you can su to root and browse that way

crimson walrus
#

hey guys, quick question about ffuf. Does anyone know if it is possible to filter by response size with greater or smaller than?

fathom pendant
#

Yes

#

I think

#

You can do man ffuf or ffuf -h and it tells you all the flag filters

crimson walrus
#

I checked them and I also looked online but it doesnt work. It says I can filter the response time by using >100 or <100 but the same doesn't work for response size

fathom pendant
#

Well you might need to use a backslash to escape the arrows

#

Because otherwise bash treats it as a redirect

tranquil axle
fathom pendant
#

^

#

That's what it is

#

Also it would be -ms

#

Because m is to match

#

f is to filter(out) I thought

crimson walrus
#

thanks a lot guys

naive wadi
#

has anyone done DACL Attacks I mini module? I'm on the addmembers abuse part and for question 1: I have answered it and got the flag, but unsure how... as we are told in the module that to use abuse the ||addmember|| acl we need one of the following privileges ||GenericAll, GenericWrite, Self, AllExtendedRights, or Self-Membership|| but when I enumerate the privileges the user has over the group he has none of them but can still perform the attack?

#

I know this is a gap in my knowledge.

#

having the flag is nice and all but is not going to serve me well If I don't understand the mechanism behind it

analog dock
#

Are you running ps as admin?

naive wadi
naive wadi
#

Will reset and see if it does the same again

naive wadi
#

then relaunched PS without admin creds and could still add the user with the privs listed there

analog dock
#

You have extended right priv you say

naive wadi
#

I thought you needed AllExtendedRights?

#

Just as that's what it says in module.

analog dock
#

I believe certain extended rights can be set, and in this case you have the extended right to fulfill the task

#

Haven’t done the module myself

open night
#

Hi guys, I'm new here. Who is willing to guide me through?

high zinc
#

sorry dude, but you gotta spend more than 5 seconds

open night
#

Common guys, I believe you were all novices at a point

high zinc
#

we were indeed, but if you don't care about spending more than 5 seconds reading the pins, the channel description and such, you won't get far

novel matrix
naive wadi
analog dock
high zinc
naive wadi
#

I've been speaking to the writer of the module so will give them a shout too

analog dock
analog dock
naive wadi
naive wadi
tame ivy
#

Hello everyone, Module:Linux Priv Esc,Section:Linux Services&Internals Enumuration, that ask which version python is installed, i did python --version and it says 3.8.10, but answer is incorrect, could anyone help please?

acoustic owl
rustic sage
#

really stuck on the "RDP and SOCKS Tunneling with SocksOverRDP" section in the port forwarding module my issue is with proxifier its not connecting to 127.0.0.1 on port 1080 but i ran the netstat command it says listening not sure why ive tried running everything as administrator and ive also tried to use both socks4 and socks5 any ideas? maybe a firewall issue or something?

keen compass
keen compass
rustic sage
keen compass
#

ATTACKING COMMON APPLICATIONS > Attacking Joomla > Leveraging Known Vulnerabilities : I don't understand how to "find" the CVE used in the course. From the enumeration, the server version is 3.10.0. But the course explains that we can use a CVE affecting 3.9.4 and below versions... How am I supposed to guess that I may try versions where this vuln should be fixed ?

keen compass
rustic sage
#

where is nc exe located its not on the server

keen compass
keen compass
# rustic sage where is nc exe located its not on the server

I just says this as a basic troubleshooting exercice :

  • check that the service is listening on TCP/1080 (you did it using netstat)
  • check that you can connect to it (first locally, next, remotely)
    If previous checks are passing, there should be no reasons for it to not work (except if the SocksOverRDP-Plugin.dll is kind of screwed)
rustic sage
#

if the command is nc.exe 127.0.0.1 1080 no its not connecting

keen compass
rustic sage
#

just done that still doesnt connect

keen compass
rustic sage
keen compass
rustic sage
keen compass
tame ivy
#

Module:Linux Priv Esc,Section:Kernel Exploits, i did everything that was written, but there is error, could anyone help me?
./exp1: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34' not found (required by ./exp1)

keen compass
keen compass
tame ivy
#

oh yeah, i have compiled on my local machine, and trasfered to target, is that a error?

rustic sage
#

ran the proxy checker says testing failed

keen compass
tame ivy
rustic sage
#

@keen compass working now not sure how but it is

keen compass
# rustic sage yes just says could not connect to proxy 127.0.0.1 1080

I just realized I gave you wrong informations.
Proxifier is not listening on 1080 (it's not listening at all in fact)
When you connect using mstsc after registering the DLL you must have a dialog box that prove the DLL is loaded properly.
Then, when you run the SocksOverRDP-Server.exe the mstscclient starts listening on 1080 (on Client computer, not server).
Finally, starting proxifier on the Client enable your next mstsc client to be forwarded through the local socks proxy and get forwarded through the SocksOverRDP-Server.exe on the server.

If proxify is not run as elevated (UAC), it will not "catch" mstsc.exe traffic (but will not complain).
If you run it "as administrator" it will "catch" mstsc.exe traffic and forward it through the local socks proxy.

One last thing : by default, when closing proxifier, it just minimize. So if you run it as "simple user" first and closed it, check and close it from the tray before running it again "as administrator" or it won't work.

hybrid prairie
#

Are there any modules that focus on stealth and leaving no trace of entry?

lusty thicket
rustic sage
shut wraith
#

Good morning hacksters

crimson walrus
#

Hey guys, for the Reporting module: it can be completed without this, however, one of the unfinished findings is a command injection vulnerability. Can anyone give some tips/hints on where to look for that command injection vuln? I found the other unfinished ones - LFI and password in description field.

keen compass
rustic sage
#

in PIVOTING module in Web Server Pivoting with Rpivot section
in the last question i should go the the web server and submit a flag yet just the default apache index page is available. what do I miss here?

keen compass
rustic sage
keen compass
rustic sage
#

even escalated privs to find flag in the /root dir, nothing in there

keen compass
rustic sage
#

on the client (victim machine):

#

on the server (my attack host):

keen compass
#

when running firefox, do you see connnection logs from proxychains ?

rustic sage
keen compass
rustic sage
keen compass
#

(sorry to ask, I didn't took any notes since it was very straightforward)

keen compass
#

the webserver is supposed to be on the internal network

#

not your bounce host

rustic sage
#

ok got it

keen compass
#

scan for another host from your pivot host then connect to it from your attack box using chisel + ff

rustic sage
shut wraith
#

Hey anyone available for a question on FIle Uploads?

sudden blaze
#

hello everyone. I got a question about module WHOIS second question: What is the admin email contact for tesla.com? is it n.....@n....com

lusty thicket
sudden blaze
#

i have it as the answer

#

but im not sure if they changed the question

sly dome
shut wraith
# sly dome yes

Basically. I have gotten this much to successfully upload. However, if I insert the shell code it refuses to upload. What can I do?

sly dome
#

if you have passed it already go on

shut wraith
#

Should I message u privately?

sly dome
#

you're on the right track

#

keep trying

shut wraith
#

I have a question

#

Does the shell code not work ONLY if the Content-Type is not an application type?

sudden blaze
#

@sly dome yes it matters

sly dome
sly dome
shut wraith
sly dome
#

mime type is used as filter

shut wraith
sly dome
#

yea why would you?

shut wraith
#

Then why do they teach u how to change it if it doesn't need to be changed

#

Is there ever a situation to change it?

sly dome
#

it depends on the filter

#

you will see later when you get RCE

#

you can do the code review

sly dome
frozen mesa
#

USING WEB PROXIES --> Repeating Requests --> Try using request repeating to be able to quickly test commands. With that, try looking for the other flag.

I've found flag.txt but this is not the correct answer. Are there more than one to find?

Used payload ||ip=1;cat flag.txt;||

sudden blaze
#

i have a questions about moduel INFORMATION GATHERING - WEB EDITION section whois: What is the admin email contact for the tesla.com domain? anyone can help

#

i have n..........@n.....com as the answer but cant figure it out anymore

sly dome
shut wraith
sly dome
#

keep trying what more can i tell you

#

if i tell you the next step i literally give you the solution

#

use what you learned

shut wraith
#

Can u give me a gentle nudge

sudden blaze
#

lol so they changed the question

sly dome
#

🤷‍♂️

sly dome
shut wraith
#

if I insert the shell code at the end, it succeeds the submission. However, it is only outputting an error which the browser shows on the right

sly dome
#

😉

#

think!

shut wraith
#

Like Jimmy Neutron?

sly dome
#

more

#

wat section was that

shut wraith
#

Like Albert Einstein

#

FILE UPLOAD ATTACKS

Type Filters

sly dome
#

ya wrong mimetype o.O

shut wraith
#

And I asked u does the MIME type determine if execution will occur

sly dome
#

i was thinking on the skill assessment

#

no the mimetype doesnt affect the execution

feral drum
#

Good day, I have a question. I am new and I am currently studying in the academy and noticed when I click a spawned target its saying copied to the clip board, but when I try to paste it in my browser spawned attack machine the paste isnt working. I tried using the CTRL + Shift + v. PS it was working before. Can anyone assist to get it working again?

sly dome
#

the web server is expecting an image

#

and its getting another thing

#

thats the error

#

but that is because the final extension is .png

tranquil axle
shut wraith
#

But here in the module they used GIF8 and the web shell still worked

tranquil axle
#

but they didnt upload it as .gif

sly dome
#

we're doing your job here

shut wraith
#

I'm a business student they taught me to delegate work

sly dome
#

maybe upload it as the php working extension?

#

like png.phar

#

thats your nudge

#

but it was explained in white filter section

#

if it uses this regex: if (!preg_match('^.*\.(jpg|jpeg|png|gif)', $fileName)) { it does not matter if it ends on those extensions

#

only if it contains them

#

which is this case

#

you have to work harder if you want to improve

shut wraith
#

Okay thank u I will try harder

sly dome
#

well done

junior smelt
#

+77053644912

sly dome
shut wraith
#

Can I call u

sly dome
#

sure

shut wraith
#

Rafa

sly dome
#

yes?

shut wraith
#

Okay so next time if u dont help me I will give gay people ur number for phone sex

sly dome
#

bro 💀

#

gotta go eat dinner good luck with modules

shut wraith
#

Thanks for ur help see u later

tame ivy
#

Module:Attacking Common Services,Section:Attacking SQL, i have obtained a hash for mssql, cracked it, but cannot connect with it to db, for given username htbdbuser, i can login but cannot enumerate a flagDB, do not have permission, could anyone help me pls?

fathom pendant
#

Yep

tame ivy
#

oh, thanks, fucked up 10 minutes of my life

fathom pendant
#

Been there

lusty thicket
marsh marsh
#

HELLO FAMILYYYYYYYYY

fathom pendant
tame ivy
tame ivy
#

will check out this flag

fathom pendant
#

That's the help flag

marsh marsh
#

No one waved at me

fathom pendant
#

It gives you flags to use

marsh marsh
#

anyways happy to be tere

#

there

fathom pendant
lusty thicket
marsh marsh
#

lol

fathom pendant
marsh marsh
#

i said hi like

#

bro

lusty thicket
#

okay limpejohn

#

hi back

fathom pendant
#

Do you have a question about an academy module?

#

Or did you join just to attempt to troll

lusty thicket
#

both?

marsh marsh
#

i just joined the community and wanted to say hello

lusty thicket
marsh marsh
#

ok if its not allowed im sorry ig

fathom pendant
#

As I said read the #welcome you clearly skipped over. This server is related to hackthebox content, and the only way to get access to more of the server is to have a hackthebox account

tame ivy
#

Module:Attacking Common Services,Section:RDP, i set a registry key to Pass-The-Hash, but now that says login as administrator with NTLM, do i need to upload a mimikatz and try to dump it? bcs there is no hashes in this section

fathom pendant
#

Yes you'll need to dump the hash. You'll probably find the tool in C:\tools

tame ivy
#

oh there is no tools folders, okay i will upload it with via http

lusty thicket
#

😉

tame ivy
lusty thicket
#

😉

sly dome
#

always enumeration skill issue

wary dune
#

is it okay to ask for help on modules here?

acoustic owl
wary dune
#

i can't post screnshot

tidal mango
wary dune
#

okay i got verified

#

any hints on third question?

tidal mango
#

you should put which course/section your on and what you have tried so far.

wary dune
#

It's Linux Fundamentals, module System Information

fathom pendant
#

Delete the image as it contains answers

fathom pendant
#

So Google that and you'll find it iirx

#

It could also be in the environment variable

wary dune
#

Google "linux default mail path"?

fathom pendant
#

I just remember it not being straightforward

fathom pendant
wary dune
#

okay, should this module have told me to google?

hallow kiln
#

no module is going to tell you to Google, you're expected to do your own research

fathom pendant
#

^

#

This field you have to be prepared to use outside material to the course to problem solve

#

Like for instance in one of the modules it doesn't tell you how to properly retrieve an email from imap, but doing some research I found a blog that has a bunch of useful imap commands and explanations

#

That I messed with a bit in that section to further understand

wary dune
#

I see. thought the modules would contain everything

hallow kiln
#

That's just not possible, the amount of information in this field is nigh infinite, the courses gives you the methodology and a ton of tools, but research skills is something you must develop for yourself

wary dune
#

or at least 'everything' needed to pass those little questions

fathom pendant
#

They contain enough information to give you an idea what to look up

wary dune
#

okay, /var/spool/mail/htb-student didn't work

fathom pendant
#

That doesn't look correct

#

There's a different default

#

Ye it's close

#

You just added an extra word

#

I think if you type env it's there

wary dune
#

i did "env | grep MAIL" as suggested by a forum post

fathom pendant
#

It's one of those "It's dumb" type deals

noble hazel
#

Anyone here can help with HTTP Attacks: Log Injection. In the log.php I am getting back the payload <?php system($_GET['cmd']); ?>; but is not executing the php code. Anyone has a nudge? I was able to encoded with UTF-8 and URL. At the log.php I do ip.addrs/log.php?cmd=ls but nothing.

sly dome
#

<@&861185840277487616>

fallow kite
sly dome
fallow kite
#

the first 5 chars match the role name lmao

sly dome
#

yea

hallow kiln
#

I wonder what the scam entails there

shut wraith
#

Did u guys ever use a XXE payload in a document

tranquil axle
shut wraith
#

Are u still around @sly dome

sly dome
#

yes

shut wraith
sly dome
#

huh

wary dune
#

this book covers the Linux Fundamentals modules?

#

or should I start with Linux Bible?

shut wraith
novel matrix
shut wraith
#

@sly dome can you nudge me as to why this SVG file isn't being recognized as an SVG file?

sly dome
#

probably the boundary ?

#

it appears like part of the code

#

line 26 add a line break

#

section?

#

web attacks module?

#

ah same module limited file uploads

shut wraith
#

Rafa do u remember that I have ur number?

sly dome
#

true

#

why did you add SVG at the beginning of the body

#

svg do not have an specific file signature since it is just XML code

#

browsers can read and execute it

shut wraith
sly dome
#

👌

whole nexus
fathom pendant
#

I love that he's like "please buy it but like... lol you don't have to"

#

I like his book automate the boring stuff

whole nexus
#

Yeah I love when books have a Creative Commons edition or a pre-pub/wip edition from the authors. Even just buying a preorder on No Starch gets you regular updates til the full edition

#

And then, of course the book comes out in a Humble Bundle a few months later

wary dune
#

I think i'll start wit Linux Basics for Hackers by occupytheweb

fathom pendant
hallow kiln
#

not the place to ask, read #welcome and ask in #boxes, it's 100% your script tho, plenty of people have done the box

wary dune
#

Are there books that cover the same material as the Windows Fundamental module?

sly dome
#

Footprinting Medium, i have the creds for the super user but remmina is not working neither xfreerdp

#

rdesktop did not try

#

w8 i have been trolled by smbclient

stiff star
#

HTB - gofer error?

marsh rapids
#

is this the right place to ask for guidance in HTB X Academy modules?

acoustic owl
marsh rapids
acoustic owl
hallow kiln
acoustic owl
#

I can't give you much more as a hint.

marsh rapids
sly dome
#

footprinting module super cool ! but i expected the labs to be more difficult since people ask here bout them A LOT

#

finished the 3 labs in under 30’minutes big_think_onion

marsh rapids
#

ive been chipping at this module for about 3 weeks now. its disappointing because ive been working in IT for years and i guess i never learned fundamentals or never needed it

marsh rapids
#

yes

sly dome
#

i hope you spend less than 10 minutes each day then

#

coz 3 weeks come on 🤣

#

also hackers > IT average employee

hallow kiln
sly dome
#

if it is marked as 2 days it took me 10-12 hours

#

at least that is what i’ve been noticing with every 2 days module

hallow kiln
#

And then there's password attacks sadglas

#

8 hours... right

sly dome
#

but i knew a lot of the information provided from before

#

i have +80 retired machines done with a lot of notes and im seeing the concepts in a theoretical way in the modules

sly dome
hallow kiln
#

That one is an exception, you'll see

#

So far, footprinting and password attacks especially are the modules that took me the longest, I'm guessing attacking common applications will top that

sly dome
#

hahaha

#

why so long password attacks?

plain coral
#

I agree if you do Password Attacks blindly without using the forums or Discord search or getting any specific help. It'll take you more than 2 days.

hallow kiln
#

It's designed as a trap lol

#

It can take multiple hours for some brute forcing to finish running

sly dome
#

i would not count that as time for the module tho

#

you can start with another module in the meantime 🤣

#

or do the season machine for example or just go touch some grass

hallow kiln
#

Basically it makes you think something is wrong with what you're doing so you go down rabbit holes

fathom pendant
sly dome
#

i prefer to ask if i should let it running to someone who finished it, at least for something like this…

fathom pendant
#

I believe the module even tells you ssh is a slow service

hallow kiln
fathom pendant
#

I didn't take that long

#

But I also used more threads with hydra

sly dome
#

if you enumerate properly you can get rid of many passwords?

fathom pendant
#

Instead of default 16

#

No, if you use tools and read documentation you can save yourself time

hallow kiln
#

I had it running for an hour and a half with no result, 48 threads so it doesn't get unstable or miss the answer

sly dome
#

im gonna start it tomorrow

fathom pendant
#

That sounds like a network issue tbqh I think the slowest maybe took 15-20 minutes

sly dome
#

want to see that

acoustic owl
hallow kiln
fathom pendant
#

I do agree that it's poorly designed in having you make a 98k password list

#

Forcing you to wait arbitrarily

#

But I managed it without cutting the list

#

¯_(ツ)_/¯

hallow kiln
#

Maybe the lesson is that you're gonna be bored waiting for tools to run on the job sometimes lol

fathom pendant
#

Yep, usually in those cases you'd enumerate further if you have a user access

#

It's also a lesson in "for the love of God save creds you find"

#

I went through while doing it and wrote which services the creds work for

hallow kiln
#

Yeah, luckily I already had the habit of writing down everything I find

marsh rapids
#

i did. im trying to list out all the contents at once, struggling to do so

pulsar portal
#

Hi guys, I'm working on MODERN WEB EXPLOITATION TECHNIQUES - Final Skills Assessement but I got stuck on q2, can you someone give me a hint ? thanks

sly dome
#

files that have information inside are bigger than 0 bytes

#

||powershell -command "Get-ChildItem C:\Users\user4\Documents\ -recurse | ?{$_.length -gt 1} | ft fullname, length -auto"||

fathom pendant
sly dome
#

think twice 🤣

fathom pendant
sly dome
#

yyy

fathom pendant
#

You can tell I honestly blocked it out

#

Tbh this module could be better formatted

sly dome
#

happened the same to me

marsh rapids
#

im going through the module again, i must have missed a specific cmdlet

sly dome
#

but i usually go back to it and check something

sly dome
#

6:34am here should i sleep or better tomorrowkek

hallow kiln
#

Who needs sleep

marsh rapids
#

i do, for work in about 4 hours 😪 ill try again next weekend

sly dome
warped nexus
#

so interestingly enough i wanted to sign up to check out the academy

#

the website is bugged

#

says invalid captcha, there's no captcha kekl_zoom

fathom pendant
warped nexus
fathom pendant
#

Refresh the page

#

:^)

warped nexus
#

yea but there's no captcha in the first place

#

almost reminds me of the good ole days when you had to hack your way into HtB in the first place to make an account and get yourself a sign up token

#

but i don't believe i'm supposed to do that here 😛

fathom pendant
#

Nah

#

You can try clearing cache and trying again

#

It could also be an adblocker issue

warped nexus
#

i killed my adblockers too

#

-_-

#

let me try edge

#

interesting, still nothing

onyx cove
#

Happened to me b4 it just worked the next day

warped nexus
#

and that has no blockers of any kind

sterile epoch
#

Hi I am in the footprinting hard lab.
I just did my nmap and only got 1 ssh port and 4 mail ports
PORT STATE SERVICE REASON
22/tcp open ssh syn-ack
110/tcp open pop3 syn-ack
143/tcp open imap syn-ack
993/tcp open imaps syn-ack
995/tcp open pop3s syn-ack
I tried connecting with openssl but without creds it was nothing any clues as for what to do next?

sterile epoch
#

no I did not I will do that now thanks

supple patio
warped nexus
#

so i bypassed the captcha kekl_zoom

#

i had someone invite me and it didn't complain about recaptcha

sterile epoch
#

I have troubles fetching a mail from imap server can someone explain me the fetch syntax please I just did this from a blog

> FETCH 1 (body)                
* 1 FETCH (BODY ("text" "plain" ("charset" "us-ascii") NIL NIL "7bit" 3430 49))
> OK Fetch completed (0.001 + 0.000 secs).
sly dome
#

i prefer curl

sterile epoch
#

thanks I thought curl was only good for listing

#

I will try curl now

sterile epoch
sly dome
#

yes HT is our bible

sterile epoch
lusty thicket
#

spoiler btw

sly dome
#

/INBOX;MAILINDEX=1

sterile epoch
#

i thought it was ok as I did not mention the lab

sterile epoch
#

the normal call returned an ssh key

sly dome
#

like this one

sly dome
crimson walrus
#

Hey guys, for the Reporting module: it can be completed without this, however, one of the unfinished findings is a command injection vulnerability. Can anyone give some tips/hints on where to look for that command injection vuln? I found the other unfinished ones - LFI and password in description field.

sly dome
#

you dont need “-X” xd

#

where u saw that

sterile epoch
#

in the bible there was one for -X fetch

#

the second last example

sly dome
#

you just cant read

sterile epoch
sly dome
#

It is also possible to use UID (unique id) to access messages, however it is less conveniant as the search command needs to be manually formatted. E.g.

#

IT IS LESS CONVENIANT

#

just use 1 2 and 3

sly dome
#

curl imaps://ip/folder;mailindex=ID

sterile epoch
sly dome
#

what xd

sterile epoch
#

any way to just get the body

sly dome
#

why do you need ONLY the body?

sterile epoch
#

to directly store it in a file instead of copying

sly dome
#

HAHAHAHAHAA

#

im done

lusty thicket
sterile epoch
#

I will do it now

lusty thicket
sly dome
#

any reason to not copy paste the body

#

also you have grep awk

#

and stuff like that

sterile epoch
sly dome
#

to format stdout

sterile epoch
#

I am learning linux too on the side

sly dome
#

you could do grep from the linebreak to the end

sterile epoch
#

grep is very hard I am leaning it real slowly I do not know to get the linebreak

sly dome
#

a

#

then learn how to?

#

linebreak is just a \n character

sterile epoch
#

yes but how do I select a portion

#

I can only use it for searching the output

#

any good material from where I could practice grep?

lusty thicket
sterile epoch
#
* 1 FETCH (BODY[] {3661}
sly dome
#

i just found it

#

and using your mouse to select and copy paste is a good skill

sterile epoch
#

ok I will do it

sly dome
#

ippsec does it like 20 times per video

sterile epoch
#

I just thought it might come in handy someday

sly dome
#

probably

#

but as a hacker you just need to know how to find it in your notes or in google

#

you dont need to know the exact command

#

but for a simple copy paste why make it difficult

sterile epoch
#

ok I will remember not to complicate it thanks for the advice

sly dome
#

any time dude

#

think that you could hve already ended the module

#

go rest or keep studying

#

in this meantime

sterile epoch
#

I still need to find the cred for htb user so lab is still not complete

#

but I will take some rest after it

sly dome
#

that is the easiest

#

but i let yourself with it

wooden summit
#

hey there everyone, cheers!,
I 'm working on transferring files with 'wget'
I used a pwnbox machine to set up a python3 http.server and trying to get a file from the directory my listening port is on while on root priviledges on the remote machine.
So..

  1. The server is set and listening on 0.0.0.0
  2. I 've used 'ip a' and have my ip
  3. Fed the wget command using my ip and the port, then hit enter and I get:
    "Connecting to XX.XX.XX.XX:8000..." which times out, never gets there.
    What could I be doing wrong here? Any insights?
#

(btw I m logged on the last given remote server (target) w escalated (root) priviledges, I mean, it should work right?

fathom pendant
#

You said "last given" you'd have to roll it through backwards

sterile epoch
plain coral
fathom pendant
#

Also if it's a windows system you have to specify the -o c:\file\path\to\download\file.ext

#

Do you see the GET request in your python server?

wooden summit
#

@plain coral thnx

#

@fathom pendant thnx 🙂

crimson walrus
#

Hey guys, has anyone completed all the findings of the unfinished pen test in the Reporting module's skills assessment?

naive wadi
analog dock
#

Do you know if powerview always shows it like that, or this was an odd case?

naive wadi
#

Will DM outputs

analog dock
#

Alright!

mossy nest
#

Hi guyz !

#

I'm meeting a small trouble in the pivot/port forward module

#

In the chapter RDP and SOCKS Tunneling with SocksOverRDP

#

They ask to send SocksOVerRdp files to windows host

#

The files are DLL and EXE

#

I tried sending it by using HTTP, RDP but each time the windows host delete the dll file

#

Mmh it seems that we have to disable the av scan...

#

Sorry for disturbing

viral slate
#

[MODULE] ACTIVE DIRECTORY ENUMERATION & ATTACKS
[SECTION] Kerberoasting - from Linux
[QUESTION] What powerful local group on the Domain Controller is the SAPService user a member of?

Tried commands from rpcclient, but couldn't find any other group except 1 (user "queryuser <username/rid>" and "queryusergroups <rid>")
How I can found out which groups user are part of?

hallow kiln
crimson walrus
#

Hey guys, anyone doing the reporting module skills assessment?

sudden blaze
#

hello everyone! got a question about module "information gathering - web edition" section "Active Subdomain Enumeration" last question:Submit the number of all "A" records from all zones as the answer is it 2x or just 7

#

asking because i cant reproduce 27 as the answer anymore. guess they changed something

hallow kiln
#

Make sure you're not like me who can't count sadglas

fathom pendant
#

^

fathom pendant
sudden blaze
#

i have all subdomains an now it counts a one digit number. is this wrong

#

i have the answer already submitted as a two number digit

fathom pendant
#

Your grep or wc is wrong (or your dig command)

sudden blaze
#

so is it still a two digit number

hallow kiln
#

Yes

fathom pendant
#

Yes

sudden blaze
#

like x7

fathom pendant
#

Dude you already said the answer lol no sense trying to be cryptic anymore

sudden blaze
#

ok 😦

hallow kiln
#

Make sure you've found all the zone transfers that can be performed

sudden blaze
#

are there more than 2

fathom pendant
#

Yea

sudden blaze
#

sure .)

fathom pendant
#

Yep just ran the needed commands to make it easier and the right answer is still the right answer

sudden blaze
#

got it thx

silent oriole
#

Hi All, Grad student here. starting out on CPTS course on student subscription(provides access to all Penetration Tester job-role path modules for a monthly fee) - Could someone clarify, If I will have access to the modules that I have "completed" after I stop the subscription?

analog dock
#

The student subscription I personally wouldn’t stop, unless you finished everything tier 0-2

#

The value is great

silent oriole
#

Yes of course. I believe i would have finished everthing tier 0-2 by the time i complete the Penetration Tester Job role path? @analog dock

silent oriole
#

Oh okay. I didn't know that. I'm a student graduating in 6 months time. My student email will be disabled by end of my course. But I will definitely need more time to finish everything tier 0-2 and take the exam later. Should I still go for student subscription or Silver annual subscription? please advice @analog dock

fathom pendant
#

You don't need to do all tier0-2 modules for cpts

#

All modules in cpts are t0-2 though

solar arch
#

looks like the mass IDOR enumeration chapter needs some rework for the questions section to make sense again - pretty much everything told above is not like in the machine. there is no /documents.php forward, there is no uid=1 get request and therefore the script wont work... for everybody else stuck in there: try post and modify accordingly

analog dock
cedar void
#

What does this red minus sign mean

silent oriole
fathom pendant
empty hedge
#

Guys in network enumeration module they put that the -sn disable the port scanning.
Is this right? I thought it was for enabling host discovery scan using ICMP !:

cedar void
fathom pendant
silent oriole
empty hedge
fathom pendant
cedar void
fathom pendant
#

if the files don't exist in the local directory- then it takes it literally

sly dome
#

use the typical ./

fathom pendant
# sly dome use the typical ./

It doesn't matter tbh the ./ to indicate current directory, as it's outdated - most codes are optimized to check if it's in the cwd or not

crimson walrus
#

Hi all, has anyone completed all the findings of the unfinished pen test in the Reporting module's lab?

fathom pendant
#

You'll get more people to answer if you actually ask your question, as generally as possible

#

Just asking if someone completed it initiates a game of tag where responses are waited for

plain coral
#

Interested on anyone else’s thoughts on this? I know there is a caveat in the module that says wait 60 seconds after your target has spawned then you’ll be able to see the service on the box. Is it intended behaviour to reset the target 874 times In Attacking Common Services - FTP section? Was using the Pwnbox and inb4 ‘your internets ass’ comments. Completed the section but that was annoying 😂

crimson walrus
#

I also asked on the forum but cricket noises there as usual.

#

And I am on a tight deadline to do this module so I have no choice

sly dome
crimson walrus
#

But just in case, my question is whether anyone has found the command injection vulnerability for the optional exercise of the Documentation and Reporting module Lab?

crimson walrus
crimson walrus
#

yes sir

sly dome
#

then probably those who read it didnt find the vuln

crimson walrus
#

yep, I undestand and will ask more precisely next time

sly dome
#

and considering it is optional exercise

#

you know what i mean

crimson walrus
#

I mean they say its optional but anyone who has done the module knows that its not haha

#

because the optional exercise is basically to finish the pentest report which the whole module is about

sly dome
#

it says its optional but you need it to finish the moduleV

#

personally im not losing my time with something i can just skip, i would try for some hours but nothing more xd

#

prefer to invest it in the attacking enterprise module

crimson walrus
#

no, you don't. You can finish it without doing the exercise. But the whole module is about writing a good report and the "mandatory" exercises do not have anything to do with the actual contents of the module. The mandatory exercises are some basic ad stuff. While the optional exercise is about finding 3 more vulnerabilities and then writing them up.

#

I see what you mean. I will be writing a report for attacking enterpirse module as well. But I would like to start the exam soon after finish that module and I do not want to wait for feedback for the report.

sly dome
#

what i meant is here you get answers if someone has done it

crimson walrus
#

yep, I see what you mean. Still worth a shot.

hallow kiln
#

The people have may have done it are those who've finished the path, a lot of them don't hang around here FeelsBadMan and probably plenty didn't do it if it's optional. Any reason you're in a hurry? Would be valuable if you could wait to get some feedback on a report after attacking enterprise networks.

sly dome
#

one of your biggest deals is madf0x he has the CPTS and is considerably active in the chat

crimson walrus
#

good point. I guess I will have to wait to get some feedback on the attacking enterprise module. I just wanted to have as much feedback as possible in order to get the exam on the first try.

crimson walrus
sly dome
#

also PayloadBunny

#

both of them should’ve found some if not the 3 vulns

#

in my case im at least 10 days away from that module

hallow kiln
#

and rat has offered to look over reports

#

I'm at least several weeks away from it

sly dome
#

im starting password attcks today

#

gonna skip others just for the pleasure of it

hallow kiln
#

Have fun 😁

sly dome
supple patio
lusty thicket
#

strange

hallow kiln
#

uuuuh, you're reading the output wrong

#

Pwn3d is output from the tool, which means the user is both valid and has local admin rights

cedar void
#

Ah "john" is the username

plain coral
#

The password isn’t pwned and the user isn’t November

hallow kiln
#

Yup!

fathom pendant
sly dome
#

wait

#

did he use the password as user?

#

and the pwned as password

#

haha that was funny

fathom pendant
#

Ye

#

They tend to misread the output

#

I think partially language barrier when learning

sly dome
#

the good pwned message from NetExec

orchid pine
#

guys i have aprobleme with mimikatz i unistall and inmstall again and still the same probleme

hallow kiln
#

Trying to run mimikatz in an evil-winrm session?

sly dome
#

did you run it with “exit”

orchid pine
orchid pine
orchid pine
sly dome
#

why not xd

hallow kiln
#

All commands have to be on one line in quotation marks and always end with "exit" ^

sly dome
#

it can get buggy over remote access like winrm

#

its a widely documented problem/issue

#

but again the google search skill

orchid pine
sly dome
#

if you want you can run it in interactive mode

#

just issuing “mimikatz” without arguments

naive wadi
naive wadi
# orchid pine thx'

unless you have to use mimikatz, rubeus is way more stable over unstable remote connections

sly dome
#

ah the good old rubeus

#

nowadays we have a lot of alternatives to mimikatz tho

#

but modules teach the common tools of course

hallow kiln
#

Anything in particular you prefer?

sly dome
#

if i have RDP i would just dump the lsass RAM process

#

with the task manager

#

then analyze it and extract hashes and all with volatility

#

or pypykatz

hallow kiln
#

I try to avoid RDP as much as possible

sly dome
#

netexec (old cme) has the lsass module

#

—lsa iirc

#

lssasy also a good tool

hallow kiln
#

There's --lsa and -M lsassy

#

Yeah

sly dome
#

yea netexec is huge

#

i think you only need that tool

#

at least for common purposes

hallow kiln
#

You could definitely do a whole pentest just with that lmao, but it's a bad idea to rely on one tool too much

sly dome
#

but mimikatz is simply the father of all

naive wadi
sly dome
naive wadi
#

he's always like 10 steps ahead

sly dome
#

i think he has C code implemented in his brain

#

ive review some of his code

#

cant even understand

#

🤣

naive wadi
sly dome
#

he just knows Windows too in depth

#

years of experience and also a smart person behind

hallow kiln
#

It's hilarious how he's like "I was just playing around to learn C", damn man, wish I could play around like that

sly dome
fathom pendant
#

When the quiet kid drops bars

hallow kiln
#

Everything ADCS is great basically

sly dome
#

—nosystem option is fire

naive wadi
hallow kiln
#

pretty inspiring honestly

warm drift
#

can anyone help with AD skil assessment part 1 I uploaded Rubeus and ran

Rubeus.exe kerberoast /domain:INLANEFREUGHT.LOCAL /user:svc_sql /nowrap
#

but it says LDAP query failed

#

idk if i'm missing something

acoustic owl
elfin cedar
#

Can someone please help me with the very first question from the Linux Privilege Escalation module? I think I've wasted way too much time on such an easy thing. I think it has to do with the other user but I get permission denied when I grep.

novel matrix
#

Bye bye

scenic summit
novel matrix
fathom pendant
acoustic owl
warm drift
elfin cedar
orchid pine
acoustic owl
fathom pendant
acoustic owl
#

In my notes the questions are not numbered, sorry

warm drift
elfin cedar
orchid pine
#

just finished the module ig ille go do some ad boxes even tho i dont know annything about windows priv esclation

acoustic owl
balmy iris
warm drift
#

yes

orchid pine
#

dont relay on 1 tool like if one didnt work u can use others

#

try power view may be

warm drift
#

I just assumed mimikatz would require me to have creds to run it I'll try other stuff

sly dome
orchid pine
#

i didnt use rubeus i just used power view and it worked

#

so i dk what is the problme with it

sly dome
amber pebble
#

hi

#

i am new

balmy iris
sly dome
#

is not like Rubeus does something very different to Mimikatz

amber pebble
#

can anyone teach me hacking

#

pls

sly dome
amber pebble
#

then?

sly dome
#

you can learn in the academy site

amber pebble
#

for free?

sly dome
#

keep reading

amber pebble
#

or paid?

sly dome
amber pebble
#

oh ok

sly dome
acoustic owl
sly dome
#

every tier 0 is free

amber pebble
#

ok thx @sly dome

elfin cedar
#

I really dont get what I am missing

dusky niche
#

Can one of the mods or admins help me? The hackster bot says that i need to contact a admin or mod.

velvet haven
#

Packet Inception, Dissecting Network Traffic With Wireshark
Which employee is suspected of performing potentially malicious actions in the live environment?

dusky niche
#

can i ping a mod? 😭

sly dome
velvet haven
elfin cedar
#

When I run the command:|| grep -r -l 'HTB{' /home | 2>/dev/null|| I get grep: /home/lab_adm/.viminfo: Permission denied

#

and I cant find the lab_adm password

sly dome
elfin cedar
#

does anybody remember this for the module Linux Privilege Escalation?

velvet haven
dusky niche
#

can i ping a mod?

sly dome
#

you just have to look at some unencrypted packets

sly dome
dusky niche
#

WHY

#

I need help

sly dome
#

not the appropriate channel

dusky niche
#

i dont got the channels thats the whole problem

sly dome
#

go over the platform and use the green bubble chat

dusky niche
#

The bot says i need to contact a mod

elfin cedar
#

I cant believe Ive spent almost 2 hours on this, someone please 😭

sly dome
sly dome
dusky niche
glacial dragon
#

Hello guys, I'm stuck at this question "What is the FQDN of the host where the last octet ends with “x.x.x.203”?" In the Footprinting module (DNS)

sly dome
#

yes go over HTB website

dusky niche
glacial dragon
#

I tried a lot of things but it doesn't seem to work

#

dnsenum --dnsserver 10.129.64.254 --enum -p 0 -s 0 -o subdomains.txt -f /home/dekryptor/Downloads/fierce-hostlist(1).txt --threads 90 inlanefreight.htb

sly dome
#

you didn’t try the correct thing

lusty thicket
sly dome
#

on

#

maybe it is a subsubdomain

glacial dragon
#

How should i figure it out?

#

Any hints?

sly dome
#

trying?

#

i gave you the hint

glacial dragon
#

Ayo💀

sly dome
lusty thicket
sly dome
#

also with a for loop in bash you can test in all subdomains at once

#

and grep for 203

elfin cedar
sly dome
#

or grep '.203'

glacial dragon
#

Ight, I'll try

sly dome
#

enumerate harder

elfin cedar
#

Ill try I guess

#

iv e been at it for almost 2 hours though

#

I feel so stupid

sly dome
#

is it a skill assessment?

elfin cedar
#

no its the VERY first quesiton of the whole module

sly dome
#

then just do what the section does

elfin cedar
#

I did like twice

velvet haven
sly dome
#

you dont need hostname here

sly dome
#

section is enviroment enumeration

#

wht more can i say

velvet haven
dusky niche
sly dome
#

hint: http

dusky niche
#

so

#

i was right 😛

sly dome
#

?

#

reach them but stop posting it here

#

you probably need to open a direct message

glacial dragon
dusky niche
#

alright ty! for helping thats really the only thing i wanted to know

sly dome
#

why would you ping them here, this is for modules of the academy

glacial dragon
#

Found it

velvet haven
dusky niche
sly dome
lusty thicket
elfin cedar
#

OMG

lusty thicket
dusky niche
elfin cedar
#

@sly dome 2 hours wasted because I added 2>/dev/null. When I left that out it actually showed the file

rustic sage
#

i need help with biling inforamtion

rustic sage
#

guys what should i write in the |(Company Name
) section

lusty thicket
rustic sage
#

how many numbers in postal code ?

#

mind is 9

lusty thicket
rustic sage
#

is there anyone can help me

fathom pendant
rustic sage
#

i tryied but mail dont submit

#

from the website

fathom pendant
#

Dude asking for help with putting in your billing info here is like stepping on a landmine and waiting for it to blow up under you

rustic sage
#

im not sharing any information at all

fathom pendant
#

Either way not a conversation for here

rustic sage
#

okay sorry

fathom pendant
#

Contact support on the website and wait

rustic sage
#

do u have the support mail

fathom pendant
#

This channel is for assistance with academy modules

rustic sage
#

sorry sir

fathom pendant
rustic sage
#

thank u sir

lethal shard
#

deleted previous message attempt because of contact support messages 😁

hello everyone! im doing intro to assembly language module. skills assessment task 1. so, i disassebled code, pushing values to stack and after pushing i'm jumping over stack with

mov rcx, 14 ; loop 14 times
mov rdx, rsp ; get the pointer of the top of the stack
loopL:
mov rax, [rdx] ; get the value of from the rdx pointer
xor rax, rbx ; xor value with rbx key and put in the rax register
add rdx, 8 ; jump over the stack to get the previous values
loop loopL ; jump back

so i do not get the correct shellcode. alse, i'm concatenating the values from $rsp(top of the stack) to bottom like the computer will do. maybe any help or suggestions?((((

digital inlet
#

Use the "cobaltstrike_beacon" index and the "bro:http:json" sourcetype. What is the most straightforward Splunk command to pinpoint beaconing from the 10.0.10.20 source to the 192.168.151.181 destination? Answer format: One word

#

Detecting Beaconing Malware

#

Can someone give me some tips?

obtuse oxide
lethal shard
obtuse oxide
#

Another thing is that you aren't really doing anything the value that you xor in rax

frozen mesa
#

Where can i find the Burp collaborator? Thought it was a tab on the main screen in Burp.

obtuse oxide
#

It's just getting overwritten again in the next iteration

digital inlet
#

ok, thanks for the tip

lethal shard
vital adder
frozen mesa
#

Ah my mistake, read that wrong. Thanks!

lethal shard
cedar void
#

Is the command 'hydra -L user.list -P password.list rdp://10.129.202.136
' usually this slow:

I have been wating for like over 15 minutes to get back a valid response.

fathom pendant
distant moat
#

why my freerdp keep disconnecting

fathom pendant
#

Download tcp version, switch servers, bad login info

distant moat
#

my problem? or ....

fathom pendant
#

Could be many things

#

Also it won't let you paste the full code block, you need to verify your main htb account following instructions in #welcome

sly dome
#

i remember forcing a rdp with hydra and it was quite fast

cedar void
sly dome
#

password attakcs?

#

attacks

cedar void
#

Yes sir

#

or ma'am

sly dome
#

then nah i didn’t start it yet

#

gonna do it in 5 minutes 🤣

teal breach
#

hello! i have a trouble for this section "RDP and SOCKS Tunneling with SocksOverRDP"
can someone help me through dm ? any help is appreciated, thankyou 🥰

fathom pendant
#

48 is more stable

distant moat
fathom pendant
lusty thicket
fathom pendant
lusty thicket
fathom pendant
#

I (personally) was getting false positives and pure misses with 64 threads

#

Sir you're objectively wrong lol

#

I experienced it myself through trial and error

lusty thicket
#

maybe you just have bad internet

teal breach
fathom pendant
#

Because you didn't load the dll

#

And if one of my previous assumptions were correct it got shot to the void

teal breach
fathom pendant
#

Did you get an error message when loading the dll?