#general

1 messages · Page 88 of 1

frail turtle
#

because india is relaxed it borders pakistan too. But not to stay there right

dusky jacinth
#

I think ultramarines will do

rustic carbon
#

Aren’t those two countries beefing rn

vivid flower
#

Ive had better interactions with pakistanis

dusky jacinth
#

Same

frail turtle
#

he can go to india, but then from india go to....like....vietnam?

dusky jacinth
#

Nah

#

Korea

frail turtle
#

Korea is too hard to start a life in though

vivid flower
#

Vietnam doesnt like indians

frail turtle
#

I mean it's not impossible

dusky jacinth
#

It’s a good place to go anywhere from

supple plume
#

Spain is good

rustic carbon
vivid flower
#

I heard that some viet bars will say sorry members only day if an indian shows up

dusky jacinth
#

North obvi

#

lol

vivid flower
#

Same deal in thailand

native plume
#

Gn chat

dusky jacinth
#

Gn

supple plume
#

That changes every 4 years

gray wraith
rustic carbon
#

Uhhhhhh bs 😆

vivid flower
#

For the low low price of 100k

dusky jacinth
rustic carbon
#

Damn im low on gifs

frail turtle
dusky jacinth
#

Much more international than elsewhere

vivid flower
#

Plus NGO shenanigans which is like another 15k

rustic carbon
#

That’s the thing about America. You can go there without money and be homeless. You come uk without money and you’re put into a hotel. If I wanted to go America I would be fucked.

dusky jacinth
#

I’m here to start the empire of humanity

vivid flower
#

Low key though i got a vietnamese company to say i was a high skilled worker to get me in during covid for only a few hundred bucks

supple plume
dusky jacinth
#

Nuh uh

vivid flower
#

White monkey syndicate

supple plume
#

@lilac cipher they have your id card

gray wraith
rustic carbon
#

Broke my neck trying to read that card sadglas

vivid flower
rustic carbon
lilac cipher
gray wraith
frail turtle
#

I'm pretty sure Poland is probably a very cold place most of the year

vivid flower
#

Come to Portland it's fiery but mostly peaceful rn

dusky jacinth
#

I wanna live in Portland

frail turtle
#

it's warm?! interesting

gray wraith
dusky jacinth
#

I love the pacific nw

rustic carbon
gray wraith
#

They are too scared

rustic carbon
frail turtle
#

See I've been thinking about working construction with immigrants here in the US to avoid taxes

#

I mean when you think about it it's a smart move

rocky tartan
#

Who loves love here?

frail turtle
gray wraith
rustic carbon
#

😆

frail turtle
#

come give hallicon big huggy

rocky tartan
gray wraith
#

Id send pics of mountains but I dont have perms kek

rustic carbon
rocky tartan
dusky jacinth
#

Same

#

I love the mountains

dusky jacinth
#

The Rockies are nuts

worthy cargo
#

I am vibe coding the fudge out of some php

rocky tartan
#

I love loves ❤️

dusky jacinth
#

Rad

supple plume
worthy cargo
#

I am a dev already

dusky jacinth
#

LOL

frail turtle
#

It's a tool like any other use it well 🙂

supple plume
worthy cargo
#

I'm not new to programming/software dev

dusky jacinth
#

pwnd

supple plume
worthy cargo
#

But I love me some vibe coding.

worthy cargo
#

The most tedious part is code auditing.

#

Guiding the AI properly

#

Prompting properly.

terse dirge
#

Gcc was still testing, I just ran make install because I'm sick of waiting

supple plume
#

Nothing like writing the code myself

rocky tartan
#

Are you spiritualizing coding

gray wraith
worthy cargo
#

Nothing like having someone code for me and I just tell it what I want.

#

I also ran php static analysis on the code and no vuln

#

secure code

#

not that it runs anywhere but on the command line.

rocky tartan
#

What's the secure password

worthy cargo
#

it's not a web based software

supple plume
supple plume
rustic carbon
worthy cargo
#

so?

supple plume
worthy cargo
#

Do you not like php?

rocky tartan
supple plume
worthy cargo
#

People blindly hating on PHP is really hilarious to me.

#

Hahaha

#

Not that you hate it

supple plume
supple plume
worthy cargo
#

I'm just saying, I find it funny when people down on PHP

supple plume
#

At the same time

worthy cargo
#

PHP is a great scripting language for regular everyday tasks too

rocky tartan
worthy cargo
#

I do most of my scripting in PHP

supple plume
worthy cargo
#

php-cli bro is a great SAPI

rocky tartan
#

I only use assembly,I find it very friendly

half comet
#

How do you guys deal with your pivots breaking?

dusky jacinth
#

Cry

gray wraith
dusky jacinth
#

Yes

worthy cargo
#

Very much so

dusky jacinth
#

Especially web

supple plume
half comet
worthy cargo
#

Most of the web apps and web runs on PHP

#

Pretty Happy People

gray wraith
worthy cargo
#

SAPI = server api

rocky tartan
#

Do you like to create the universe or use existing technology

dusky jacinth
#

Everyone language is either hated or not used

minor pike
#

dropping quotes are we

worthy cargo
half comet
#

73.3% of all websites with known server side languages use PHP.

dusky jacinth
rocky tartan
#

Who likes python here ?

minor pike
#

but like most of them are old aren't they?

rustic carbon
#

Everytime I click on general I get “Done reading? Check out our modules”

terse dirge
gray wraith
rocky tartan
terse dirge
gray wraith
supple plume
dusky jacinth
#

Python rocks

supple plume
dusky jacinth
#

Yah

worthy cargo
#

DMs sent with link to repo

#

check your DMs

dusky jacinth
#

Simple baby language for a simple baby

#

All reality though

#

I hate OOP

worthy cargo
#

My entire thing is in OOP

gray wraith
dusky jacinth
#

I just don’t like it

rocky tartan
#

Is oop cool ?

gray wraith
dusky jacinth
#

I gotta learn and get good with it cause it is useful

worthy cargo
#
src/
├── BookForge.php              # Main application class
├── Commands/
│   ├── NewCommand.php         # Handles 'new' command
│   ├── BuildCommand.php       # Handles 'build' command
│   ├── PdfCommand.php         # Handles 'pdf' command
│   └── EpubCommand.php        # Handles 'epub' command
│   └── ServeCommand.php        # Handles 'serve' command
├── Parsers/
│   ├── SummaryParser.php      # Parses SUMMARY.md
│   └── GlossaryParser.php     # Parses GLOSSARY.md
├── Builders/
│   ├── HtmlBuilder.php        # Builds HTML output (web + print versions)
│   ├── TocBuilder.php         # Builds table of contents
│   ├── PdfBuilder.php         # Builds PDF output
│   └── EpubBuilder.php        # Builds ePub output
├── Traits/
│   ├── FileSystemTrait.php    # File operations
│   ├── ChapterManagerTrait.php # Chapter management
│   └── ErrorHandlerTrait.php  # Error/message handling
└── Services/
    └── MarkdownConverter.php  # Markdown conversion utilities
gray wraith
#

Its wonderful

dusky jacinth
#

But rn I find it icky

gray wraith
#

Its actually kind of beautiful

dusky jacinth
#

Nah to me C is beautiful

gray wraith
#

Well structured and organized code is an amazing sight

dusky jacinth
#

Like an old analog watch

rocky tartan
#

Do you find it satisfying to organize your files in an elegant manner ?

dusky jacinth
#

I just stepped in a puddle of gasoline 😔

rustic carbon
terse dirge
dusky jacinth
#

^^^^

#

HOW TF DO YOU ORGANIS THAT SHIT

#

I DONT GET IT

#

for scripting and everything I do IT and off sec wise I love python

rocky tartan
dusky jacinth
#

In anyway else? Ewwy

gray wraith
#

Python, js, PHP, C and stuff

rocky tartan
#

People who use classes think they're sophisticated?

dusky jacinth
#

True true

gray wraith
#

Also could add SQL to it, bash etc etc

dusky jacinth
gray wraith
#

We are cooked kek

worthy cargo
dusky jacinth
worthy cargo
#

First version of the software was one large monlithic non oop script.

#

I broke it up into classes and traits

dusky jacinth
#

That’s a smart move

worthy cargo
#

It's basically a Gitbook-cli (legacy) alternative

gray wraith
#

Easier to maintain and grow

worthy cargo
#

It builds books from markdown files

gray wraith
#

Better readability probably as well

rocky tartan
#

What do you guys think a sexy code/script would look like

dusky jacinth
#

One line

supple plume
dusky jacinth
#

A good one liner makes my second head grow

rocky tartan
dusky jacinth
#

An array

supple plume
rocky tartan
#

Be free

dusky jacinth
#

Don’t listen to him

supple plume
#

I'm afraid I'm not

worthy cargo
#
MyBook/
├── SUMMARY.md          # Table of contents (controls chapter order)
├── README.md           # Introduction/first page
├── COPYRIGHT.md        # Copyright notice
├── ACK.md             # Acknowledgments
├── GLOSSARY.md        # Optional glossary definitions
├── book.json          # Optional metadata for ePub
├── cover.jpg          # Optional cover image (1410x1825)
├── style.css          # Book styling
├── fonts/             # Custom fonts (optional)
├── images/            # Book images
├── ch1/               # Chapter 1 folder
│   ├── intro.md
│   └── section1.md
├── ch2/               # Chapter 2 folder
│   ├── overview.md
│   └── details.md
└── _build/            # Generated output (auto-created)
    ├── book.html           # Web version with sidebar
    ├── book-print.html     # Print version for PDF
    ├── book.pdf
    └── book.epub
#

That should be your book structure in markdown

gray wraith
rocky tartan
#

Bro are you flexing your tree

dusky jacinth
#

Nice

worthy cargo
#

Then ./forge build MyBook and it builds html web, html print, pdf, and epub all

graceful pendant
rocky tartan
worthy cargo
#

Is that the real life Peter Griffin?

dusky jacinth
worthy cargo
#

Looks like him

graceful pendant
#

its GABEN you heathen

dusky jacinth
#

Nuh uh

worthy cargo
#

What's a GABEN?

graceful pendant
dusky jacinth
#

Gay Ben

rocky tartan
graceful pendant
#

rate my setup guys

supple plume
graceful pendant
supple plume
graceful pendant
#

wdym,

its fire

supple plume
#

That's not your setup

rustic carbon
dusky jacinth
#

It’s on fire is what it is

supple plume
#

That's just my ashtray

dusky jacinth
#

No it’s a webcam showing the rest of the room

frail turtle
supple plume
dusky jacinth
#

They are

#

Your fear is reality

graceful pendant
dusky jacinth
#

That’s my desk rn

#

tikk3t was just at my home

#

He broke in

#

Ugh dude he was living the dream

#

I would kill to be so disheveled that I can fill a 2L bottle with my own excrement

#

KILL I say

#

Peak Network engineer activities

dusky jacinth
#

Mind your business

#

I live in a country with the freedom of speech

#

Let me live my life

minor pike
#

"former gf"

#

so ure ex

dusky jacinth
#

It’s like oop

#

I wish I had a wife

#

I don’t know how to respond to that

#

plays blues lick

tidal yoke
#

Good morning, guys

minor pike
#

fair enough

#

mb

#

im typing on a new keyboard 123 123 test test

#

the quick brown fox jumped over the lazy dog

#

its not mine

#

i grabbed it (stole) from a friend

#

lol

#

somethings off.. i swera iom not maaking these typos

#

maybe

#

i should use it as a ouhjji

#

ouji+

#

oh my god you get thje point

exotic pendant
#

😄

turbid goblet
#

😄

exotic pendant
#

little pumpkin loaf

rocky tartan
terse dirge
exotic pendant
#

was good

rustic carbon
#

I’ve tried sleeping but it’s not working

glacial crane
#

OFICIALLY

#

IM GAY

#

PLEASE RESPECT

flint epoch
#

How do I get epic fail badge

dusky jacinth
turbid goblet
#

anyone else use Axe Chocolate cologne still?

exotic pendant
#

I haven't used Axe since middle school

turbid goblet
#

oh am i not cool 🙁

exotic pendant
#

I mean you do you lol

#

As long as it smells good

lusty storm
#

Quick question, on an Internal Infrastructure Penetration Test, is the finding Domain Compromise via Attack Chain historically always a critical even though you need VPN access to internal network?

terse dirge
#

@devout sail were you able to replicate your issue with the HTB TUI?

flint epoch
#

Fffs I hope this box don't get my system trashed artificial

exotic pendant
#

I assume the VPN uses AD for credentials, so if they compromise a user, they prob can access

worthy cargo
#

Just added syntax highlighting to the html/PDF builds of the book. Now you can use markdown files to build documentation, books, etc. etc.

hazy yacht
#

why is the vip+ vpn always so laggy 😭

worthy cargo
#

no syntax highlighting yet in epub. Not sure why

lilac cipher
lilac cipher
#

Just doing honest work

turbid goblet
#

ZQA, you hopping on Barbie horse adventure again today with me?

lusty storm
worthy narwhal
#

Happy Canadian Thanksgiving

exotic pendant
#

aye

#

cups bug in motion

lilac cipher
#

Their cups runneth over

exotic pendant
#

Just a DoS

turbid goblet
#

so i finallt understand now

#

the mimikatz logo is a kiwi, not something else

frigid timber
#

hi :D

#

completely brand new to hacking, just an interested student with some spare time

kind bramble
frigid timber
#

thanks! super excited, this is something i've always wanted to learn

kind bramble
#

Nice

frigid timber
#

just got some motivation to start today

frigid timber
#

i can tell :P

#

currently learning about linux fundamentals

#

exciting stuff

kind bramble
#

Yes, I agree

teal plank
#

a

turbid goblet
terse dirge
#

still doin linux from scratch Why

#

I'm on e2fsprogs right now

west venture
#

We loosing windows 10 support today

#

Which means all 6th gen and below machines would be scrapped

quasi lodge
#

Why I found this in my bed

west venture
#

2026 will have a huge rise in Linux users fr

kind bramble
turbid goblet
#

i have non profit clients too poor to fully be upgraded yet psyduck

quasi lodge
kind bramble
west venture
kind bramble
#

sus

quasi lodge
west venture
#

Bro this anime bullshit infuriates me

kind bramble
#

why bro

west venture
#

Hate anime

quasi lodge
west venture
#

Just sucks

kind bramble
kind bramble
#

mate

quasi lodge
kind bramble
quasi lodge
#

Your welcome

quasi lodge
kind bramble
quasi lodge
west venture
#

It's not funny, it's not fun to watch, it's not entertaining, it's just a bunch of bullshit

kind bramble
quasi lodge
kind bramble
quasi lodge
kind bramble
#

Oh ok

#

ok, friend request

quasi lodge
fiery copper
#

hello

kind bramble
#

You have some sus images

kind bramble
fiery copper
#

Its my first time I joined Hack The Box, any recommendations?

quasi lodge
#

Who want a waffle ?

turbid goblet
#

i lost respect for this man

kind bramble
fiery copper
exotic pendant
#

😄

quasi lodge
turbid goblet
#

the guy with the doll

kind bramble
quasi lodge
kind bramble
quasi lodge
exotic pendant
#

sup

kind bramble
#

sup

quasi lodge
kind bramble
#

good and you, frost

exotic pendant
#

new bug approved :d so another CVE incoming

west venture
#

Generic ahh conversation

exotic pendant
kind bramble
exotic pendant
#

41st CVE

kind bramble
#

Damn

quasi lodge
kind bramble
#

I only have one

fiery copper
kind bramble
quasi lodge
#

Drink water

kind bramble
#

Ok

fiery copper
quasi lodge
kind bramble
#

Frost give us a lesson prayge

fiery copper
#

When I am a noob I feel like a toddler

#

learning to do stuff

#

except I dont burn random things

kind bramble
fiery copper
#

so can yall send me a guide on what things do I need to download?

#

in order to work efficiently?

quasi lodge
fiery copper
#

are there any working coupons?

torn cedar
fiery copper
torn cedar
frail turtle
languid laurel
#

when does the time reset for the Pwnbox free users?

quasi lodge
fiery copper
#

Hack the box is hard sheesh

#

Anyway does anyone have a repo with all of the commands for linux?

#

Going thru fundamentals

elder inlet
#

It's on F-Droid, look up Linux Command Library

fiery copper
#

In a year ill prolly have multiple books on a table going crazy

#

Or not

minor pike
#

i forgot my FUCKING PHONE on the bus

worthy cargo
#

Oh shit

minor pike
#

i am upset >:(

minor pike
#

he'll give it back

#

just a minor annoyance that i cant use it for the moment

worthy cargo
#

that's good to hear

minor pike
#

i was talking to a girl...

#

now she'll think i just dipped

lilac cipher
minor pike
#

bad idea

worthy cargo
#

I have no idea but I'm enjoying vibe coding a basic DNS recon tool in PHP 🙂

minor pike
#

ima go to federal prison if i let THAT friend talk to her

#

with the shit he tells me, oh boy i cant let him have contact with women

lilac cipher
#

He sounds based

worthy cargo
#

Er... I don't know what you're on about, but stop talking about it.

turbid goblet
#

he sounds like zqa

#

💜

terse dirge
#

lmao I can't chroot into my filesystem because the binaries and libraries got stripped too much

minor pike
#

hes just chopped

#

he'll scare em off with negative rizz

#

non much ngl

carmine pecan
#

The small but reliable laptop I used as a tinker station for 4 years has died today guys

#

may he rest in peace

#

Maybe I will now try an ARM laptop, see what's the fuss all about

minor pike
#

pretty cool

#

i know theres some mac haters

#

but i also use it for school

#

its lovely honestly

carmine pecan
#

deep down I know that if I buy a mac

#

I will become an applehead in like a year or so

turbid goblet
#

cant really do fun stuff with macs but hardly ever have to troubleshoot issues for them

carmine pecan
#

I shall resist!

#

the normieOS

#

May autism triumphs over capitalism

turbid goblet
#

go templeos

carmine pecan
#

Yes, time to rice templeOS

quasi lodge
carmine pecan
#

With your permission sir, I will steal this meme

quasi lodge
#

I have 18 fumo

frigid timber
#

what is "bloods"?

worthy cargo
#

First person to get user or root flag is called blooding the machine or sherlock

#

first blood

#

otherwise bloods is a US gang related thing

#

Criminal gangs bloods and crips

quick dove
#

um guys please new here, when configuring the OpenVPN can't i use my Oracle Virtualbox? or i gotta download VM and continue from there

frigid timber
worthy cargo
#

What do tyou think capture the flag means?

#

CTF

#

What does it mean?

torn cedar
worthy cargo
#

What's what it means

#

Great job anti

torn cedar
#

Yee

frigid timber
#

goodness, i have some major work ahead of me

#

i feel like i’m reading french

torn cedar
#

@frigid timber also since you're new to the community just a heads up, a lot of people might seem like assholes when explaining things, but they have good intentions. (Also a lot of people like to gate keep)

torn cedar
crude lynx
#

I guess people are just tired of “dumb” questions

worthy cargo
#

I haven't found any assholes on this server

torn cedar
#

Of course people are kek

frigid timber
frigid timber
#

ish

#

something i’m passionate about learning, anyway

torn cedar
#

Welp good luck

crude lynx
frigid timber
crude lynx
#

Recently I installed arch linux on a proxmox VM, now I’m thinking about installing Linux on bare metal… but all I got is just a MacBook…

fiery copper
#

Yes peak irony share a refferal within Hack The Box server, who knows.

worthy cargo
#

I use this term daily. I think it works nice. Looks good.

terse dirge
#

chat, I'm dopamine maxxing right now, I'm installing LFS while writing an argumentative essay on why companies should open source their software/code

worthy cargo
terse dirge
fiery copper
#

do you sleep?

worthy cargo
#

On Sundays.

#

I'm God.

#

Haha

fiery copper
#

based

cloud osprey
worthy cargo
#

What do you think of my cool retro term

#

I could use this as a daily driver terminal.

fiery copper
torn cedar
rustic carbon
#

:3

warped plank
worthy cargo
#

GNU screen

#

I have not used tmux so I dunno anything about tmux

warped plank
#

it come with that split term and tabs functionality?

worthy cargo
#

I made that

#

You can configure it like so

worthy cargo
#

ctrl+left/right changes tabs

#

here

warped plank
#

bro reinvented the terminal multiplexer 😭

worthy cargo
#

Check it out let me know what you think

warped plank
#

ohhh, I thought you made the functionality... you just configured the functionality

worthy cargo
#

Oh

warped plank
#

I was asking cos I liked the titles just under each split, cos in tmux you don't have those, idk if you can get them (probably can) but it'd be useful for quick switching to exactly the one you want.

spare iris
#

night all. have a good one!

dusky hedge
rose onyx
worthy cargo
#

What's there?

#

I'm in the 24th century already

#

The Next Generation

rose onyx
#

I think your gnu screen is giving you radiation poisoning

worthy cargo
#

I got a radiation suit on

#

I'm good

#

radiation doesn't affect me

elder inlet
#

But I don't do RE. I'm OSINT.... so I'm of barely any help

terse dirge
#

hehe I yapped about kubernetes in my argumentative essay

elder inlet
terse dirge
fiery copper
#

oof

elder inlet
fiery copper
#

rip Windows

devout sail
#

Windows 12 will be betterer

raven rain
#

fuck it we use Windows 10 IoT Enterprise LTSC

terse dirge
torn cedar
#

Time to convert my PC to Arch

terse dirge
torn cedar
terse dirge
hoary nebula
#

Morning chat

hoary nebula
torn cedar
terse dirge
hoary nebula
terse dirge
#

did you remove an essential library?

hoary nebula
#

Prolly

#

Idk what i did

#

Was last year

tiny canyon
#

@terse dirge 😡 🤬 🤖

devout sail
#

if i type reset and do it, it behaves

devout sail
#

all i did was htb > download vpn > labs.

terse dirge
devout sail
#

nu 🙃

terse dirge
devout sail
#

nop 💀

rose onyx
#

Who puts panic in their code? 🙃

devout sail
#

but panic should not be the option xD

terse dirge
rose onyx
devout sail
#

anyways, i saw your demo, but this nu is little annoying to work with
how does your tui read the token?

terse dirge
devout sail
#

HTB_TOKEN env var?

terse dirge
#

you need to set your HTB api token

gaunt gale
#

Will CDSA + CCD cover enough skills to get an entry level SOC Analyst role?

terse dirge
#

if not it'll panic

gaunt gale
#

In terms of skills not in terms of HR

terse dirge
rose onyx
#

😭

#

vro is yelling at me, I can feel it.

terse dirge
devout sail
terse dirge
#

it's just easier to work with in TUIs

terse dirge
devout sail
#

yeah, welp, i wont create an issue as it feels more like nushell cant handle a lil panic and breaking apart, bash seems to work great

terse dirge
#

I could add code to check but I don't wanna because it'd slow it down

devout sail
#

hehe the one im making doesnt check

#

and i dont need to check, i just call it user error

rose onyx
devout sail
#

it just gives 403 no?

terse dirge
worthy cargo
#

O_o

rose onyx
#

if token == "" { panic }

worthy cargo
#

error handling is good.

#

add it

devout sail
worthy cargo
#

actually exception handling.

#

handle errors gracefully

mystic harbor
worthy cargo
#

It only lasted 15 minutes

rose onyx
#

😮

worthy cargo
#

They wanted a background of me and what I'm about.

#

2nd interview will be technical, proctored exam

devout sail
#

is competitive = RA?

worthy cargo
#

if they select me

rose onyx
mystic harbor
worthy cargo
#

She said 65% of applicants read off ai scripts and she catches them

#

She said I didn't read off a script and she thinks I know my shit

mystic harbor
#

Didn't you. Used gpt

worthy cargo
#

Yes

#

but not in front of them

#

interview was all organic

#

i used gpt before hand

#

for 3 days I been reading gpt and job questions

#

lol

#

I need to practice speaking in a mirror

#

get my background and pitch down perfectlly

#

get better at interview questions

#

In other news, I was able to get syntax highlighting working in epub generation, and the ./forge serve MyBook starts a local dev server with hot reload and live preview. Modify any file and it auto builds the book

#

It's becoming more and more like gitbook but faster and better

#

gitbook made a 3mb+ pdf file

#

my software, same markdown sources, same images, 700kb total.

terse dirge
rose onyx
#

Or I can just add token handling because it should be there.

terse dirge
granite mantle
#

can NSA have backdoor in ghidra ?

warped plank
#

what would they need one in ghidra for? kek

granite mantle
#

then what's left to protect our privacy

warped plank
#

That's why we got the firewall chain

scenic maple
#

thats why you use analog computer

terse dirge
granite mantle
scenic maple
#

duh

terse dirge
warped plank
#

Was bout to say, didn't NSA invent the onion routing protocol?

terse dirge
warped plank
#

They even had an alphabet for it

terse dirge
#

wow

granite mantle
warped plank
granite mantle
#

and the enemy waved white flag for mercy 🙂

warped plank
subtle plover
#

Gm

rustic carbon
#

pika it’s too early

#

Feeling like a zombie

gray terrace
#

I'm gonna flat out say it, taking the CPTS, and having to deal with HTB support, I am very upset and this is probably the WORST support for an exam experience a person can have when you need help and its critical. Example. I lost an entire day due to an issue on HTB side, it happened on the weekend, they told me that they would get back to me monday, I get a message while I am sleeping on how to resolve it, I resolve it, but I never got the time back. I message support saying I would like that time refunded to me, and it takes a whole OTHER day, for them to get back to me, they do, and the response is "are you still having this issue?" while I am sleeping, like first off yes obviously I am still having the issue of wanting my time back, that doesn't resolve itself. Wake up, see the message, the message was closed and ticket closed because I didn't respond while I was sleeping?

#

What the actual hell dudes.

#

I am very pro HTB but support is not good and this is not my first rodeo with them, and something I think most of us can relate to, and when its something we pay for, and are being timed on, and something as important as an exam, I would think they would be more "on it"

#

So here I am pulling my damn hair out because I am missing a day on my exam, 4h left, and if I respond BACK to support, it will take ANOTHER day, for a response, and my exam will be over env reset.

#

Like sheesh

#

/rant

#

sorry peeps had to let that out somewhere

gray terrace
#

like I said love HTB but damn it I am heated over this

gray terrace
#

Yea its all fun and memes until you have to deal with that shit on a product you payed for on a timed exam

#

and thats the only way to get help

torn cedar
prime heron
#

like when i got auto banned and it took half a week to get it resolved

torn cedar
#

Imo your time should be refunded, actually insane that it's at a days notice for the responses.

Hopefully they can help you out in some way

gray terrace
#

I hope so too, but like I said in the end, it wont mean much when my entire exam will be reset, and ended by the time, IF they do refund me my time. Not that I wouldn't appreciate them doing so.

#

Which is why I was trying to get it taken care of BEFORE it happened lol

#

But like real talk, what kind of response is "You still having this issue?"

#

Like dude nah, I figured out how to time travel, we all G, I got my day back.

#

And I hope they are in this discord seeing this too

#

that was a whack response and you didn't even read my message.

#

Like bro deleted my message / ticket

#

I can't even see it

#

I see other messages to other support staff still when I have reached out to them

#

Wild

prime heron
#
HTB: CWES
TCM: PJPT, PNPT
Microsoft: AZ-900, SC-900, DP-900, AZ-104, SC-200, SC-300, SC-100, AZ-500
Amazon: CCP
Comptia: A+, Network+, Security+
Fortinet: NSE4
Cisco: CCNA
#

you've got every cert known to man kind

gray terrace
#

Shit thats all that would fit my friend lol

#

If I can squeeze by on this current exam I will get the CPTS if my report is accepted.

#

Then going CDSA and I will go CWEE and CAPE eventually

#

need to take a detour and do OSCP just because

prime heron
#

are you far in on the cpts?

#

like close to being done

gray terrace
#

Yea

#

Like flag 10

#

and my report is up to date on everything

#

moving to flag 11 now

#

so if I just had my damn time back I know I would get it.

sturdy thistle
gray terrace
#

@sturdy thistle can you help me man? I am not getting anywhere with support on the site about my exam.

sturdy thistle
#

DM me

gray terrace
#

Ok thank you

#

Update: @sturdy thistle is the best damn support there is and that’s why he’s a Sr. It was resolved

#

Pardon my rant but I will leave it for the sake of owning up to it

#

Thanks mick I really appreciate you man

eager gust
#

hello

prime heron
#

hello

eager gust
#

how is everyone doing?

#

just checked academy 2.0 beta

#

looking forward to its full release

sturdy thistle
#

If you have feedback, please use /feedback

terse dirge
#

yay my meshtastic node works again

supple plume
lilac cipher
supple plume
#

Who tf are you

sturdy thistle
#

Bruh

rustic carbon
#

Yo

supple plume
lilac cipher
#

Revert back to monke

supple plume
rustic carbon
#

I am finishing networking today and I already feel the burnout 💀

lilac cipher
rustic carbon
#

It's more approachable..

supple plume
terse dirge
#

it only gets worse from here

rustic carbon
supple plume
#

Hey testing pen real advice try to build something cool

torn cedar
#

@lilac cipher I hate your new pfp, but I love you

supple plume
#

A little app or something it may help you understand a lot of things

lilac cipher
#

Yall treat me like im some social media influencer trying to cancel me and shit

torn cedar
rustic carbon
#

I have so much energy but I don't feel like studying

supple plume
proud moth
#

why is Ghost in the CPTS prep track bruh 💀 the course barely covered any AD attacks and insane boxes are recommended? WAT

rustic carbon
proud moth
#

Ah yes, the pivoting, the thing that made Ghost hard, yes

supple plume
lilac cipher
#

Also @proud moth im in ur walls

rustic carbon
#

Too much work 🥲

proud moth
#

i know bruh...at this point i'm almost happy you are, i'm alone AF

lilac cipher
rustic carbon
#

Way too much

supple plume
lilac cipher
rustic carbon
proud moth
#

that's not nice i have enough sleep paralysis demons already 💀

lilac cipher
proud moth
rustic carbon
#

Bro is the protagonist of poop killer ong

lilac cipher
rugged sentinel
#

Would not recommend 1/10

lilac cipher
proud moth
#

ghost is completely insane

rustic carbon
#

Aight fuck it I'll go finish networking

#

Have fun dudes

lilac cipher
#

I only would pivoting but yeah to get there 💀

#

Ldap injector gooo brrrt

sturdy thistle
proud moth
#

the CPTS module about trusts: use raisechild, if no work, use ticketer, if no work do manual with this other script

how the exam trust relationship is going to be:

lilac cipher
#

Imagine raising children

proud moth
#

yeah that's not gonna work, but it's in the module 💀

#

module bro didn't read about krbtgt AES keys 💀

proud moth
rugged sentinel
#

melon has a point though

proud moth
#

i can't attack trusts

#

GAWD DAMN

#

pro hacker and not elite for a reason

#

gotta learn this shi today

#

HOW TO GET VIP+ FOR FREE!!! UNSTOPPABLE HACK:

#

999999999 IQ exploitation right here

terse dirge
sturdy thistle
#

banned

crimson stone
#

yo does anyone know why my javascript doesnt work in power automate

graceful pendant
#

Markup ? Markdown? im using marksideways

meager kernel
#

solved another retired machine

graceful pendant
#

rise n grind

#

gamers

#

obtain bread

wary ocean
#

hello guys im 17 year old atm and later i wanna do like something with cybersecurity or ethical hacking what and where should i learn this ( i wanna continue in this domain in university ) ( i have 0 experience btw ) ?

pure kayak
#

just give up and find something else to do

urban egret
#

@lilac cipher i am unemployed no more

uneven galleon
uneven galleon
urban egret
uneven galleon
#

which role btw

#

@pure kayak you got job after cpts?

pure kayak
#

cpts didnt help me get a job but yes, i got a job shortly after cpts

uneven galleon
#

which role

pure kayak
#

i'm a malware researcher buddy

urban egret
exotic pendant
#

😄

pure kayak
#

glowie

uneven galleon
uneven galleon
terse dirge
uneven galleon
#

is thee any relation between devops and cybersec

exotic pendant
uneven galleon
exotic pendant
#

ASUS emailed me saying they confirmed my new bug

uneven galleon
terse dirge
terse dirge
terse dirge
uneven galleon
meager kernel
#

im gonna do a module from Academy then go for some coding practice

#

and probably do another retired machine if i get the time

gray wraith
gray wraith
supple plume
lusty storm
#

Quick question, on an Internal Infrastructure Penetration Test, is the finding Domain Compromise via Attack Chain historically always a critical even though you need VPN access to internal network?

naive hearth
#

hii

undone notch
#

I found some guy that played a game for 489k hours

#

Discord didnt even exist 40 years ago

torn cedar
proud moth
#

bro played fortnite in the Cambrian Age 💀

undone notch
torn cedar
#

Something along those lines

undone notch
torn cedar
undone notch
#

I dunno how they manage to exploit big companies with experts and stuff

torn cedar
#

Every wall has a crack that can be turned into a hole

tiny canyon
#

say the same things every server i don't give a fuck

naive hearth
undone notch
naive hearth
undone notch
naive hearth
#

keep learning

torn cedar
#

But to answer your question, I would personally go study gigantic data breaches and how they've happened. Maybe some CVE's as well to get an even better sense.

Like no matter how good we get, there will always be a way to break into companies. Even if AI gets implemented into defenses there will still be a way

#

@undone notch but good luck on your journey

terse dirge
#

Yup

lusty storm
#

Wanted more opinions

terse dirge
#

Literally the same question from 11 hours ago kek

lusty storm
#

Nothing wrong with that

terse dirge
torn cedar
#

Ceald the Correctional officer

terse dirge
#

I'm going to bed chat, I'm sleepy. Too much Linux from scratch today

#

My gcc will be running its tests while I'm sleeping

torn cedar
nimble tundra
#

today i decided to organize and sort my files ....

#

result -

undone notch
nimble tundra
#

now i wonder what should i do with all that storage .....

#

lemme download GTA 6 before GTA 6

meager kernel
nimble tundra
#

chat what should i do with that space ?

5.Let it be as is
3.Create a Partition but never use it
2.Get Therapy
-1.Build GTA 6 before GTA 6
77.download Wordlists

spark birch
#

Guys hello, i have a general question. If there any difference between windows with installed VirtualBox with Linux and MacBook with UTM virtualisation with Linux?

#

Like proccessor architecture issues, etc..

#

I currently have a main linux OS and linux on vmware, but I need to know if there will be any differences if I use windows with linux installed on virtualbox or for example a macbook with UTM linux virtualization?

exotic pendant
tidal yoke
#

Hey

rustic carbon
#

It’s actually freezing in here

#

I had to wrap up like a burrito

exotic pendant
#

I emailed Gordon Ramsay

lilac cipher
exotic pendant
#

Yes

#

I was told this looks bad

#

And I sad it was terrible tasting

hoary nebula
#

Frost is flexing on us again

exotic pendant
#

Nah I posted here the other day

#

And someone said I didn’t try a valid one

rustic carbon
sweet lintel
#

Well, that can't be good.

rustic carbon
#

Ask them why the fish looks like it’s still fucking swimming 😂

rustic carbon
#

I think it’s time to hibernate

chrome tree
sweet lintel
#

... They were out yesterday? How did I miss that?

exotic pendant
hoary nebula
exotic pendant
#

It was my first beef Wellington and I didn’t know what to expect

chrome tree
rustic carbon
rustic carbon
rustic carbon
#

Does anyone know a good dongle with monitor mode enabled?

exotic pendant
#

Man

#

OSMR going away

#

It’s the last cert I gotta do

hoary nebula
#

Yuh

exotic pendant
#

I’m not ready

scenic maple
#

frost did you do any htb

exotic pendant
#

Recently?

#

No

rustic carbon
#

What’s the main difference between the HTB subscriptions? I would check myself but it doesn’t like to load on my phone. 🙂‍↔️

brave ridge
#

Where can I learn about cloud for security?

#

Does anyone have any suggestions on where to start?

heady sage
#

Try finger, but whole

scenic maple
heady sage
scenic maple
heady sage
#

Pay for it like everyone else freeloader😤

chrome tree
# rustic carbon What’s the main difference between the HTB subscriptions? I would check myself b...

Main differences are free gets access to active material(stuff that counts towards ranks and should not have writeups available. Paid gets you unlimited pwnbox time, personal instances, and retired material (which can have write ups and walk throughs).

Best thing about VIP+ is that you get the personal instances, so if you do an active box you won't have to worry about resets or coming across other people's work. The unlimited pwnbox time is nice too, when you don't have a machine with great resources or access to a vm.

https://help.hackthebox.com/en/articles/7257535-htb-labs-subscriptions *

lilac cipher
#

Golam has enterprise?

scenic maple
lilac cipher
lilac cipher
#

Gottem

scenic maple
#

sometimes you dont see it coming ~ sun tzu

heady sage
hoary nebula
rustic carbon
#

I don’t know what sub to get

unique thicket
#

Hello, what is the most used web proxy tool? Is it burp or ZAP

lilac cipher
#

Zap

scenic maple
scenic maple
#

its burp

unique thicket
#

Okay thank u

#

I was confused with the web proxy module

#

And didn’t know which one is better

lilac cipher
#

Zap gets undeserved hate

scenic maple
#

why

#

i have always wanted to write my own burp is just slow for me 20 sec startup time

exotic pendant
#

or are you talking about htb certs

scenic maple
#

htb cert

exotic pendant
#

ah no certs

#

if htb wants to vouch some, I'll take it 😄

scenic maple
exotic pendant
#

dang office outage?

#

im late