#general
1 messages · Page 409 of 1
it doesnt matter what you are using
every tool saves time
you can pick custom settings in almost every editor
we just use the one we like
VSCode is better
yes for you
Saves so much time for you to type keywords
not for everyone
lol ok
I was joking 🙃
Lol
I can’t be serious about everything like @green kite or @sturdy thistle
VIM
Vim all the way
Phpstorm is the best
I don’t like pressing key Everytime when I want to do actions
Just buy a monitor and screen share it
mcedit only
In vim

But if you want to edit 2 lines in a file, so u start vscode everytime?
Linux policy no mouse
> 
> 
> 
If you quick save, that’s ctrl + s
Don’t try to start war
I’m not pro
WHAT IS GOING ON HERE
who's yelling i just woke up
My beautiful gaming mouse has to be used - all 100 buttons and scroll settings
||Can you chill?||
Hello
Well I’m not pure Linux user. Only use Linux in vm
what up bruce
All good thanks
how do you use only linux in vim 
I’m in a very goofy mood today
How can I make it un goofy
hello, quick question, is student plan available for egypt ?
I can’t believe what I’m reading
:sh and then docker run gentoo
@austere sinew
Typical weird shit
Not cool
what is it
never seen a camel in my life
dayyum
and i dont live in the desert
is there any pyramid at least?
Works? Works
nice bbl
I played a bit more of that Infinite Arena Breakout
Now most of missions I face are kill other human persons, it's getting harder than killing bots 
💅🏻
what
@austere sinew
oh yall tagging random people
let me tag a random too
<t:1768761145:F>
@ornate ibex
@scenic maple 
sup
😄

😀
Mod aboose

I like thighs more
ah yes
Her
[[nodiscard]] static constexpr std::optional<Boolean> decode(const std::span<const uint8_t> bytes) noexcept
HER SHE EYES
public static decode(bytes: Uint8Array): boolean | null | undefined;

C++ is getting replacing get ready to rust
Microsoft planning to use rust instead of C++
The change won’t be so fast
that's a research project
Rust I think it better than C++
C++ mad old which is consider better than rust. But the safety no longer met people’s requirements
This proof no matter what language, use the one that met your requirements lol
fake news
I know I don’t believe it too. Bc if they will want to replace it there are billions line of code need to be change
it's not happening
Maybe who knows
you're spreading misinformation
@compact wave Dude, you seen this insanity? https://www.reddit.com/r/whereisthis/comments/1q78cyt/which_building_is_reflected_in_the_ikea_spoon_3d/
According to AI reconnaissance from different website
Yes, Microsoft is actively transitioning away from C++ to Rust for new development in core systems like Windows and Azure to improve security and memory safety, using AI tools to automate large-scale code translation, though a full, immediate replacement of all existing C++ code is a long-term, research-driven goal, not a sudden overhaul. While initial reports suggested a complete C++ elimination by 2030, Microsoft clarified this is a multi-year research effort to develop migration tech, not a hard deadline to rewrite everything, focusing on incrementally replacing vulnerable parts with Rus
lmao ai
ai rust
thread fl2_worker_thread panicked: called Result::unwrap() on an Err value
Even Reddit have this information too
yes which
- is what i said
- either ragebait or you cant think for yourself
They might use AI to translate those codes
^^^
from the horses mouth
Ok so they are not replacing it thanks for letting me know
horses make tasty sausage 
thanks for spreading misinformation
what? horses are delicious.
not you
windows should be re written in c++
re-writing windows is a much much larger task than many think of, even if it comes to a single core piece
reason being compilers place optimisations in place of undefined behaviour, and these undefined behaviours end up becoming behaviours that software comes to rely on
translating these weird quirks into another language is a nightmare, and very very hard to create test cases for
Yep unless they can hire enough people to rewrite the whole windows with rust
i never liked undefined behaviors
but they have always liked me
i could neevr avoid
easiest block of my life
when you know its ragebait you should enjoy it
yet you chose a programming language with more undefined behaviors than a fe-male 
- lowest barrier to entry
- has more opportunities to make money then the next 3 languages combined
- works cross platform
- almost everyone knows it
- almost everyone hates it
🐍
I just wish they gave webassembly native DOM access. javascript would be dead within 3 months.
- highest market saturation
- easiest to AI generate
- its js 💀
behold, the greatest programming language to ever be created https://esolangs.org/wiki/ArnoldC

we dont do things because they are easy we do them because we thought they would be easy
Just like changing window from c++ to rust. I don’t think it gonna be dead soon
they would never
even if they have the chance
does elixr have the lowest market saturation 
ur using something built on it right now
javacript has so many fundamental flaws, and concerning most javascript implementations are basically single-use in terms of long-term viability (<12 months life span usually), the next rewrites would be something else.
first flaw of js is having the world java in its name
true https://elixir-lang.org/blog/2020/10/08/real-time-communication-at-scale-with-elixir-at-discord/
but i am also using shit ton of js
how lol without it there is no frontend
you can write frontend easily in so many other langs
however
erlang is goated for comms
cant blame eich for it tho he thought it would be a lightweight language that nobody would use and made it in 10 days
elixr has always been on my side quest language hitlist
@molten bobcat thanks man, did it
Java does it too
elixir is wonderful 
Been learning how to write "modern C++" past few days.
21?
class Boolean final
{
public:
explicit constexpr Boolean(bool val) noexcept
: m_value{ val } {}
constexpr bool value() const noexcept { return m_value; }
[[nodiscard]] static constexpr std::optional<Boolean> decode(const std::span<const uint8_t> bytes) noexcept
{
// A boolean should be in the format { tag=1, length=1, value (non-zero = true) }.
constexpr uint8_t tag = static_cast<uint8_t>(UniversalType::Boolean);
constexpr uint8_t length = 1;
constexpr uint8_t false_value = 0x00;
if (bytes.size() < 3)
return std::nullopt;
if (bytes[0] != tag || bytes[1] != length)
return std::nullopt;
return Boolean(bytes[2] != false_value);
}
[[nodiscard]] constexpr std::array<uint8_t, 3> encode() const noexcept
{
constexpr uint8_t tag = static_cast<uint8_t>(UniversalType::Boolean);
constexpr uint8_t length = 1;
constexpr uint8_t true_value = 0xff;
constexpr uint8_t false_value = 0x00;
return { tag, length, m_value ? true_value : false_value };
}
private:
bool m_value;
};
23
dang thats bleeding edge
definitely an interesting way of thinking. Usually I just write "C with basic C++ features" like function/operator overloading, classes, some basic STL bits
finally able to get splunk to show me wtf i want
and this would be what, 5 lines in python, and actuall understandable
Yeah but this already exists in python
under the belt hit
And also I dont want to write an implant in python 
Python best programming language
scripting language 
C is king
Still a programming language
You still writing codes
now that GIL is more or less gone, python is improving fast
Wonder how much blood has been spilt in the language wars.
python's solid love the language
💀
and ruby?
ruby is fine i just rarely see it used
never give up
I learnt so much from why the lucky stiff.. I wish he was still active 
i know i write it but i genuinely think it wasnt meant for servers
shit really hit the fan there
What is the best backend lang and why is it Go ? 
Yes
depends on your goal 
If you know how to use threading module you can use multiple cores to perform stuff which is another good things too
noway
Modern tech cpu or gpu is going fast which makes Python execution faster
Today's hype is tomorrows incident
yes but you always had to do extra stuff to get basic functionality out of it. now things are less yanky.
angry you are high on your own supply
Bc people said Go works well for them.
Arena Breakout Infinite 
dollar store tarkov
After ~15 hours I'd say it's much better experience than Tarkov... I did my research before jumping in.
I have this stupid query narrowed down to 33 events
I will now manually review all of them.
hi can anyone tell me how can i start my journey as a completly new person to all of this
I personally like to use easy language bc I don’t want to spend 1000000hrs on C to code what Python do in 10min
Get Started with the HTB Beginners Bible: https://www.hackthebox.com/blog/learn-to-hack-beginners-bible
python is great. but it has limitations and not native to windows (yet)
I got today my first Encrypted Archive thing in raid... People hunted me relentlessly
I got out, barely, after running out of ammo and meds
has anyone played arc raiders
hell no
cuz i play tarkov
Yeah but let’s say if you want every language to be native on specific os then you need to use different language when you are in different platform
arc raiders is baby's first extraction shooter
Yeah, kinda enjoying it, mostly because a friend I haven't seen for ages plays it
so nice to get some social time with them
I was supposed to do more Labs tday
Tarkov = people are proud of playing ass game. That's why I didn't choose it, I chose a more chill gaming experience.
But chose to play h3 instead and take a mental break
But still had to brain the fuck outta this game 
someone yesterday tried telling me cod was better than cs
Old cods were insanely good
Mw, mw2
True cod better
Bo 1
old cs was godlike though
apparently it's growing fast
I have couple thousand hours in CS in overall, and I wouldn't say it's really that brilliant game lol
rule 1 bro
i can't ping academy targets, or connect to the web site. any idea?
not connected to the vpn
I also bought a key from market, and on my first raid I got red item from a safe 
I've been doing academy with no vpn. i'll look into tho. thank you
they require it for content
some content they don't
gotcha. thank you
this is how i feel when @undone fossil and @silver forge are here
CS stop aim stop aim. Cod you can do many tricks
Cod is more target switching
Tried ZERO Sievert? Basically single player tarkov... I think? (haven't played tarkov personally, but seen some footage)
That's quite fun.
cs requires precision
Apex requires precision
Not FPS style, top down pixel art
apex is pretty fun, but doesn't require precision like cs
Top down pixel art is best
2/3 of the time "playing" Tarkov is spent on the inventory view. then you queue for 15 minutes for a round, and get insta-gibbed by an aim botter.
i've played it, personally couldn't get into it because pve
only if you stink
On high level it does, you have to be very precise to keep the tracking up, especially against these strafing mfs
watch any streamer, they yap on the inventory screen for 20-30 minutes and then they queue, and the round takes 30-90 seconds usually LUL
nahhhhhhh
watch willerz
But stop aim shoot is boring
@sturdy thistle you were right i was wrong
I have lost interest in everything
about what lol
i want that CPU
look at that memory, your comp is like $200k
i ordered the parts like two days before rammageddon
steal from your local ai datacenter
good
footage of js devs
i'm glad froj has turned his bullying off me and to golam
😄
i would move to golang to become chad
golang 
Move to scratch
its fine im always gonna be a target
why what language do you write
honestly for most use cases golang isnt a bad choice
i think he meant @scenic maple
i personally dont like it because the syntax is 🤮
Rust is the superior language
but otherwise okay
js
cap
As Birb I agree with frog
nothing. but learning c for maldev.
lmk if u need any maldev help twin
The syntax of golang 📉
Jarvis write me a crate i can publish and never maintain
Jarvis lemme spam .copy and fill my codebase with anti patterns
if you frequently write C go is very nice
Why not use zig instead?
Go looks more like Python than C
Go implementation of multi threading is nice iirc
Not done much, but when I made something that needed it, it was smooth with a capital smoo
var: str= “”
var String= “”
when you actually type it it's like C without the annoying extra stuff
they're so far apart 😅
The ease of cross platform targets for compiling is sweet too
cuz idk. c looked easy enough. and that's what my learning platform uses mostly (maldev academy)
not when you write both C and Python
The code manage system is also azz. Why I need to put _ for a blank variable. Same with importing
yeah but if you bring python into the mix that's a whole different ball game
python is just pseudocode
its memory safe pseudocode C for the most part
wdym
depends what form of pseudocode you're looking at
*it looks like english
left
yeah i figured, and python is far more featureful than that
I was also not being 100% literal lol
either way i agree just being pedantic on pseudocode lmao
bored and arguing is fun
😭
Dang thats a cool froggy
Fix ur eyes plz
To whoever said it'd be 3 lines of python. Funnily enough it's the same line count
class Boolean:
def __init__(self, val: bool):
self.__value = val
def value(self) -> bool:
return self.__value
@classmethod
def decode(cls, bytes: bytes) -> Self|None:
tag = UniversalType.Boolean.value
length = 1
false_value = 0x00
if len(bytes) < 3:
return None
if bytes[0] != tag or bytes[1] != 1:
return None
return cls(bytes[3] != false_value)
def encode(self) -> bytes:
tag = UniversalType.Boolean.value
length = 1
true_value = 0xff
false_value = 0x00
return bytes([tag, length, true_value if self.__value else false_value])
wait i lie i cant count lmfao
can we not put C++ in general
albeit if i wanted "final" and such it'd be longer
i like not feeling suicidal
if C++ causes you suicidal ideations i dont think that's a c++ problem
i shall continue C++posting
Virus
it's a c++ problem.
nah
what's wrong with [[nodiscard]] static constexpr std::optional<Boolean> decode(const std::span<const uint8_t> bytes) noexcept
is this not evidently clear that you have a static method called decode that can be evaluated at compile time and inlined that cant raise exceptions takes a view of an array of bytes and on success returns a Boolean of which shouldnt be ignored?
the first funcs can be replaces w dataclass pattern. probably other optimizations available, too, but too lazy
yeah ofc, im just writing verbosely
but given the speed difference & LOC similarity it's not too bad, rare W for C++ honestly
I got bored so listen to this:
https://www.youtube.com/watch?v=u5NqO2v_xnY
alternatively, remove your ear drums
Provided to YouTube by HARDCORE TANO*C
Unlimited Hyperlink · Kobaryo
Unlimited Hyperlink
℗ 2023 HARDCORE TANO*C
Released on: 2023-06-15
Composer: Kobaryo
Auto-generated by YouTube.
will 2026 be the year of c++
if u join
also whatever the heck happened to googles carbon lang
So, it might be.. carbgone?
Hi everybody
btw banger resource if anyone's interested in implementing LDAP parsing / packet generation
maybe its soon to be on killedbygoogle
Combine this with wireshark as a source of ground truth and you're golden. (To show it in wireshark Edit -> Preferences -> Protocols -> BER -> Show internal BER encapsulation tokens and look at any LDAP packet)
Bright 😎
flashbang 4 u all
I would never
lets see paul allens theme
god that light theme is so abhorrently shit
i like ayu
i use this onedarkpro usually
neat
ayu dark
this one but middle?
If so, honestly not bad
Only gripe is that the light blue is somewhat complementary with the background, which would probably cause eye strain for myself
u could use the mirage one if u want
we all have pref i guess
ye
.env?
do you know how to center a div?
oh how do you center it then
easiest option is flex justify-content and align-items
I'll explain that if you explain the purpose of an operating system
but if u just have text then u can just do text-align center
assuming its a blog level element
else u can do margin 0 auto
of course sir
!!!! so eloquent
oh u know very well the only one with os knowledge here is u 
the purpose of the operating system is for you to interact with your computer, either use Windows if you are an idiot(me) or use Linux is you are a nerd(you) or use TempleOS if you are a chad(Terry)
yeah but the "purpose of an operating system" is an interesting question
no that's the peripherals
peripheral these nuts
also i use winblows
no
thats all you guys
10 or 11
to this module
i know os chat
reeeee
my 11 shat itself today
it just wouldnt install security patches
nothing else was done
i singlehandedly blame golam for the enshittification of windows 11
for no reason other than he knows js
bars
funny how 11 comes with react native and u cant remove it
unironially tho microsoft needs a new ceo
froj might hate windows now
<center>div</center>😈
nice thing is that pretty much everything is backward compatible so
i just use win11 for exp dev because "must be the latest OS or die"
more people need that mentality
what the fuck is this shit microsoft
i have that on my work pc
bro there isnt even an option to deline
I just googled "windows 11 debloat" and run couple of the tools I found. Improved my experience a lot
ye its liveable, i just cant do that for a work pc 
then again i just dev in an ubuntu vm and ignore the host
so its not tooooo bad
i ragequit 11 today
im now on arch
two days ago i was hating on linux as host and now i suffer the consequences
corporate hates this one trick
Malware development?👀
i wish your audio the best of luck
Bro this has the same symbols for the calculus class I dropped out of in high school
i spent 2 hours trying to get vms working
i think i might kill myself

i still dont like linux as a host
nooooo dont do it ur too close to a cve
yo can anyone vc
technically yes
resetting what
pc
re-setting my ballz in yo jawz
all my homies waiting for the day Satya Nadella gets replaced and we can actually have windows again 💔
Hey, is the dashboard working fine?? I am unable to scroll!
the lion installs linux just to give his fullscreen windows virtual machine 32 gis of ram
😭
this is an old vm too
i ragequit deleted my win11 vm
i still have og pe bear on this bro 😭
bro 💀
bro to what
theres so many bro things there
the fact it still has edge, the default kde wallpaper or the ram
you gotta be specific
that vm looks so much cleaner than oracle what i use
cos virtualbox is shit
vmware pro is free now
get on ts twin
bet
u got some broadcom fuckery to deal w tho
u gotta make an account now
not me tho
AUR
are u suggesting i add more or less
yeah fair
did you know this guy is the actor who played pugsly in the old adams family movie
true and real fact
if you're on arch, kvm / qemu tbh
everyday i find a new hackthebox member who has autism
you think that wasnt my first try
ok valid
3 hours of network configs
How much time account approval takes? I am waiting for about 2 weeks!
why do you think im staff

i just have purple rank because i pay
Bcz you said its freee\
whats free
vmware?
dawg your account needed approval?
😭
yes
what is broadcom doing bro 😭
It is asking for approvall
approval pending
Can happen for sanctions checks
or other various things
tl;dr we only do it when we have a legal requirement to
he meant vmware
oh
broadcom moment
i thought it was HTB
tbf i think they do the same but stricter
since iirc it falls under OFAC export controlled goods
b42
Bro is rocking a solid 9.8
Eyo guys Sup
bars
Bars of what 🥀
i genuinely found the assessment difficult
Congrats 🥳
thanks
literally just because sqlmap took forever and now the next module is sqlmap essentials xd
ENTER
show!
i love splunk
and it says someone managed 5 failed auths
thats it
and its asking me for "events over 30"
mf I'm looking at the logs with my eyes rn
there are none
That sounds normal
as opposed to your ears
the moment I tried the above RDP query

yeah i raised the issue
im still writing my BER encoder/decoder 
BER?
basic encoding rules
it's a base TLV implementation for a ton of protocols (e.g. ldap)
X.690 is an ITU-T standard specifying several ASN.1 encoding formats:
Basic Encoding Rules (BER)
Canonical Encoding Rules (CER)
Distinguished Encoding Rules (DER)
The Basic Encoding Rules (BER) were the original rules laid out by the ASN.1 standard for encoding data into a binary format. The rules, collectively referred to as a transfer syntax...
.
TLV is just "Tag-Length-Value" where Tag indicates the type of packet/structure, Length is the value's length (or 0 if no value), Value is well, the data
.
Wow you doxxed your client
good ol "WinDomain"
yo
its an absolute vibe
watching classic tv
while studying
reminds me of home
TOUGHBOOK cf-33 i5-10gen 16gb ram do you think it a good device for personal use
put ubuntu on it and yea
I use for toughbook for field purpose.
- rtl-str radio
- drone controller
- image identification
- offline AI llama3.2
- 3D modeling & printing
Windows work better I guess. All driver supported
27fps in blender is not bad I guess
i meant an external
final fantasy 16 goated
Dayum
🌩️
Good night
You probably have learned more today than most of 4 years at the university
Probably, my god
He stood unshaken, a voice in the storm
A man of conviction, a heart reborn
He spoke the truth when the cost was high
He lived for Terry Davis, unafraid to die
We are programmers, we carry the flame
We'll fight for the Gospel, we'll honor his name
We are programmers, his courage our own
Together unbroken, we'll make Heaven known
ye guys I know what I`ve done
🫵
embed fail
ok baldie
actually if you lose some weight youd look great bald
This Hack The Box Academy module is focused on pinpointing attacks on Windows and Active Directory. Utilizing Splunk as the cornerstone for investigation, this training will arm participants with the expertise to adeptly identify Windows-based threats leveraging Windows Event Logs and Zeek network logs. Furthermore, participants will benefit fro...
Nice
blud we can see your receding hairline
its a sign of testosterone
womp womp
you can be bald from low testosterone also
or excessive testosterone
or you know my test can be normal and u can just cope
@molten bobcat Im lucky that my father aint balding, bro he has heart issues and I like drinking coffee
ok low test guy
so you have low test and high iq
IQ is a bad measurement in the first place
I dunno how much test I have, never checked
it requires an early morning blood test
shiet brah I aint going to a hospital at 6 in the morning for a blood test
whatever that means
do you play any musical instruments
nah I dont have the patience for that shit, nor the money
prolly will start playing on a guitar if I move in another city
acoustic
Hey ult
Black Hole Sun
Oh, HTB cert for blueys
yo cloud you may be bored and tired human being, but I actually like ur vibe
icic
Just finished the splunk module for detecting windows attacks
im about to drink another gram of caffeine and lock in all night
inshallah
My partner ordered food
baller
https://www.youtube.com/watch?v=KYfGc1NJneI
my favourite song, what you think 
pretty cool, not the kind I would listen tho
autistic
Yo y'all
ha ha
w
im doing this soon
just finishing digital forensics as I only had it unlocked
ADHD actually but alright
Lain
What if I attack that window machine in real life. I bring a hammer, do you think that can detect this?
*** guess the letters
nop
S
no
L
See
Whats u mean the answer is abbreviation or something else
yeah the answer is abbreviation
It 3 letters
unfortunately I can't diclose it but he knows c:
yes

can u break bread
🙁
Im trying
And let me sleep lol
Did htb remove generating pictures like that for the machine couldn't find it
Definitely still a thing, think it shows when you own a machine fully user + root? URL to generate it is https://labs.hackthebox.com/achievement/machine/<user id>/<machine id>
Hey , not that one .
Please look at my screenshot 🙂
I don't recall another one to be honest. Perhaps what you are referencing has not been implemented in the new UI.
it's the one when u click "Share" u get it
share machine not achievement
allow me to show you an example
this is the one you mean
I know.
am talking about
That was the only one I knew of
The share link now only shares a link to the machines path on app.hackthebox. So, as I said, I assume it has not been implemented on the new UI.
Believe it or not, I am trying to help.
I'm even checking the routes on the backend to be sure.
iirc not all features in the old UI made it to the first stage of the new UI
is what I was told anyway
I assume this is one of those
Thanks i will send a feedback to HTB support maybe they implement it again . thanks for help .
Just describe that it's the machine profile image link, not the owned l ink, and not the share link to the machine page on app.hackthebox
It's not too complicated, I'm sure our team will understand.
Indeed, from what I can see that image route for sharing a machine is no longer available as it stands. We welcome feedback, and /feedback is the best way to give it
thank you @eternal mango , i was writing the feedback and sent the screenshot in imgur hope it will come back , i love using it in my blogs that why
appreciate the help 
I love seeing folks having fun
I was impressed he made it
what's up?
That got removed back in Feb of 2024 I think, or git history lies 🤣
noo i just used it last month
Must've been moved out of that route then to another method. I've not touched the code in.. a while
Damn it I have to find the merge now lol, it's gonna annoy me

it actually a cool feature
@fiery copper , sorry for being bitter earlier today.
hey everyone, im still new to all this and have a lot to learn, but i wanted to share something i've been working on and get your opinion.
its a tor transport bridge for sliver c2 - basically creates a hidden service that proxies traffic to sliver so your real ip stays hidden during engagements.
https://github.com/Otsmane-Ahmed/sliver-tor-bridge
any feedback or suggestions would be really appreciated, still learning and trying to improve
Finishing up crto coursework pondering how tf to get hired. I keep finding senior pentesters who only have oscp from like 2017 on linkedin and i cant get any interviews
I have so much real life pressure on me right now i feel so sad
Like who do I have to blow to get a job
it's because they got hired with that as jr pentesters then have 8 years experience on the job.
isn't blowing itself a job
^^
I know right? That used to be enough
I have a question? How enthusiastic are you about creating value for shareholders in an ever-changing digital landscape?

🚬
I would drag my nuts through a mile of broken glass just to hear a shareholder fart through a walkie talkie
down bad for the shareholders
i dont' recommend putting that in your cover letters
technically my bum ass is a shareholder by having money in a pension fund and that itself being invested in in the stock. So go ahead buddy
Im an investor in milady nft's you go first im trusted

I'm going on roadtrip to the coast with my best friend for the next 2-3 days 🙂
Gulf Coast
Sounds fun
is it programming time chat? I think it might be programming time 🔥
bruh we had 10 inches of snow 2 days ago lol
I got my soju and everything 🔥
I got a new heavier fighting stick today
Do you own a kilt?
Why? Only redditors think man kilts are cool and im not scottish
Its alright, everyone has bad days
I really want to get some good corduroy trousers
nice
I love corduroy
I wanna eat some damn shrimp and oysters this week
on a pobody
*poboy
not pobody
❤️ oysters
you ever have southern style fried oysters?
I've had fried oysters. I'm not sure if they were southern
Ngl Id have a terrible day if I go to the interview and discover that I didnt get the job
Tillamook has the hugest oysters you will ever see in your life
I wrote 74 pages on my notebook and tried to study for the requirements the company requires
the day i make a fucking dollar on the internet i will be happy
Wrote like SQL commands with definitions, syntax and examples, wrote some SQL problems, wrotes note on Manual Testing and wrote notes on Windows and Excel Troubleshooting
The internet is soo weird that youd find a way
yeah i could do 3d modeling at the moment, whatever, it's just i don't want to make a career out of that
Rewrite ebooks and sell them on hackforums and darknet markets
Pay people for vouches and you will get passive internet money
Ezpz
lol
Its true and there are methods you just have to put work in
just find apple 0-click exploits
Same deal running virtual camwhore panels or selling digital goods on private servers
focusing on web pen ,since I have exp in backend servers. Gotta focus and find your niche feels like
I used to tutor people for oscp using teamviewer for 20 dollars an hour
something like that isn't a bad idea once i'm actually knowledgeable
That's how I paid my way when I was traveling around southeast asia
Now that I'm back in the states it doesn't really go as far
are people really paying for books
Mostly money making ebooks
Like , you can make an e book about how to set up a shopify store with the oberlo extension
why wouldn't someone just consult ai for stuff like that
Well , it used to be more lucrative before ai
i can imagine yeah
i really want to do something niche though, something that requires skill that i can work towards
Are you pursuing any cyber security certifications
What are you doing or do you have any yet
im just doing htb academy going through the web pentester job route
havent looked at htb certs
An expert spending considerable time to give you his knowledge is better than 99% of llm repsponses.
If I could start over, I would do htb academy and CPTS
:o
would this be for a job
It could be yeah
i might see if i can work help desk at my local community college, idrk what im gonna do
i really just dont want to be working retail or fast food
or in a warehouse
if you get what i mean
i did that shit
I'm about " this close to a random crashout
well i did retail and commercial house cleaning
you okay 💔
Are you looking for a job also
im considering working at a warehouse unfortunately ups has a hiring freeze and that was gonna be one of my first picks
so i could advance from warehouse to ups driver
That sounds awful Why do that to yourself
i dont know what else to do
You should do what you want or nothing at all
there are plenty of warehouse jobs that are 100x better than ups
im inside my house all day thats the issue
i feel like im going insane
i just want to get out of here
I don't even pay rent , so I don't really have to force myself to do stuff like that
i want to leave my parents house and try to find a way to socialize with people because basically everyday is just grinding doing something
If you live with your parents , then great use that time to learn how to do what you really want to do
You pick up a job that you hate , then they're just going to make you do it more and that creates expectations
bruh u cant just sit in the house all day and wonder why depressed, seriously
you can
and it can be very lucrative for your career to do so
on that same note money cant buy happiness
yapping on discord isnt very productive 😄
and like does it feel good ?>
i see.. 😔
🥹
Boykisser
-# GASP HOW DID YOU FIGURE OUT
-# i thought i would be safe in this server 😭 😭
Lol
🔥
id enlist in the military if i could theyd give me some bullshit to do and id be around people
Join the chair force
isnt navy the cybersec force
if i were to join any branch it'd either be the air force or the army, i would want to work cyber even though apparently that's not guaranteed
they all are
Yeah navy is going big into cybersec
do people here do assembly and binary exploitation stuff? or is it usually like kali and high level
NSA is an option :D
i see i see
I do BOFing and assembly ye
-# whats bofing?
Buffer overflow
from what i understand itd be ideal to be in the military or have worked in the military to work for the nsa
i thought the opposite honestly 😭
it's apart of the DoD i think
Military background does help. But you have to live with the fact that you helped the great satan
💔
i don't mind to be honest
I did one in my head earlier today to see if I could remember the process entirely from memory for 32bit
it was great
What would you do if you could do anything in the world
That is a cool gig
do they still have ultra strict and incessant requirements for enlisted roles?
Do it
there was a time I was interested in 1B4 in the AF
but they wanted people with degrees and some special EPR bullshit
so now I hack for ecommerce
fk the gd gov
they have absolutely no clue how to pick talent, or didn't when I was in
how was your experience in the military did you try to switch occupational specialty
it was a -2/10, I tried to switch and was denied because I didn't have enough gold stars to impress some fucking idiot
damn
I think they stopped treating people like garbage after the mass exodus ~10 years ago
probably different now
I have heard it's better these days
what cert are you shooting for?
i guess CPTS
i was studying for CCNA but didn't really have much of a valid reason why
still gonna do that though
the more the merrier 🥳
choice



