Main Menu

Recent posts

#1
https://thebulletin.org/2025/09/the-risks-in-the-protocol-connecting-ai-to-the-digital-world/#post-heading

model context protocol (MCP) is comin' to town, best get ready.

It runs on HTTP according to docs here: https://modelcontextprotocol.io/docs/getting-started/intro

So, I hope it can also run on HTTPS, but then there's the fun times about making sure all the encryption is done right and is made quantum-resistant when those ciphers are ready.

Communicates via JSON over HTTP.

I need to read the rest of the articles now...  :XD:
#2
Certifications and Careers / Re: Current Certification Goal...
Last post by deanwebb - Yesterday at 07:13:35 PM
Quote from: Otanx on September 23, 2025, 05:16:54 PMCongrats. Was it one of the ISC2 certs? Those are pretty well recognized.

-Otanx

This was a Qualys one. I'm next planning to do some AI Security courses with ISC2.
#3
Certifications and Careers / Re: Current Certification Goal...
Last post by config t - Yesterday at 11:54:05 AM
I still want to pick up the ZT cert through CSA
#4
Certifications and Careers / Re: Current Certification Goal...
Last post by Otanx - September 23, 2025, 05:16:54 PM
Congrats. Was it one of the ISC2 certs? Those are pretty well recognized.

-Otanx
#5
Certifications and Careers / Re: Current Certification Goal...
Last post by deanwebb - September 23, 2025, 04:43:46 PM
I picked up my first cloud security certification. Feels good. :smug:
#6
Certifications and Careers / Current Certification Goals
Last post by deanwebb - September 18, 2025, 10:01:45 AM
Well, I signed on at ISC2 and I'm going to work on clearing the intro cert for cybersecurity and then going on to the cloud and AI certifications, whatever they got there. This is self-directed training on my own dime and time.

Internally, I'm going to work more on product training in Cloud / AI areas and getting up to speed in those venues. Traditional network stuff I got down very well, and finding out that AI security is basically an IPS/WAF for the AI inputs and outputs helps to put that security in context.
#7
Forum Lobby / Re: old Cisco hardware value
Last post by icecream-guy - August 18, 2025, 06:26:09 AM
I got 30 bucks (US) a the recycle center for a bunch of old gear and a box of cables.
#8
Forum Lobby / Re: old Cisco hardware value
Last post by deanwebb - August 05, 2025, 11:21:04 AM
I recycled my old gear. Getting 50 bucks and postage wasn't worth lugging it around and trying to ram it into a box.
#9
Forum Lobby / old Cisco hardware value
Last post by icecream-guy - August 03, 2025, 06:36:30 AM
does old cisco hardware have any value anymore, 2900 & 3550 switches, 3600 routers?  or is it time for the electronics recycle? I see maybe 50-60 bucks on ebay. but there are a ton.
#10
Homework Help / Re: Computing CRC (used to fee...
Last post by deanwebb - July 22, 2025, 08:32:06 AM
Well, time for me to do a deeper dive into CRCs...

In networking, the CRC is typically calculated on the fly as the data goes out of the network interface and is added to the end of the transmission. There is a SHA checksum with the data that is actually used to check for data integrity, so the CRC in networking is for the datalink to determine if there are any bit errors. CRC itself is too lightweight to do a proper integrity check, which is why the SHA checksum is included with the data set proper.

In environments with low to non existent error rates, CRC can be seen as redundant, especially with TCP data being sent with a SHA checksum on it. In operational technology (OT) environments, however, where the gear is thinly provisioned and data transmission is a priority, the CRC is used on the OT protocols as a quick and easy way to determine if the data arrived completely or if a retransmission is required.

For your case, the maths are by the sending system. Honestly, it does not matter what algorithm is used, so long as it's the one for the protocol being transmitted. Humans do not calculate CRC. :)

The data, 1010, will be manipulated until the system gets 0 and a remainder. The remainder are the CRC bits.

https://en.wikipedia.org/wiki/Cyclic_redundancy_check#Computation shows a sample calculation.

But in the real world, we don't look at the CRCs. We *will* look at CRC error rates on a device and, when they get too high, will consider corrective action on the hardware or connecting media.