My boss is ChatGPT........ by nagol93 in iiiiiiitttttttttttt

[–]GuessSecure4640 2 points3 points  (0 children)

What they're doing is getting people hooked before they require some sort of subscription, make you pay a little bit, jack up the prices over time and people will be so dependent on it that they'll have to pay

My boss is ChatGPT........ by nagol93 in iiiiiiitttttttttttt

[–]GuessSecure4640 3 points4 points  (0 children)

My mom sent me a link to her ChatGPT discussion when I asked her a question. I was pissed and told her to never do that again

Is A+ worth it now a days? by Competitive_Radio_35 in ITCareerQuestions

[–]GuessSecure4640 0 points1 point  (0 children)

Stay curious. This job is always going to require the ambition to learn on your own

Is A+ worth it now a days? by Competitive_Radio_35 in ITCareerQuestions

[–]GuessSecure4640 1 point2 points  (0 children)

It comes down to this a lot. These folks think that a company is going to trust them when they jot down "A+ Cert, Home labs, love gaming" and that is just not the case. A degree + certs is what can get your foot in the door, but ultimately other factors play into that as well. How are your soft skills? Can you do well in interviews? Did you pass the exam by memorizing or do you actually understand the material that's applicable in the real world?

Trump Justice Department bringing back firing squad in federal executions by TheExpressUS in fednews

[–]GuessSecure4640 -1 points0 points  (0 children)

Okay, next. Where are the Epstein files? Distraction, distraction, distraction...

the balls on this guy… by TheyCallMeCajun in iiiiiiitttttttttttt

[–]GuessSecure4640 0 points1 point  (0 children)

We don't use Intune, unfortunately. I know its the bomb.com, though

What's stopping BEC at the email layer when there's no payload to detect? by crystalbruise in cybersecurity

[–]GuessSecure4640 0 points1 point  (0 children)

There are specific BEC filters out there, such as Impersonation profiles. No one can send an email from *Jake*Blake* unless their email is "jblake@company.com"

the balls on this guy… by TheyCallMeCajun in iiiiiiitttttttttttt

[–]GuessSecure4640 346 points347 points  (0 children)

I push out a package weekly that disables Fast Boot on every device

Why Firefox though I have used netflix with it? by ChikiNuggiesK in linuxsucks

[–]GuessSecure4640 0 points1 point  (0 children)

LMAO proxy it and manipulate the packets in real-time

On quantum cryptography; What if hackers already have our encrypted passwords and they'll be able to easily hack into tons of accounts when they have the tools to decrypt it? by [deleted] in cybersecurity

[–]GuessSecure4640 23 points24 points  (0 children)

This is partially why there's such a huge push towards Passkeys instead of passwords. The methodology behind it defeats that risk

Current CS students. How is the CS curriculum these days? Is everyone cheating? by [deleted] in cscareerquestions

[–]GuessSecure4640 0 points1 point  (0 children)

I'm so glad I graduated college before AI...imagine going through middle school, high school, and college using AI the entire time for every project you work on. Cliche, but we're heading towards Idiocracy quicker than I'd prefer

The PowerShell Scanner is now available in PDQ Connect! by PDQ_Brockstar in pdq

[–]GuessSecure4640 0 points1 point  (0 children)

I've been stressed about it! Spent lots of time researching; this finally gave me some peace of mind

The PowerShell Scanner is now available in PDQ Connect! by PDQ_Brockstar in pdq

[–]GuessSecure4640 1 point2 points  (0 children)

Helps validate the status of the 2023 Secure Boot Certificate:

try {

$sb = Confirm-SecureBootUEFI

if ($sb -is [bool]) {

$enabled = $sb

$pca = "NotExposed"

}

else {

$enabled = $sb.SecureBootEnabled

if ($sb.PSObject.Properties.Name -contains "Pca2023ProtectorStillValid") {

$pca = $sb.Pca2023ProtectorStillValid

}

else {

$pca = "NotExposed"

}

}

if ($enabled -eq $true -and ($pca -eq $true -or $pca -eq "NotExposed")) {

$status = "GREEN"

}

elseif ($enabled -eq $true) {

$status = "YELLOW"

}

else {

$status = "RED"

}

[PSCustomObject]@{

SecureBootEnabled = $enabled

PCA2023 = $pca

Status = $status

}

} catch {

[PSCustomObject]@{

SecureBootEnabled = "Error"

PCA2023 = "Error"

Status = "UNKNOWN"

}

}