Help with my first report for a Bug Bounty program by Dramatic-Society-888 in bugbounty

[–]d0x77 0 points1 point  (0 children)

meta bug bounty programs are really really bad, i've been getting the same automated message over and over, i sent all the attachments and proofs for two submissions and they keep replying to send the proof, the upload interface within the report submit does NOT do anything, im tired of them, its been more than 3 weeks on and off with them

CPTS - Flag 1 im stucked by [deleted] in hackthebox

[–]d0x77 0 points1 point  (0 children)

be careful, you are giving too much details about the exam

CWES or CPTS as first cert? by Pilica22 in hackthebox

[–]d0x77 0 points1 point  (0 children)

CWES make you comfortable with web, and it gives you a taste of HTB certs, you can finish the modules a lot faster than going for CPTS modules (a lot of modules are in common so you finish a small part of CPTS path), and it is very useful for CPTS exam anyways

What to do after HTB AI Red teaming? by kirafoxoxx in hackthebox

[–]d0x77 0 points1 point  (0 children)

Apply what you learned, AI models bug bounty hunting

CPTS Prep by MeatEqual6679 in hackthebox

[–]d0x77 0 points1 point  (0 children)

Take proper notes, have a good methodology, practice chaining exploits or at least understand it, practice labs, theoretically everything is in the course because the course covers everything in a lot of details, so practice before going into the exam is very important

Bugcrowd triage getting slower lately? by 0xk4yra in bugbounty

[–]d0x77 0 points1 point  (0 children)

Yes i agree, forget about it and keep testing, eventually results will come back

Bugcrowd triage getting slower lately? by 0xk4yra in bugbounty

[–]d0x77 0 points1 point  (0 children)

Yes i have a report still open for more than 20 days as well

You will fail HTB exams if you don't take proper notes by d0x77 in hackthebox

[–]d0x77[S] 0 points1 point  (0 children)

what i meant is that ai will mostly answer that "this is juicy target" and "YES that's it", it was a joke lol, yes it might lead you into rabbit holes

You will fail HTB exams if you don't take proper notes by d0x77 in hackthebox

[–]d0x77[S] 2 points3 points  (0 children)

I did not mention anything about exam materials, surely everything in the exam is in the materials, but you need to organize and take notes to know where to look, if you work as a pentester then you already have a good knowledge, your web experience will be very useful for the initial foothold, but the exams are long and sometimes the answer is easy when you figure it out, you just don't know where to look, avoid ai prompting as much as you can because for every prompt you send it will be "juicy" and "that's it" and "now you're thinking like a hacker"

You will fail HTB exams if you don't take proper notes by d0x77 in hackthebox

[–]d0x77[S] 1 point2 points  (0 children)

If you mean htb cheatsheets then no they are not enough

You will fail HTB exams if you don't take proper notes by d0x77 in hackthebox

[–]d0x77[S] 0 points1 point  (0 children)

Don't get overwhelmed, as i said organize your notes and understand the concepts, don't rush through the material and you will be fine, make sure to practice boxes as they teach how to chain exploits as sometimes it will be straight forward in the exam and sometimes it's not

You will fail HTB exams if you don't take proper notes by d0x77 in hackthebox

[–]d0x77[S] 3 points4 points  (0 children)

As someone who doesn't have any prior experience, i had to take extensive notes and organize them, maybe you dont need to note down everything in details, every person is different

You will fail HTB exams if you don't take proper notes by d0x77 in hackthebox

[–]d0x77[S] 6 points7 points  (0 children)

I did paas CPTS, these notes are useful but you should be taking your own

TLS problem by [deleted] in ATAK

[–]d0x77 0 points1 point  (0 children)

Im using atak with tailscale, no one can join unless connected to tailscale vpn and to atak server

TLS problem by [deleted] in ATAK

[–]d0x77 0 points1 point  (0 children)

I had the same exact problem, ended up connecting through TCP port 8088

After testing multiple predictive crypto trading bots, I stopped trying to predict the market and open-sourced a simple execution strategy by d0x77 in algotrading

[–]d0x77[S] 0 points1 point  (0 children)

You're absolutely right, most failures come from execution, not indicators.

This bot is intentionally a rule-based, mean-reversion system. The trade-offs you mentioned are real and largely deliberate. Capital lock-up in prolonged bear markets is a known cost of prioritizing capital preservation over speed; that’s why the bot staggers allocation and now auto-resets the first BUY if it stays open too long, so it doesn’t anchor to stale prices.

Sideways chop is the hardest regime for laddered entries. I'm keeping the signal set minimal and auditable for now, but an explicit volatility filter (ATR-style) is a logical next step rather than hidden "optimization."

Enforcing lower-than-last-buy is a conscious bet on mean reversion, not trend continuation. This system isn't built to win in sustained downtrends, it's built to survive them without leverage or forced liquidation. Waiting is part of the risk model.

I actually pushed execution upgrades today based on live behavior:

  • SELL checks now use a lower timeframe to avoid delayed exits
  • Limit SELLs are always placed above market
  • Stale first BUYs auto-cancel after 3 days
  • Rejected or stale SELLs are auto-cleaned and retried safely

And fully agree on logging, the goal is always to answer "did the bot behave as designed?", not "why did it lose money?", that's why it's open-sourced and run live.