#general

1 messages · Page 478 of 1

raven rain
#

u can squash the pc if you do that

warped plank
#

Why backup when you can just save the manifests 9263zerotwoveryhappy

raven rain
#

we don't have etcd

#

we have sqlite

terse dirge
warped plank
terse dirge
#

etcd is diff service unless you use something else

raven rain
#

k3s uses sqlite

#

by default****

frozen zinc
#

@raven rain will ping you here with the answer once i got it

raven rain
#

thank you

frozen zinc
#

np

terse dirge
#

you can use redis if you wanna be cool or valkey

undone fossil
#

too late im gonna crash out and jump down the modern c++ rabbit hole

warped plank
undone fossil
#

have you guys seen the proposal for C++26 getting reflection?

#

"The reflection operator ^^"

terse dirge
raven rain
#

mongodb is not supported

undone fossil
#

i have never kuberneeted and i dont intend on it

raven rain
#

kuberNEET

terse dirge
undone fossil
#

nah

raven rain
#

dont do it

#

its a trap to get you to into another rabbit hole

undone fossil
#

too busy writing C++ soz

terse dirge
# undone fossil nah

it's easy (kinda when your pods aren't crashing every second and when something isn't broken)

undone fossil
#

writing a lazy evtx parser for fast parsing and searching

#

hopefully useful for forensics ctf speedrunning

warped plank
undone fossil
terse dirge
austere sigil
cerulean bloom
warped plank
undone fossil
#

tbh generics are one of the few things I'll say rust does better than C++

#

much closer to "true generics" than C++'s templates

#

C had _Generic but its just a dispatcher Sadge

terse dirge
#

I should get drunk and switch everything to valkey instead of etcd 🔥

raven rain
#

why would you learn C or C++ anyway when Rust exists

undone fossil
#

because I care about performance down to the asm level

warped plank
raven rain
#

performance? everything runs quick on my pc already besides crysis 3

terse dirge
undone fossil
#

Yeah or I could use C++ and not have to reinvent the wheel

raven rain
#

just buy faster PC

undone fossil
#

im using spans and views to basically add quick bounded structure views to a mapped file

native plume
#

You can run JS on a fast PC too

#

Don't kill me chat

raven rain
#

yes you can also run J SON

icy viper
icy viper
raven rain
#

best place to learn Rust?

native plume
#

The Rust book

raven rain
#

i have no idea

terse dirge
#

best place to learn carbon?

warped plank
raven rain
#

rust the boring things

warped plank
#

And not even joking: The Compiler

icy viper
undone fossil
icy viper
#

Just learning as a whole

undone fossil
#

This is his C++ playlist, I just watch random videos when I see someone use a new syntax, very helpful

icy viper
#

I'll check that out for sure

raven rain
#

game engines for robotics sounds extremely cool

terse dirge
#

carbon looks neat tbh I really hope it becomes stable

raven rain
#

carbon already is stable

#

no i lied hold on

#

no i'm not a liar

#

carbon is stable it has four valence electrons

#

👍

undone fossil
#

but yeah for the rustaceans, C++23 has rust's result, and C++17 introduced an optional return also

#

by "rusts result" i mean std::expected

warped plank
native plume
#

Gotta fill the 8 slots

warped plank
undone fossil
#

Yeah, for example

#

lemme write you one uhhhh

heady sage
raven rain
#

i use carbon to get my bonds paid

warped plank
terse dirge
#

I forgot how weird the syntax is lmao

raven rain
#

forget rust. it doesn't pay enough

#

i need to learn the highest paying language

terse dirge
native plume
#

COBOL?

warped plank
raven rain
#

how about Nim

terse dirge
raven rain
#

any Nim enjoyers????

warped plank
#

Clearly the highest paying language is English

native plume
terse dirge
#

golang is infact peak

warped plank
#

You know how many people would pay for an English tutor? kek

raven rain
terse dirge
#

simple, fast, looks good!

undone fossil
#
#include <expected>

std::expected<float, std::string>
float div(int a, int b)
{
  if (b == 0)
    return std::unexpected("Divide by zero error");
  return a / b;
}

int main(void)
{
  auto result = div(12, 3)
    .and_then([](float result) { return div(result, 2); })
    .or_else([](const std::string& error)
      {
        std::println("Error: {}", error);
        return std::expected<float, std::string>{0};
      });

  if (result)
    std::println("result: {}", *result);
  return 0;
}
#

as an example with chaining and lambdas etc.

raven rain
#

at least in the US the pay is pathetic

terse dirge
#

one does not need OOP if one does not have OOP problems fancyrabbid

undone fossil
#

most of my usage just looks like this though

west venture
#

OOP is cool tho

raven rain
#

oop is one letter away from oops. that's why i never make an oopsie is because i don't believe in oop

terse dirge
warped plank
undone fossil
#

file_result and chunk_result can potentially fail, so

int main(int argc, char** argv, char** envp)
{
    auto args = parse_args(argc, argv);

    auto file_result = EvtxFile::open(args->get("-f"));
    if (!file_result)
        handle_error(file_result.error());

    EvtxFile file = std::move(file_result.value());
    EvtxHeader header = file.header();

    auto chunk_result = EvtxChunk::first_from_file(file);
    if (!chunk_result)
        handle_error(chunk_result.error());
    EvtxChunk chunk = std::move(chunk_result.value());

    std::println("File header\n===");
    display_file_header(header);
    std::println("Chunk header\n===");
    display_chunk_header(chunk);

    return 0;
}
undone fossil
cerulean bloom
undone fossil
#

namespace pollution

warped plank
cerulean bloom
terse dirge
# west venture OOP is cool tho

nah. It's very overrated tbh. It ends up overcomplicating code bases and causes poor design patterns with nested classes and methods that create new objects and so on

undone fossil
#

honestly, like all design patterns it's what you make of it

cerulean bloom
#

I like DSA hehe

heady sage
#

My dad used to say “We are not getting a dog” to feeding them Costco rotessrie chicken

undone fossil
#

seeing oop as a hammer and thinking everrything is a nail is obviously incorrect

undone fossil
#

but people stick with it because it's a familiar way of thinking (associating ownership with functionality/concepts) and it works pretty well for most problems

heady sage
#

Why are yall skulling me?

terse dirge
warped plank
undone fossil
#

today i need to learn how tf custom iterators work in C++

#

ive never written one so this will be interesting

warped plank
undone fossil
#

ye

#

hence why stuff like this can work

terse dirge
warped plank
#

In Rust your custom Type just has to implement the Iter trait

undone fossil
#
for (auto& item : container) std::println("uh: {}", container.data_i_guess());
heady sage
#

@undone fossil I found this book on a table at my school and it’s gold!

undone fossil
#

ayo JOP book?

#

potential banger

heady sage
#

It’s a collection of academic papers

#

On cybersecurity

undone fossil
#

aight mr cherno has got me

warped plank
undone fossil
terse dirge
#

I need to get back to writing an eBPF rootkit

undone fossil
heady sage
undone fossil
#

yeah its nice because cfg only protects calls

#

specifically, it checks if the return address is aligned to 0x10

heady sage
#

Hey what is Control Flow Guard?

undone fossil
#

a friend of mine did a stephen sims talk on it

#

lemme find it

#

This stream will cover the userland components and internals of the Control Flow Guard exploit mitigation. CFG was designed to protect indirect function calls and thus prevent the exploitation of bugs like use-after-free vulnerabilities. In addition to some reverse engineering, we are going to check out how CFG impacts our exploits for CVE-2019-...

▶ Play video
#

luv nop

muted olive
#

basically like restricting where apps can exec code

#

so even if it overflows

undone fossil
#

yeah

muted olive
#

it cant write to x

terse dirge
#

isn't that what things like apparmor do?

undone fossil
muted olive
undone fossil
#

and i wrote a post showing how you can hook control flow guard for process injection (shameless plug)
https://www.legacyy.xyz/defenseevasion/windows/2025/04/16/control-flow-hijacking-via-data-pointers.html

muted olive
#

cfg is also like access control but at memory level for services

#

tbf OBO is one of the hardest to exploit lol

terse dirge
#

hmmmmm, very interesting

undone fossil
#

i must go back to the wage cage but

#

it was good chatting with you sirs

muted olive
#

@austere sinew ping

austere sinew
#

I wouldn’t want to make anyone suffer

undone fossil
#

wolo go away noone listen to her she's gonna slander us

terse dirge
#

@austere sinew

austere sinew
undone fossil
#

happy birfday

austere sinew
#

I dont trxt here in

#

Forever

#

And I have lik

#

20 something pings

#

I cant even retaliate

#

@terse dirge @cerulean bloom @elder inlet

undone fossil
#

i cant even retaliate
retaliates

undone fossil
#

shit yeah i gotta dip lol

#

gbye

austere sinew
#

@muted olive @meager kernel @supple plume

#

@sturdy thistle

austere sinew
heady sage
meager kernel
#

@austere sinew

austere sinew
#

@green kite

meager kernel
#

How are you

#

Doing well?

green kite
#

whats up @austere sinew

austere sinew
#

All gucci

austere sinew
heady sage
austere sinew
#

Twas a ping

meager kernel
austere sinew
#

And at first it hurt my heart a lil but

meager kernel
#

😭

austere sinew
#

Now it’s going super well

#

Like

#

I can have spicy food in my life again

meager kernel
#

That's good

austere sinew
#

Hell yeah

meager kernel
#

Stay safe aight?

austere sinew
#

Im living it up

terse dirge
austere sinew
gray wraith
#

hello

austere sinew
#

The only person who can eat that is a redneck named hank

undone fossil
#

I am on mobile

#

Reminder to write C++ chatters

#

Take the propaganda from an autistic frog enjoyer on the internet

terse dirge
austere sinew
#

Now I am only wolo

meager kernel
#

@austere sinew grant me some motivation for gym

heady sage
#

how I imagine miserable people on Twitter

austere sinew
cerulean bloom
#

me want connections

meager kernel
austere sinew
#

I wouldnt want you to suffer

terse dirge
cerulean bloom
heady sage
austere sinew
austere sinew
cerulean bloom
cerulean bloom
terse dirge
#

we're stuck on a gig up and down

cerulean bloom
austere sinew
meager kernel
terse dirge
#

and the network is flat hellokitty because vlans are socialist propaganda

meager kernel
green kite
#

happy (belated) birthday @gaunt gale - sorry I am a day late

cerulean bloom
austere sinew
austere sinew
meager kernel
austere sinew
cerulean bloom
austere sinew
#

Nah it’s funny

meager kernel
#

Hope she got the consequences

austere sinew
#

And bar staff took over

#

But like

#

Was funny

green kite
#

hello doggos

austere sinew
#

I was tempted to be dramatic about it but I had to go back home so L

meager kernel
#

I feel lazy as fuck rn

austere sinew
meager kernel
austere sinew
#

Like a little lady calves

meager kernel
austere sinew
meager kernel
#

Idk why ive been feeling lazy past few days

terse dirge
#

I need to get a j*b 🥀

austere sinew
#

Real

meager kernel
austere sinew
#

Anemia maybe

meager kernel
supple plume
supple plume
meager kernel
#

I need a break

austere sinew
muted olive
meager kernel
#

I wanna go outside man

austere sinew
#

Like that was probably the highlight of her life

terse dirge
#

I need to professionally kubernetes chat

austere sinew
#

Do em outside

meager kernel
#

@heady sage how do i get better at doing machines 😭😭

sturdy thistle
#

@austere sinew

austere sinew
#

Although I’m on break from machines which ryan would kill me for

#

@sturdy thistle

sturdy thistle
#

done the new box?

austere sinew
austere sinew
meager kernel
heady sage
sturdy thistle
#

i stuck at root lol

austere sinew
austere sinew
meager kernel
#

Just a hint

austere sinew
#

You shall never knowwwww

meager kernel
meager kernel
#

Okay

frozen zinc
#

Has anybody here read "from day cero to zero day"?

heady sage
muted olive
#

finding unintendeds for privesc is very fun

heady sage
muted olive
#

especially because half of the machines run on vulnerable builds

cerulean bloom
frozen zinc
heady sage
muted olive
frozen zinc
#

Cool, thanks

muted olive
#

what is it about?

#

nvm

#

@heady sage what is it about?

austere sinew
cerulean bloom
#

PLEASE

#

ME A CHILD

#

me when I'm overreacting lol

austere sinew
#

The most adorable one no less

#

Never change donut

cerulean bloom
heady sage
heady sage
frozen zinc
#

black and white

#

Do you like it?

austere sinew
#

It’s just a guy jogging if you like it kudos to you

frozen zinc
#

Fuck other people opinions mate xD

austere sinew
#

“I dont need validation” “how does it look”

frozen zinc
#

xDD

#

Looks ok bro

#

it has the try hard vibes

rustic carbon
#

Thx man

frozen zinc
#

Bro I have the T480s and im super happy

#

I travel a lot and move so its perfect for me bcs is thin

#

and has 24gb ra

#

but if you want something more powerful the P53 and that line are ok too

terse dirge
#

"blackmarket" Kappa

scenic maple
#

In all honesty ryan doesnt do boxes either

frozen zinc
#

I have a sticker on it

#

Second hand shops, refurbished shops, online market

#

I bought mine in a charity that does recycling and refurbishing

terse dirge
#

Why is bro deleting his messages lmfao?

frozen zinc
#

let him be

#

thinkpads are the way

#

dont overthink much about it

#

I like to talk alone

terse dirge
rustic carbon
#

Same

terse dirge
# rustic carbon Same

If you're deleting messages for "opsec" purposes discord can see deleted messages lmao

frozen zinc
#

wrong timing

terse dirge
frozen zinc
#

for a embed fail lol

frozen zinc
#

We are the deleted messages we do along the way

young glen
#

Definitely

desert radish
#

Hi i want to ask something, my friend just registered using my reff and completed the intro to academy module, why my cubes doesnt change?

scenic maple
#

He has to do all the needed things

#

There are requirements

#

Read the refer page fully

exotic pendant
left bone
#

Looking for someone to solve htb boxes. At least one a day. Should have vip subscription as I want to do retired ones.

I am looking for just one person so we can share and discuss.

stable tiger
#

hello

signal mica
#

Warl0ck ur pfp is banging i cant stop checking it

devout tendon
#

yo guys

#

looking for SOC architecture and SOC roles ( images ) , any help ?

stable tiger
eager gust
#

Howdy chat

supple plume
#

2.1/10

eager gust
#

do you smoke?

#

lies

supple plume
#

You shouldn't care about my rating, do you like your pfp? That's what matters

eager gust
#

do you like irish whisky?

#

I love businessmen

#

🤝

#

You are welcome to the Peaky Blinders

supple plume
#

Vro

young glen
#

I prefer Bourbon 🥃

supple plume
#

That is lame, also there are discord logs

#

Continue deleting until here please

supple plume
#

You deleted that you smoke a bit I just want to let it written here that you claim to be a smoker 🚬 for when your parents check your phone

faint flower
#

hello all

supple plume
#

Nice username

faint flower
faint flower
supple plume
#

You'll unlock other chanels once you achieve hacker rank in htb

faint flower
#

ohh ! i am just do academy as of now ! will it unlock channels

supple plume
#

Vro I have no time to discuss your pfp

supple plume
#

Grow up kid @rustic carbon

eager gust
#

I was unaware of LetsDefend

faint flower
#

tagged the wrong guy

supple plume
faint flower
upbeat tangle
#

And some are very unprofessional

#

Dont look at me Kappa

faint flower
#

@rustic carbon i think you were tagged by mistake i think he was ment to tag the guy with peakyblinders pfp

faint flower
# upbeat tangle And some are very unprofessional

you cant control people you know but the thing i have noticed here is the discord channles are kinda chill the 1 yr i have spent on the THM the discord channels are kinda always flooded by multiple conversation at a time

quick verge
#

hey everyone im new to this cybersecurity thing and looking to do something in it what is the best place to start im studing automation and robotics and im from india

quick verge
#

Yes I'm actually working on a small project with Arduino with iot and also I'm learning python and c

#

Also I started learning linux

#

I'm not looking for serious hacking stuff I want to surf on what's actually happening behind all the internet traffic and small stuff

heady sage
#

Damn this hard web challenge got hands

cerulean bloom
#

gl gl

devout sail
frozen zinc
#

Secure Notes web challenge is not easy 🙁

austere sigil
#

Gday!

zealous charm
heady sage
heady sage
#

I want to get to the other modules but there’s a big wall in my path

frozen zinc
exotic pendant
#

😄

#

Made some fruity pebble ice cream

hoary dawn
#

what are the hackers up to nowadays

gray wraith
#

Or barbells

devout sail
exotic pendant
#

all it has is cereal milk flavored protein, almond milk and fruity pebbles

devout sail
#

No wonder your name is frostbite

devout sail
iron fern
#

Hi. Can I dm someone from stuff regarding invoice?

novel oriole
#

hey guys i need help! i just openend my htb account on my vmware workstation and i got permanently sanctioned... i was trying to download vpn file to connect to htb's vpn and do the linux assesment of junior path :/

#

insaneeee

#

heed help guyss

#

this is sooo annoying

#

also i made my 2nd month payment of student package just now why did it happen!?

devout sail
#

Ask support

west lynxBOT
novel oriole
#

this is crazy bruhh

#

i was already tired of networking and when i finished that

#

i faced this

#

:(((

devout sail
#

Yeah they can help u

novel oriole
#

i cant even access my dashboard

#

permanent sanction

#

bro this is sooo infuriating

#

i was in the middle of learning

thick forge
#

whats on going

#

i just wake up 15 min ago

elder inlet
#

@austere sinew @austere sinew

novel oriole
#

last time i mailed support they replied 7 days later

#

i cant waste 7 frekin days

green kite
#

its the only way to get help @novel oriole

novel oriole
#

i have university next month i wanna learn as much as i can

#

rn

novel oriole
#

after a month they realized that theres a compliance issue

green kite
#

What error are you getting?

#

because just with using vmware, you would not get banned

novel oriole
#

i cant send ss here as this area dosent allow that

#

where can i send it?

green kite
#

you can send it in my dm if you want

#

but I am not support - so if its anything official - you must contact support via the official way

meager kernel
#

wtf happened here

sharp shuttle
#

clippy drinks tea

green kite
#

I wouldn't mind a tea rn

quick verge
restive helm
#

how does one check how far you are from next HTB rank? new dashboard only shows current with total content ownership, should that go to 100% for next rank?

scenic maple
exotic pendant
#

It’s only 65g of cereal

quasi verge
#

I’m tryna launch a exe but I don’t want like any logs

#

How can I do this

exotic pendant
#

I only put this into it waz

native plume
restive helm
vital oyster
#

if i dont wanna do challenges but still wanna increase my rank am i just SOL?

scenic maple
heady sage
#

EUREKA

#

I think I got something on this new web challenge im doing

novel oriole
#

is there any person from support team in this server? i have a problem

#

received mail of my compliance problem resolution yesterday and today i got resanctioned permanently

#

this is crazy...

stable tiger
#

whatd u do?

novel oriole
#

opened account on vmware (kali to be more specific) cuz their pwn box sucks in my opinion slow as hell

#

purpose: download and connect to vpn file to solve linux problems in junior cyber sec analyst path

#

and i have done this before as well.. once to solve networking assesment

#

but this time they did this

#

im sooo irritated rn if any guy from support can read my msgs
im willing to send live pic/ video call if that works for u
already composed a new mail and sent my national id card and university card :/

#

getting interrupted like this in something u are fully invested in SUCKS!!!

thick forge
#

whats the issue

#

i am curious

maiden anvil
#

dunno

#

but hi everyone

thick forge
quick verge
novel oriole
#

probably an auto flagging by system as yesterday i got fully cleared bur rn i got sanctioned again

thick forge
novel oriole
#

to download vpn file

#

and do the linux assesment

quick verge
#

Is something else running in kali while your working

novel oriole
#

bruh im new to all this i only know one thing that i have kali linux which has built in security tools

#

and in vmware workstation

thick forge
tiny basin
novel oriole
thick forge
#

i was thinking can be login in a VM issue or country maybe

novel oriole
quick verge
novel oriole
thick forge
novel oriole
#

should i hate my country for this or what?

torpid pagoda
#

Hey guys, I’ve found all the HTB CJCA flags and I’m now working on the report.

In the Collected Evidence section, I need to include screenshots or simply paste the outputs of the commands, showing every step for each IP.

If anyone knows how to do this properly, please let me know.

tiny basin
novel oriole
novel oriole
#

ill be heartbroken if this dosent gets fixed ...:/

thick forge
#

can you check if you are running tor in your kali machine ?

novel oriole
#

how?

thick forge
#

curl ifconfig.info in your main machine and then in your kali machine, dont share the result just check if the same ip

#

now i gonna test with my account if see i got santionated or not just for using VM, i think dont but lets try

novel oriole
#

u mean in cmd?

thick forge
#

yes in the terminal, you can try it in the browser too

#

just dont share the result

novel oriole
#

'ifconfig' is not recognized as an internal or external command,
operable program or batch file.

#

in windows cmd it shows this

#

and in linux it gives result

quick verge
#

Type it without any changes

thick forge
#
curl ifconfig.info
novel oriole
#

wdym?

thick forge
#

is with curl before

quick verge
thick forge
#

dont share results

novel oriole
#

both are matching 100%

thick forge
#

ok

novel oriole
#

what can i conclude from this? never used curl before

#

i hope support atleast tells me the reason for the sanction

worn urchin
#

what is the problem?

novel oriole
thick forge
#

i log in from the VM, nothing happends, i log in fine

novel oriole
#

cant acces labs or academy

thick forge
#

maybe country things

supple plume
native plume
worn urchin
#

why?

thick forge
novel oriole
worn urchin
#

sanction?

novel oriole
thick forge
worn urchin
#

I dont think its sanctioned or smth

native plume
novel oriole
#

but was given access of academy

worn urchin
#

what did it say

novel oriole
novel oriole
#

ofc im not ready for labs but i was exploring the site

worn urchin
#

this is weird

#

I dont think hackthebox has anything like that

novel oriole
#

now yesterday they confirmed that issue has been resolved i provided them w my national identity card and university student card

worn urchin
#

first time hearing this

novel oriole
#

but today after opening on kali i got permanently sanctioned

quasi verge
#

anyone know how to launch a exe but I don’t want like any logs
How can I do this

thick forge
#

chatgpt says pakistan is not sancionated country

quick hill
#

hey guys,
I cant see the support icon, ad block disabled privacy turned off, FF or chrome both not showing the icon. Any suggestions? I use email instead, but I may need to write a bit back and forth

novel oriole
thick forge
novel oriole
worn urchin
#

can you send a screenshot

#

in my dms?

novel oriole
thick forge
novel oriole
worn urchin
#

interface

novel oriole
quick verge
worn urchin
#

he didnt get banned as he says

quasi verge
worn urchin
#

Its a problem with sanctioning

quasi verge
#

can you check dms

ocean marsh
thick forge
#

@novel oriole i see pakistan flags in the rankings table so i am 90% sure is not a country issue

novel oriole
#

idk what that is i sent all my details and they even verified me

thick forge
#

do you check your email ?

#

i am curious because in the most cases they mentioned the reason of why you got santionated

novel oriole
austere sinew
sterile wharf
#

Wsup

novel oriole
#

they verified me once so this probably has to be some auto action by thier system

worn urchin
#

you too

novel oriole
#

otherwise it dosent make sense

#

i made up my mind for cyber sec after considering everything and this is what im facing.. this discourages me

sterile wharf
#

Firing up 62 ctfs in two days
Feel so great

elder inlet
thick forge
quick hill
novel oriole
thick forge
novel oriole
#

bruhh.. what should i do? im helpless

austere sinew
# elder inlet

I cant even think of an adequate threat in response to this. sigh

novel oriole
#

is no one from support here??

austere sinew
#

SHE SAID THE EXACT OPPOSITE OF YES

quick verge
austere sinew
#

SHE IS JUST WONDERING HOW TO KILL YOU

elder inlet
austere sinew
#

IN RESPONSE

thick forge
austere sinew
elder inlet
novel oriole
austere sinew
#

@sturdy thistle help me pls

elder inlet
#

@austere sinew

thick forge
novel oriole
#

this will be very disheartening for me if this dosent get resolved .. -_-

meager kernel
#

@austere sinew @austere sinew @austere sinew

austere sinew
#

@meager kernel

novel oriole
#

CGNAT

#

?

meager kernel
novel oriole
#

idk what that is

#

google says its some NAT method

thick forge
#

is like a share ip

novel oriole
#

how would i know? as i said im a complete beginner

proper tiger
#

Hi

novel oriole
#

i have basic idea of what ur saying

#

read about NAT in htb notes

thick forge
novel oriole
thick forge
#

because i dont remember well how to check if is it or not xD

#

i remember something with traceroute you can deduce it

#

but not sure, for example my starlink works with CGNAT

#

and if some ip are blacklisted in some platforms you can got banned

novel oriole
#

hey

#

i changed my ISP last month

#

could that be the reason?

#

its relatively new in my area

thick forge
#

could be, who nows

novel oriole
#

bruh wtfff

thick forge
#

works before that fine ?

novel oriole
#

i wanna kms if thats the reason

novel oriole
#

-_-

quick verge
novel oriole
#

bro this is sooo unfair w me and yeah

my university portal refused to open for some days on this new wifi

thick forge
thick forge
#

chatgipiti

#

i am working right now

novel oriole
#

kk

thick forge
#

u are smart, gonna resolve it

novel oriole
# thick forge u are smart, gonna resolve it

They are known to deploy CGNAT on many residential connections, especially if you don’t have a static/public IP add-on. That means there’s a very high chance you’re behind CGNAT, which can absolutely trigger automated sanctions on platforms like HTB because dozens (sometimes hundreds) of users share one public IP.

chat gpt said this.. im on network config webpage ill verify this once i get logins credentials from isp

#

about my ISP

thick forge
tulip vale
#

Hi guys! Can anyone help me pick a nice lab box I can use for my Uni assignment?😅

I need to do three or more boxes that covers Buffer, stack, heap overflow, and memory leaks, use after free, heap spraying and privilege escalation.

Since I am new to this, I am not finding easy to medium boxes that include these area.

Thanks!

novel oriole
#

@thick forgedudeeee

#

im behind that whatever it is

#

both my ips are different

#

WAN ip and public ip

#

on google

#

both dont match

upbeat tangle
novel oriole
#

whats the solution to this????????

thick forge
#

fly to another country

#

joke

novel oriole
#

bruhh

thick forge
#

i dont know, also you need to wait a support resopnse

novel oriole
#

i started this path w sooo much hope i dont wanna be disheartened

thick forge
#

you can use a vpn in that case, but that is not gonna remove the sanction

#

just handle possible santion if that is the case

tulip vale
novel oriole
#

chat gpt says this:
Their automated system assumes:

“Shared IP + Kali usage + VPN download = likely account sharing or abuse.”

So even after manual approval, their anti-abuse engine re-flags you automatically.

This is extremely common in regions where ISPs use CGNAT (Pakistan, India, parts of EU).

✅ This Is NOT Your Fault

You didn’t break rules.
Your network setup just looks suspicious to their detection model.

thick forge
#

well kypanz do it again

novel oriole
#

bro cuz of u i learned something new tbh

#

this is very useful infoo

#

kudos to u

thick forge
#

thats is what hacking about

obtuse fern
#

I wouldn't blanket trust GPT

novel oriole
#

ill never forget ur name kypanz

obtuse fern
#

Always look further into whatever it tells you.

#

Don't let it replace your brain

novel oriole
#

sanction*

#

ill have to believe something

#

infact htb said im good to go yesterday

#

need help.. what exactly should i tell them??

#

i have had the same conversation before

#

and it got sanctioned again\

#

this time i need assistance from ya'all

obtuse fern
#

You need to provide the information asked for

lime trout
novel oriole
lime trout
obtuse fern
#

I deleted the message bc wall of text

novel oriole
#

one complete mail ill write

#

am i missing something????

obtuse fern
#

Just have patience for a bit

lime trout
novel oriole
#

i provided them w my national id card and uni card before too and they approved me.. got sanctioned again today during an assesment which made me enraged

obtuse fern
#

Emma said she'll see what happened

novel oriole
obtuse fern
#

So just have a bit more patience

lime trout
#

I get it, it’s frustrating- something clearly went wrong here if it happened twice. I will speak with the team as I said and figure it out

lime trout
#

Or something else

novel oriole
viral wagon
#

hi

novel oriole
lime trout
novel oriole
#

i mean*

novel oriole
azure remnant
#

"smoking kills"

  • best advertiser words
open lava
#

guys ur smart right

obtuse fern
thick forge
viral wagon
#

hi

open lava
#

i cant send pics here

novel oriole
thick forge
obtuse fern
open lava
novel oriole
#

and i have student subscription as well which tells that they verified my student id

open lava
thick forge
ocean marsh
open lava
#

it s me

vague girder
#

hi, does doing boxes and exams on ubuntu work or is there something stopping us/forcuing to use parrot as they recommend?

ocean marsh
#

no way

#

that's impossible

obtuse fern
open lava
#

nothing impossible

supple plume
#

Hi chat

open lava
#

nvm

obtuse fern
ocean marsh
#

let me help you bro, let me send your gifs

supple plume
#

Hello marcie

thick forge
supple plume
#

emojiglasseslook ☝️ blue_siren bonk

#

Neeetro

thick forge
#

nawwtrooo

ocean marsh
#

ban bingbong

zealous charm
supple plume
lime trout
#

It’s a headache; but the liability is spooky

novel oriole
#

a university student should be allowed if he proves that he really is what he claims he is.. :/

lime trout
#

And is what I’m trying to figure out

novel oriole
#

but today it happened again so idk

lime trout
#

I concur, I’m trying to figure out what happened lol

warm ravine
#

Another day learning Linux, chat

#

Getting much better day by day

open lava
#

look guys i have a project i will just try to explain a part from it lets say the flow is supposed to be there an external access and the data pass through the firewall and i have a control plane that contain a ( start with context collector that push json context to OPA " decision engine " and then it will push the decision to the flask api that push the decision to the firewall and do trust scoring and some analytics ) can someone help me how i start building that control plane

#

i wish i can send the diagram its more easier to explain that from it

supple plume
warm ravine
novel oriole
#

ok so i wrote back to sh3ll and provided 2 things yet again
national id card and university card

warm ravine
#

And the "which" command

#

Very useful

open lava
#

ijust want help with the process idk how to start with it

obtuse fern
open lava
#

ZTA with honeypot and mitre ATT&ck mapping

supple plume
#

hello marcie 🥀

obtuse fern
supple plume
#

🥀

open lava
#

yeah im thinking like that like first i made the firewll since its the gateway then i setup the honeypot and tried to connect it munally and attack the firewall and direct the attacker to the honeypot and it worked well but for the control plane i felt lost what i start with the opa or the context collect or i start building the api then start connecting everything together and alll of that will be connected to the siem later

obtuse fern
open lava
#

i think the best practise will be making the context collector and then opa to test how the will flow will be then start making the api

thick forge
supple plume
#

🥀

median folio
#

I’m trying to air crack an network and it keeps saying no EAPOL data …
Anyone have any ideas ?

warm ravine
#

Yo, anyone got any friend request from @naive rapids ?

median folio
#

No :(((

warm ravine
#

Huh

median folio
#

@warm ravine

warm ravine
#

Also @supple plume

#

I got a question

#

I'm trying to find a file that is not bigger than 28k and and no smaller than 25k. Plus, it's made since 2020-03-03. I'm typing find / -newermt 2020-03-03 -size +25k -size -28k

warm ravine
supple plume
#

Bothered me

#

You have 2 options

#

Do: man find

#

Ask the clankers

frozen zinc
#

🤓

supple plume
#

man find is better for RTFM purposes

novel oriole
#

@lime troutare there any details which u might ask me? ill provide rn as im about to sleep

warm ravine
#

Like

mental thistle
#

Hello, everyone!

supple plume
supple plume
warm ravine
#

If thats the thing you expect me to see, well what should I do with it?

supple plume
#

the info that you need is there

#

in the manual

heady sage
#

hey is a missing state parameter in oauth always indicative of lacking CSRF protection?

thick forge
west venture
#

echoes please

vital oyster
#

what are yalls favorite quality of life installs for Kali?

warm ravine
#

@supple plume I should train myself which commands will react to "which" command

#

Since it only looks for executable files

#

And tells me where they are

supple plume
# west venture echoes please

I mean look it's there, the manual is big you can search through it using vim-ish keybindings and if it's still too much for you to make it one oneliner find comand you can always write a small script

west venture
snow wraith
supple plume
#

it's not going to help you finding the right files

warm ravine
exotic pendant
#

😄

supple plume
#

xd

supple plume
warm ravine
#

I did it already

#

I mean the second question

west venture
#

find -name "*stb1te"

west venture
#

/tmp/Frostb1te

supple plume
west venture
#

sudo reboot

warm ravine
#

Alr

#

Well the Find Files and Directories over, moving to the description of files and redirections

west venture
warm ravine
#

I'm gonna learn day by day

#

I love hacking and I wont stop till I learn

supple plume
#

@west venture any hacking today?

west venture
#

Nah I'm sick

#

I have fever

frozen zinc
#

a'dja'flks'lgnvsbvaczgwav

#

Ok my day is not ruined

#

worth it

supple plume
#

heck yeah

frozen zinc
#

brotherman

#

this is not an easy challenge lol

supple plume
#

I'll give it a try now

frozen zinc
#

probably will be easier for you

supple plume
#

lets see

opal saddle
#

whats up everyone new here but I am expierenced pen tester / full stack dev

#

I was in owlsec but it was full of begginers, I here HTB is for the more mature

heady sage
#

I took over my own account

#

Great....

molten bobcat
opal saddle
#

Point taken lol

heady sage
#

WHY DO I KEEP TAKING OVER MY OWN ACCOUNT

frozen zinc
supple plume
supple plume
#

even knowing the vuln is hard to exploit

frozen zinc
#

Also I think I did something that fuck up the entire instance and took me way to long to reset

supple plume
#

xd

frozen zinc
#

and when i reset the first time i skip retrying the solution for way too long xD

supple plume
#

I could be in the same rabbit hole I already thought about it

#

this kind of vuln is nasty

ornate ibex
#

REEEEEEEEEEEEEEEEEEEEEEEEE

frozen zinc
supple plume
ornate ibex
#

what are you all up to?

frozen zinc
ornate ibex
#

what notes?

frozen zinc
#

about the challenge xD

ornate ibex
#

alright

molten bobcat
ornate ibex
#

Howdy!

molten bobcat
#

Can you add me, I tried to dm but discord say no

ornate ibex
#

done

frozen zinc
ornate ibex
crimson crypt
#

Anyone work on Intercept ProLabs? FeelsBadMan

subtle plover
ocean marsh
#

@subtle plover

ornate ibex
#

GOooooooooooooooooooood Night

devout sail
#

What is she supposed to be

supple plume
#

nice styling

#

they changed it recently I believe

zealous charm
supple plume
#

lets check the source code

zealous charm
#

🚀 🚀

signal mica
#

Any assembler today?

supple plume
#

I wouldn't say is slop but it kinda looks like what vibing generates

#

ngl I like their design peepoDonutLick

exotic pendant
#

😄

ocean marsh
#

lol

misty garnet
#

Hey all, I’ve been building a security lab platform that spins up real, isolated attack environments (victim + attacker + telemetry) on demand to test vulnerabilities end to end.
Would love some honest feedback. Anyone open to a quick 15-minute walkthrough?

zealous charm
#

@maiden anvil what're you working on today, big dawg?

thick forge
frozen zinc
#

51 min game on LEC playoffs and still going

#

what a banger

molten bobcat
#

Brain bad

#

@lime trout someone moved general into serious conversation again

#

I SAW THAT YOU'VE MOVED IT BACK WHOEVER YOU ARE

austere sigil
#

it wasn't me

molten bobcat
#

The coward has done it again

#

My god, when will the anarchy end

#

The injustice!

austere sigil
#

was it you cloud?

#

I'm sure it was you

molten bobcat
#

What makes you think I have any perms at all lmao

austere sigil
#

magic?

molten bobcat
#

I think I can delete messages in the modules channels lmao

frozen zinc
molten bobcat
#

That's about it

austere sigil
#

I'm not so sure

#

I think you can move channels with your mind

molten bobcat
#

Oh please don't think I'm serious

#

I thought I was being obvious joking when I started calling out the INJUSTICE

molten bobcat
frozen zinc
#

I thought it was obvious in joking when invoking the joker xD

austere sigil
molten bobcat
#

Have you never seen a Baja Blast Mountain Dew?

lime trout
#

👀

austere sigil
#

we don't have that here

#

how does it taste like?

molten bobcat
#

And no that's my partners drink

molten bobcat
austere sigil
#

and its blue

molten bobcat
#

Teal

austere sigil
#

its that drink

molten bobcat
#

It's greenblue

devout sail
#

Green

austere sigil
#

that drink give you powers to move channels

molten bobcat
#

Sure let's roll with that