#general
1 messages · Page 478 of 1
u can squash the pc if you do that
Why backup when you can just save the manifests 
you still need a backup of etcd
No you
etcd is diff service unless you use something else
@raven rain will ping you here with the answer once i got it
thank you
np
you can use redis if you wanna be cool or valkey
too late im gonna crash out and jump down the modern c++ rabbit hole
hear me out: MongoDB 
have you guys seen the proposal for C++26 getting reflection?
"The reflection operator ^^"
go back to kuberneting vro
mongodb is not supported
i have never kuberneeted and i dont intend on it
kuberNEET
do it vro
nah
too busy writing C++ soz
it's easy (kinda when your pods aren't crashing every second and when something isn't broken)
writing a lazy evtx parser for fast parsing and searching
hopefully useful for forensics ctf speedrunning
Why does modern C++ look like rust ?!?
because its the other way around
full k8s speed run when?
great theme
C++ LETS GOOOOOOOOOO
Nahh we used generic Types before it was cool 
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 
I should get drunk and switch everything to valkey instead of etcd 🔥
why would you learn C or C++ anyway when Rust exists
because I care about performance down to the asm level
It's really nice until you get to: Higher Rank Trait Bounds, Generic Functions that take in Functions that take in Generic Trait arguments...

performance? everything runs quick on my pc already besides crysis 3
just use C?
Yeah or I could use C++ and not have to reinvent the wheel
just buy faster PC
im using spans and views to basically add quick bounded structure views to a mapped file
yes you can also run J SON
Best place to learn C++?
And that?
best place to learn Rust?
The Rust book
i have no idea
best place to learn carbon?
The Rust book and Rustlings
rust the boring things
And not even joking: The Compiler
On that note, why learn about Iron Oxide?
For actually getting practice? Projects are always going to be best. As for learning C++ concepts in an easy to digest manner? I highly recommend this fellow here. Ex EA game engine developer, now CTO of another place building game engines for robotics and such.
https://www.youtube.com/playlist?list=PLlrATfBNZ98dudnM48yfGUldqGD0S4FFb
Just learning as a whole
This is his C++ playlist, I just watch random videos when I see someone use a new syntax, very helpful
I'll check that out for sure
game engines for robotics sounds extremely cool
carbon looks neat tbh I really hope it becomes stable
carbon already is stable
no i lied hold on
no i'm not a liar
carbon is stable it has four valence electrons
👍
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
But... it still bonds with everything...
Gotta fill the 8 slots
You mean like: Result<Type,Error>?
Carbon is an only fans element, they bond with everything
i use carbon to get my bonds paid
A simple Rust one would be:
fn getRequest(url: String) -> Result <String,Error> {
minreq::get(url).send()?.as_str()?
}
-# wrote from memory, no clue if this works 
Thank you!
eew
I forgot how weird the syntax is lmao
golang
COBOL?
The function returns a Result but there's no return statement often confuses people
how about Nim
it's what kubernetes is in!! 
any Nim enjoyers????
Clearly the highest paying language is English
Sounds like a badass Mortal Kombat character
golang is infact peak
You know how many people would pay for an English tutor? 
have you seen how much teachers get paid
simple, fast, looks good!
#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.
at least in the US the pay is pathetic
one does not need OOP if one does not have OOP problems 
most of my usage just looks like this though
I have OOP problems
OOP is cool tho
using namespace std; ….
oop is one letter away from oops. that's why i never make an oopsie is because i don't believe in oop
please don't forget to attend your OOP anonymous meeting on taco Tuesday ty
Yeah that only replicates expect() not Result<> itself, unless you can pass errors up the function call chain
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;
}
ew no
lol
you can
why
namespace pollution
Yeah just saw it with the file read stuff
true
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
honestly, like all design patterns it's what you make of it
I like DSA hehe
My dad used to say “We are not getting a dog” to feeding them Costco rotessrie chicken
seeing oop as a hammer and thinking everrything is a nail is obviously incorrect
YES THIS
LOL
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
Why are yall skulling me?
cheeto used to sleep on my dad's face when he was a tiny kitten
Everyone's hammer (programming language of choice) returns to rock (ASM) in the end 
Return to monke
today i need to learn how tf custom iterators work in C++
ive never written one so this will be interesting
Didn't even know C++ had iterators 
go is great, it teaches good practices and patterns
, try it out
In Rust your custom Type just has to implement the Iter trait
for (auto& item : container) std::println("uh: {}", container.data_i_guess());
@undone fossil I found this book on a table at my school and it’s gold!
aight mr cherno has got me
So this 1 level lower than ROP?
Data is everywhere! Enhance your career and acquire new skills by taking a course on DataCamp! Click here to take the first chapter of any course for FREE: https://bit.ly/2ZrYE6O (you’ll be supporting my channel too!)
Patreon ► https://patreon.com/thecherno
Instagram ► https://instagram.com/thecherno
Twitter ► https://twitter.com/thech...
I need to get back to writing an eBPF rootkit
rop but jumps ye
It even talks about this thing called Control Flow Guard
yeah its nice because cfg only protects calls
specifically, it checks if the return address is aligned to 0x10
Hey what is Control Flow Guard?
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-...
luv nop
yeah
it cant write to x
isn't that what things like apparmor do?
https://sillywa.re/posts/flower-da-flowin-shc/#cfg-findhiddenshellcode bakki also did a post mentioning how cfg works as a part of it
that is more of access control
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
Legacyy
When performing process injection, one of the most important IOCs that make up behavioural signatures is passing execution to our shellcode. Whilst there are multiple techniques to doing so and this is certainly nothing purely “new” - in this post I want to showcase not just a “new proof-of-concept technique”, but the entire process I we...
cfg is also like access control but at memory level for services
tbf OBO is one of the hardest to exploit lol
hmmmmm, very interesting
@austere sinew ping
I wouldn’t want to make anyone suffer
wolo go away noone listen to her she's gonna slander us
@austere sinew
STFU FROJ
happy birfday
I dont trxt here in
Forever
And I have lik
20 something pings
I cant even retaliate
@terse dirge @cerulean bloom @elder inlet
i cant even retaliate
retaliates
Ciao
Oh hey I’m friends with that guy
@austere sinew
@green kite
whats up @austere sinew
All gucci
Ya hru
It’s quandale dingle here
Doing well, about go to gym
Hows your health
My health is healthing, blood tests came back and I got so mad with the nhs that I decided to start doing everything they told me not to
And at first it hurt my heart a lil but
😭
That's good
Hell yeah
Stay safe aight?
Im living it up
order some ghost pepper wings from buffalo wild wings vro
That would have killed regular me off bro
hello
The only person who can eat that is a redneck named hank
I am on mobile
Reminder to write C++ chatters
Take the propaganda from an autistic frog enjoyer on the internet
real and he's 4 beers in before 11am
In my past life I would have been a hank
Now I am only wolo
Hell yeah
@austere sinew grant me some motivation for gym
how I imagine miserable people on Twitter
Do it otherwise I’ll call your calves small
They are small 😭😭
Ryan is….. an interesting person. To put it mildly.
I wouldnt want you to suffer
if you don't go to the gym you'll spend your life doing kubernetes and being a sysadmin working as a volunteer at a cyber range like me
pweaseeeeeeeeeee
Sounds like a pretty banging life ngl
Idek where he is rn
Coward fix calves
sad
alos
our servers are like 9+ years old and our network is gigabit
we're stuck on a gig up and down
Happy Birthday! lol
IT IS NOT MY BIRTHDAY
That might be my fate, considering that I suck at solving machines and Im lazy in creating writeups
and the network is flat
because vlans are socialist propaganda
Yes ma'am.
Also.....
Any more food you flushed down the toilet lately?
happy (belated) birthday @gaunt gale - sorry I am a day late
Nyope
Happy Birthday!!!!!!
But I did deal with a racist waitress yesterday which was kind of funn
IT IS NOT MY BIRTHDAY
What did the waitress say
It’s what she did instead, refusing to serve, refusing to give the bill, to me and this other black guy meanwhile everyone else was getting served
I know, I'll send a DM when it is your real birthday
Damn
That sucks
Nah it’s funny
Hope she got the consequences
Her manager was shocked
And bar staff took over
But like
Was funny
hello doggos
I was tempted to be dramatic about it but I had to go back home so L
I feel lazy as fuck rn
Small calves small calves
Should have fought the lady
Like a little lady calves
Sexist
Get your calves boi
Alright alright
Idk why ive been feeling lazy past few days
I need to get a j*b 🥀
Real
Same
Burnt out? Low vit d,
Anemia maybe
Probably
Been on PC for so long, tryna do machines and struggling
Hello!
Vro...
I need a break
Halloooo
Shoulda escalated to the manager or whoever
I wanna go outside man
She honestly looked like such a typical low iq racist that I decided it wasn’t worth it
Like that was probably the highlight of her life
I need to professionally kubernetes chat
See this is why I like laptops
Do em outside
@heady sage how do i get better at doing machines 😭😭
@austere sinew
done the new box?
I need to refine oscp methodology
Nyope
I wanna know your main acc's HTB rank
It’s a methodology thing
i stuck at root lol
Never
It could be neither it could be both
You shall never knowwwww
I struggle at foothold and priv esc
Has anybody here read "from day cero to zero day"?
In that case you need to review said priv esc. Espically the modules on academy and do the web path on academy as well
finding unintendeds for privesc is very fun
I read it occasionally
especially because half of the machines run on vulnerable builds
can I pwease
Nice! Do you recommend?
I do
no but it sounds interesting
Cool, thanks
Nu uh
pweaseeeeeeeeee
Finding vulnerable code through a source to sink methodolgy. I’ll send you the pdf later on mate
tyyy
sounds very cool
Hmm, alright
Should be in your DMs now
It’s just a guy jogging if you like it kudos to you
Fuck other people opinions mate xD
“I dont need validation” “how does it look”
Thx man
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
"blackmarket" 
In all honesty ryan doesnt do boxes either
I have a sticker on it
Second hand shops, refurbished shops, online market
I bought mine in a charity that does recycling and refurbishing
Why is bro deleting his messages lmfao?
let him be
thinkpads are the way
dont overthink much about it
I like to talk alone
Same
If you're deleting messages for "opsec" purposes discord can see deleted messages lmao
wrong timing
for a embed fail lol
Mods can also see them
We are the deleted messages we do along the way
Definitely
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?
He has to do all the needed things
There are requirements
Read the refer page fully

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.
hello
Warl0ck ur pfp is banging i cant stop checking it
Lmao thank you
Howdy chat
2.1/10
You shouldn't care about my rating, do you like your pfp? That's what matters
do you like irish whisky?
I love businessmen
🤝
You are welcome to the Peaky Blinders
Vro
I prefer Bourbon 🥃
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
hello all
i am new here so i was checking the where i can message and where i can not
thank you , you got nice one too
Here is good, is offtopic
You'll unlock other chanels once you achieve hacker rank in htb
ohh ! i am just do academy as of now ! will it unlock channels
Vro I have no time to discuss your pfp
#modules is good many questions have been asked there so if you need some answer I recommend to search first
Grow up kid @rustic carbon
I was unaware of LetsDefend
oh thank you ! hmm most of you guys are working proffesionall or students ?
tagged the wrong guy
There are many different people here some are professionals
nice ! good too know
@rustic carbon i think you were tagged by mistake i think he was ment to tag the guy with peakyblinders pfp
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
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
Learn C + python + arduino
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
Damn this hard web challenge got hands
Kick it instead of throwing hand
Secure Notes web challenge is not easy 🙁
Gday!

Would you like a hint in DMs?
Xpath injection is really rough
I want to get to the other modules but there’s a big wall in my path
yes pls
what are the hackers up to nowadays
With pebbles?
all it has is cereal milk flavored protein, almond milk and fruity pebbles
No wonder your name is frostbite
I want some now 
Hi. Can I dm someone from stuff regarding invoice?
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!?
Ask support
Need to speak to a person? Learn how to reach our support via HTB Labs.
this is crazy bruhh
i was already tired of networking and when i finished that
i faced this
:(((
Yeah they can help u
i cant even access my dashboard
permanent sanction
bro this is sooo infuriating
i was in the middle of learning
@austere sinew @austere sinew
its the only way to get help @novel oriole
but whyyy they suddenly did this? arent they supposed to do this while account creation or something?
after a month they realized that theres a compliance issue
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
wtf happened here
clippy drinks tea
I wouldn't mind a tea rn
@meager kernel how clippy is alive in the first place
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?
is that a heart attack amount of sugar?
Diabetes you mean
It’s only 65g of cereal
For pro hacker you need like 45%
If you manage to get 100% then you will be Omni
There's a help page for rankings and ownership that tell these stuff
aha okay i see, thank you :D.
if i dont wanna do challenges but still wanna increase my rank am i just SOL?

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...
whatd u do?
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!!!

permanent sanction
probably an auto flagging by system as yesterday i got fully cleared bur rn i got sanctioned again
no idea but it immediatly happened after i opened account on kali linux
to download vpn file
and do the linux assesment
Is something else running in kali while your working
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
in academy ? or labs ?
It wouldn't happen due to kali or VMware there might be other reasons
Only support can help.
at first i was blocked out of labs.. yesterday they sent me mail that issue has been resolved.. today i got sanctioned from both
im willing to fully cooperate but want reply asap 🙁
Because once I was using parrot os and opened pentesting application and I couldn't use vpn
from a 3rd world country pakistan maybe thats why
let me try if i log from academy in a VM i got santionated or not, wait me a sec, the curious is u say u dont know the sanction reason

should i hate my country for this or what?
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.
Tried the website support portal or just mailed ?
I always do, lol
cant see support on my dashboard from where tickets can be opened
u can try
i did my networking assesment on kali as well last month but faced no issue only this time
ill be heartbroken if this dosent gets fixed ...:/
can you check if you are running tor in your kali machine ?
how?
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

u mean in cmd?
'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
Type it without any changes
curl ifconfig.info
wdym?
is with curl before
Copy and paste it
dont share results
both are matching 100%
ok
what can i conclude from this? never used curl before
i hope support atleast tells me the reason for the sanction
windows doesnt have ifconfig
what is the problem?
permanent sanction on htb account
i log in from the VM, nothing happends, i log in fine
cant acces labs or academy
maybe country things
que weas con las weonas de weones cabesa webo
Are you in a sanctioned country?
why?

as i said i once did it before and completed a whole assesment of networking section last month
sanction?
im in Pakistan idk if its sanctioned or not but probably is cuz its a 3rd world country
akjsdkaj
I dont think its sanctioned or smth
Shouldn't be as far as I know
the moment i created my account i wasnt allowed in labs lol
but was given access of academy
wasnt allowed?
what did it say
sanctioned
maybe country could be
ofc im not ready for labs but i was exploring the site
Try vpn to change the country
now yesterday they confirmed that issue has been resolved i provided them w my national identity card and university student card
first time hearing this
but today after opening on kali i got permanently sanctioned
anyone know how to launch a exe but I don’t want like any logs
How can I do this
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
i dont think it will make any difference as account itself has been sanctioned
check your email, if you got sancionated you dont got a notification about it including the reason ?
i discussed this matetr w chat gpt too.. it said most likely country is the reason lol
or system auto flagged me
not at all.. infact i received a confirmation of my account getting restored yesterday lol
i am not sure about this, let me check the htb ranks, if i see pakistan country it means is not sancionated
sure but of what? support mails or interface?
interface
that would help bruh im sooo sad rn u cant imagine
What was the reason you got banned before
he didnt get banned as he says
i got a question
Its a problem with sanctioning
can you check dms
nice pfp
@novel oriole i see pakistan flags in the rankings table so i am 90% sure is not a country issue
compliance issue\
idk what that is i sent all my details and they even verified me
do you check your email ?
i am curious because in the most cases they mentioned the reason of why you got santionated

arrely.. i opened and i saw their reply which came yesterday which fixed my account from old sanction today i got new sanction lol
WHAT
Wsup
they verified me once so this probably has to be some auto action by thier system
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
Firing up 62 ctfs in two days
Feel so great
could be, but in that case if they have automated system to flag things they need to have a reason, thats why i am curious about you got santionanted and you say no reason mentioned, i think the reason is mentioned somewhere
anyone? Solution: I cant see it in the academy but inside the https://app.hackthebox.com/home
where do u think is it mentioned cuz i cant find any mail related to this or anything in my interface
pick the call option 🤣
bruhh.. what should i do? im helpless
I cant even think of an adequate threat in response to this. sigh
is no one from support here??
SHE DID NOT SAY YES
SHE SAID THE EXACT OPPOSITE OF YES
Right now you can just wait to get a reply from the support in the mean time try something new
SHE IS JUST WONDERING HOW TO KILL YOU
But it's opposite day, so it is a yes
IN RESPONSE
in emails maybe, in the most cases when you got banned for something u got a insta email mentioning the reasons
NO IT IS NOT

Let's goooo
i never got any.. i can send u all their mails in dms
@sturdy thistle help me pls
@austere sinew
is not necesary, i dont gonna read it xD, i am just curious, for now you just need to wait a support, but this time remember to ask the reason to see how to handle not happend in the future
exactly im trying.. lets see what they say
this will be very disheartening for me if this dosent get resolved .. -_-
@austere sinew @austere sinew @austere sinew
@meager kernel
u are behind CGNAT ?
Hru
is like a share ip
how would i know? as i said im a complete beginner
Hi
i think with traceroute you can deduce it, ask to chatgpt
why is it needeD?
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
hey
i changed my ISP last month
could that be the reason?
its relatively new in my area
could be, who nows
bruh wtfff
works before that fine ?
i wanna kms if thats the reason
i dont exactly remember whether i did my networking assesment on old wifi or new
-_-
It mostly isn't but there is a small chance
bro this is sooo unfair w me and yeah
my university portal refused to open for some days on this new wifi
try to check if your new ISP and your computer are working behind CGNAT
can u guide me?
kk
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

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!
@thick forgedudeeee
im behind that whatever it is
both my ips are different
WAN ip and public ip
on google
both dont match
Here are some suggestions on machines that fit your descriptions:
"Retired", "October", "Buff" "BigHead"
whats the solution to this????????
bruhh
i dont know, also you need to wait a support resopnse
i started this path w sooo much hope i dont wanna be disheartened
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
Hmm thanks! will have a look at it. Do you have any more suggestions in mind?
Free ones too maybe!!
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.
I wouldn't blanket trust GPT
ill never forget ur name kypanz
since theres no mail from htb mentioning a reason of my santio
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
You need to provide the information asked for
This has nothing to do with sanctions.
i did before... got approved yesterday
I’ll poke the team, this isn’t right - but also send an email
Sounds like sh3ll responded to them already
I deleted the message bc wall of text
can u tell me for once what should i do to never face this again?
one complete mail ill write
am i missing something????
Just have patience for a bit
It getting approved should’ve been the end
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
Emma said she'll see what happened
i can send u their confirmation MAIL TOO
So just have a bit more patience
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
By assessment do you mean exam?
Or something else
yup tysm before u go.. im ready for any additional verification too like video chat w team or live pic etc
hi
i eman linux tasks basic assesment not exam
I don’t think that will be needed but I’ll make note
i mean*
yeah and when it happened? while i logged into my account on kali linux which i was running in vmware.. why? pwn box is very slow thats why
"smoking kills"
- best advertiser words
guys ur smart right
Being logged in on kali linux in vmware has nothing to do with it
hi
i cant send pics here
ikr i did network tasks on it too but thats how it happened this time
i want full access of htb ik im not ready for labs rn but i wanna navigate that area too
needs hacker rank to send embed things
Correct; need hacker rank or higher

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

why teto so mad bro
it s me
hi, does doing boxes and exams on ubuntu work or is there something stopping us/forcuing to use parrot as they recommend?
That likely isnt what triggered the sanction. Have patience while Emma pokes the team and sees what's up
nothing impossible
yup yup im waiting
Hi chat
nvm
There's no specific OS requirement
let me help you bro, let me send your gifs
Hello marcie
ban bingbong

@subtle plover
Sanctions tl;dr are when governments really don’t like you, and want to stop people from doing business with you.
We have a legal obligation to ensure that you are not that person if there is certain, similar information such as a same name etc
It’s a headache; but the liability is spooky
a university student should be allowed if he proves that he really is what he claims he is.. :/
That was the purpose of the original stuff, why it happened again I have no idea
And is what I’m trying to figure out
i got green flag from their side yesterday via mail so i should expect regaining access i think
but today it happened again so idk
I concur, I’m trying to figure out what happened lol
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
what have you learned today
Editing files on terminal, understanding how to find and delete them, filtering to find the target file
ok so i wrote back to sh3ll and provided 2 things yet again
national id card and university card
ijust want help with the process idk how to start with it
good
Sounds like a capstone project from uni which you should be capable of doing without others
nah itsnot for college its more like personal one
ZTA with honeypot and mitre ATT&ck mapping
hello marcie 🥀
The best way to start is break it into pieces, get A working, then B, then C instead of focusing on it as a whole
🥀
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
Start small proof of concept stuff, so that you can scale it.
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

🥀
I’m trying to air crack an network and it keeps saying no EAPOL data …
Anyone have any ideas ?
Yo, anyone got any friend request from @naive rapids ?
No :(((
Huh
Do you know what EAPOL even means?
@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
I remember this shit

🤓
man find is better for
purposes
@lime troutare there any details which u might ask me? ill provide rn as im about to sleep
I mean, I'm on a machine
Like
Hello, everyone!
open the terminal and type
man find
hi
It just gives me the general commands manual
If thats the thing you expect me to see, well what should I do with it?
hey is a missing state parameter in oauth always indicative of lacking CSRF protection?

What if.... It's.... Just not?
echoes please
what are yalls favorite quality of life installs for Kali?
@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
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
Uninstalling outdated tools when I really need them and reinstalling the latest ones

how is finding the location of the binary of your find command going to help you?
it's not going to help you finding the right files
I mean.. I just wrote which xxd and showed me
😄
xd
"which" command is not going to help you with this
Not this
I did it already
I mean the second question

find -name "*stb1te"
/tmp/Frostb1te
it's better that you know what does the command, then you'll almost never need it again
sudo reboot
Hmm
Alr
Well the Find Files and Directories over, moving to the description of files and redirections
Operation completed successfully
I mean
I'm gonna learn day by day
I love hacking and I wont stop till I learn
@west venture any hacking today?
heck yeah
I'll give it a try now
lets see
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
😂
Point taken lol
WHY DO I KEEP TAKING OVER MY OWN ACCOUNT
You want me to borrow you mine?
it's called taking ownership 
Yeah spotting the vulnerability even the CVE was easy, but took me hours later to finally get the flag
Also I think I did something that fuck up the entire instance and took me way to long to reset
xd
and when i reset the first time i skip retrying the solution for way too long xD
I could be in the same rabbit hole I already thought about it
this kind of vuln is nasty
REEEEEEEEEEEEEEEEEEEEEEEEE
I was thinking about how do you reset the real life target?💀
if you brick the app you probably have to wait until someone redeploys it xd
what are you all up to?
No bueno
writing notes
what notes?
alright
Howdy sir
Howdy!
Can you add me, I tried to dm but discord say no
done
He is lying
Yes, I'm
Anyone work on Intercept ProLabs? 
No ping the bingo
@subtle plover
GOooooooooooooooooooood Night
What is she supposed to be
Ai slop
lets check the source code
🚀 🚀
Any assembler today?
I mean it's probably AI asisted but I noticed they have their own nice css library of utilities
I wouldn't say is slop but it kinda looks like what vibing generates
ngl I like their design 
😄
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?
@maiden anvil what're you working on today, big dawg?

Brain bad
@lime trout someone moved general into serious conversation again
I SAW THAT YOU'VE MOVED IT BACK WHOEVER YOU ARE
it wasn't me
What makes you think I have any perms at all lmao
magic?
I think I can delete messages in the modules channels lmao
That's about it
Oh please don't think I'm serious
I thought I was being obvious joking when I started calling out the INJUSTICE
I thought it was obvious in joking when invoking the joker xD
what are you drinking? that looks so natural
Have you never seen a Baja Blast Mountain Dew?
👀
And no that's my partners drink
Hard to describe, lemon lime and.. some tropical fruit soda
and its blue
Teal
its that drink
It's greenblue
Green
that drink give you powers to move channels
Sure let's roll with that






☝️

