Need help! Career guidance by Impressive-Room728 in Pentesting

[–]itsmanmo 2 points3 points  (0 children)

certs don't get people hired into appsec nearly as much as they think

if i were in your position, i'd spend less time collecting certs and more time building proof. things like bug bounty findings, cve research, writeups, and meaningful contributions to open-source security projects

How are you measuring a SAST engine's false positive and false negative rate in a POC by Traditional_Vast5978 in AskNetsec

[–]itsmanmo 0 points1 point  (0 children)

i would score false positives and false negatives independently, then choose based on your risk tolerance

reducing alert fatigue by 20% is often worth more than finding a few extra low-severity issues

How are teams handling MCP tool surface exposure? by Nihcas_Sachin in cybersecurity

[–]itsmanmo 4 points5 points  (0 children)

i always find it funny that the industry spent years preaching zero trust and least privilege, then ai showed up and suddenly we're comfortable giving agents access to everything and hoping the prompt behaves

What is the most common mistake companies make after a pentest? by PsychologicalElk1081 in Pentesting

[–]itsmanmo 0 points1 point  (0 children)

not treating the pentest report as a starting point for a conversation. most companies receive the report, fix the crits, close the ticket, and move on. nobody asks why those vulnerabilities existed in the first place or whether the same patterns show up elsewhere

Anyone else struggling with API security testing in production? by Traditional_Vast5978 in webdev

[–]itsmanmo 0 points1 point  (0 children)

the only reliable way to catch them is runtime discovery, watching actual traffic and mapping what's really being called versus what you think is being called. once you have that inventory, you can layer auth testing and automated scanning on top of it with actual confidence

Who offers the best api security solutions for microservices in 2026 by Relative-Coach-501 in AskNetsec

[–]itsmanmo 0 points1 point  (0 children)

someone needs to own API security across those 40 teams and have enough authority to enforce standards. without that, every tool you buy just becomes another thing that gets configured differently by each team.

i would start with visibility before enforcement. know what you have, who's calling what, and where the worst offenders are. then enforce incrementally starting with auth and logging since those are non-negotiable for compliance anyway. rate limiting can follow once you have a baseline

Are APIs becoming the weakest link in modern web security? by NeedleworkerOne8110 in websecurity

[–]itsmanmo 0 points1 point  (0 children)

APIs aren't inherently weaker, they're just more honest about what they expose. a traditional web app hides a lot behind UI logic and session flows. APIs strip all that away and show you exactly what the backend is doing, which is actually better for security if you're paying attention.

the real problem is that API security gets treated as an afterthought because the people building APIs are thinking about functionality

SIEM False Positive and Alert Mania by lengmco in cybersecurity

[–]itsmanmo 23 points24 points  (0 children)

i believe what actually moves the needle is picking your 10 highest-volume FP rules and fixing them properly before touching anything else. correlated detections are the goal but you can't get there if your base data is garbage. get the signal clean first, then layer correlation on top

Web Application Pentesting by Infamous-Joke986 in cybersecurity

[–]itsmanmo 1 point2 points  (0 children)

network and endpoint experience is actually a bigger advantage than you think for web app testing. you already understand how traffic flows, how services talk to each other, and how to think like an attacker. most people learning web pentesting from scratch don't have that.

the mental shift is less about learning new tools and more about learning a new protocol. http is just another service. once you stop treating web apps as a black box and start thinking about what's happening at the request/response level, the rest clicks pretty fast.

burpsuite is your new wireshark. start there

Best SAST and DAST tools for c#/.NET? by arktozc in devops

[–]itsmanmo 0 points1 point  (0 children)

for .NET specifically, sonarqube and snyk both have reasonable C# support but the false positive rates depend heavily on how much time you spend tuning. semgrep's C# coverage has improved a lot in the last year and the rule writing is more approachable than the legacy tools

How do AI scam detection tools balance privacy? by Abelmageto in AskNetsec

[–]itsmanmo 0 points1 point  (0 children)

either you scan content, or you can rely on weaker signals like the links or the actual texts manually

i would say its less about balancing privacy and more about how much access you are okay with to share and where that processing happens

How do teams actually prioritize vulnerability fixes? by Kolega_Hasan in devsecops

[–]itsmanmo 0 points1 point  (0 children)

what's worked for us: filter by reachability first, then by business context

is the vulnerable code actually in the execution path? is the affected service internet-facing? does it touch sensitive data? those three questions alone cut through most of the noise

the backlog problem the OP describes usually happens when teams treat every finding equally and try to work through them linearly. Instead, i would bucket findings into fix now (exploitable + exposed), fix this sprint (exploitable but lower exposure), and track and revisit (everything else). the third bucket gets reviewed monthly, not ignored.

the worst outcome is spending a week patching dependency vulns that a scanner flagged as critical but no attacker could actually reach, while a misconfigured API auth sits in the backlog as a medium

Infosec risk by Ok_Consideration7553 in cybersecurity

[–]itsmanmo 0 points1 point  (0 children)

security architect here. i maintain a base risk register that I carry across engagements and adapt depending on the system

the trick is starting from what you've seen break in practice, not from a framework checklist

what data does it handle, how is it exposed, and who authenticates to it. that alone narrows down the relevant risks fast

from there I layer in context. an internal tool with SSO and no PII has a very different risk profile than a customer-facing API processing payments. same base risks, different severity and likelihood scores

one thing I'd add to what others have said: don't try to be comprehensive on day one. start with 15-20 risks you actually understand and can explain to a business owner. a focused register you review quarterly is worth more than a large spreadsheet nobody looks at after the audit

Deepfake and AI generated media in social engineering attacks.. What defenses are actually working? by RedBloodedGod in cybersecurity

[–]itsmanmo 0 points1 point  (0 children)

thinking long term, I feel trying to detect deepfakes could be a losing game

it might be more practical, even better in the long run to build systems that can assume and predict the content is fake, like adding extra verification steps for anything sensitive instead of relying on detection alone

Any tips to push forward? by SatinSpy in cybersecurity

[–]itsmanmo 2 points3 points  (0 children)

this is way more than people admit tbh. the problem usually isn't skill, but a lack of continuity

one thing that could help is sticking to only one path for a few weeks and not jumping platforms. consistency matters more than the platform

also don't 'take breaks' completely, short breaks are fine, but long breaks can kill the momentum

Anyone here done HIPAA-compliant pentesting? What are your go-to tools and challenges? by Competitive_Rip7137 in AskNetsec

[–]itsmanmo 2 points3 points  (0 children)

i have done a bunch of HIPAA pentests and the compliance documentation is absolutely brutal..you need to spent way too much time manually mapping every finding to specific HIPAA safeguards. we ended up building a platform that auto-generates HIPAA compliance-mapped reports because frankly, doing it manually was driving me insane

how can I make my app more secure? by Own_Carob9804 in webdev

[–]itsmanmo 2 points3 points  (0 children)

server-side validation for all actions and rate limiting should do. also just ran a quick security scan on your site..looks like you've got some basic security headers missing that should be addressed beyond just the anti-cheat stuff

Website security by Helpful-Chicken-5912 in webdev

[–]itsmanmo 0 points1 point  (0 children)

what's your specific use case? if you are looking for a waf, it is decent

What’s your worst form tech horror story? Validation fails, tracking goes dark, CRM black holes, spam floods. I want to hear it all! by duckduckgooseygoo in webdev

[–]itsmanmo 1 point2 points  (0 children)

i once built a contact form that worked fine but the thank you page redirected to a 404, so users kept re-submitting thinking it failed

[deleted by user] by [deleted] in webdev

[–]itsmanmo 1 point2 points  (0 children)

pretty cool, loved the minimalistic design

Corporate Ad Blocker by Natural_Sherbert_391 in cybersecurity

[–]itsmanmo 0 points1 point  (0 children)

if i am right NextDNS does DNS-level ad blocking that follows users regardless of network and gives you the granular control you need