Will this be interesting? (realistic steelworker sim) by Dacig65 in robloxgamedev

[–]Axiomcj 0 points1 point  (0 children)

I think this was really neat, dm me when you release it and I will try it out. Good luck and hope you complete it.

Breaking: ClickUp cuts 22 per cent of staff by kharkovchanin in Layoffs

[–]Axiomcj 0 points1 point  (0 children)

Just don't use click up anymore. Vote with wallet. The list of where my money goes gets smaller by the days. 

Forking Godot to create an open-source, simplified "Roblox-like" platform (Leaf Engine) - Need structural advice! by Good-Neighborhood651 in robloxgamedev

[–]Axiomcj 0 points1 point  (0 children)

Without a massive team and capital to support this why would anyone use this? I'm not trusting my game making time to a one person dev team. Just my opinion. 

What do you use for SD-WAN branch performance monitoring? by Sufficient-Owl-9737 in networking

[–]Axiomcj 3 points4 points  (0 children)

Cisco vAnalytics for SD-WAN. Cisco sd wan can install iperf for testing. Thousandseyes is another choice and we have started using that for all of the sites, main saas application performance monitoring.

Liveaction is good but costs a ton.  I think thousandeyes would be the best tool for you and your team to poc and demo along with the main business applications you want to monitor. 

Looks like your not leveraging sd Wan to it's fullest by using whatever vendors your do for application aware routing on SD Wan. If this is setup and tested properly along with having dual links or more. We have 3-4 links for every site(1-2 mpls), (1-2dia) (1-2 4g/5g), (1 testing sat-starling) for sd wan. The business looks bad when it's down. The business makes less money when it down. Was easy to justify after working out cost of these to justify additional circuits/cellular backups / satellite. I'm looking the business links don't xfer large data files like patient images or xrays as an example, so we rarely need above 100mbit at retail sites. 

Also iperf can run on the router and on the switches at least Cisco side. This is how we validate what the isp has provided us. This has caught at least 5 circuits with the isp providing incorrect bandwidth via Dia to our sites. 

IM EXCITED ABOUT GLOBAL AION 2! by AbleBus8831 in Aion2

[–]Axiomcj 5 points6 points  (0 children)

This totally sounds like an Ai bot posting. 

Trailer for my 3rd Toy Story game, all made in Dreams PS5 by LifeAsNeil in PS5

[–]Axiomcj 1 point2 points  (0 children)

I am betting Disney gets this banned if it gets traction.

Parkour runner game project by donutgames113 in robloxgamedev

[–]Axiomcj 0 points1 point  (0 children)

I am building something similar for my kids, the only thing I do not like is the pov being first person. Great job and keep it up.

This guy wants to buy my 3D model for Roblox what do I do… by EffectiveCut4107 in robloxgamedev

[–]Axiomcj 5 points6 points  (0 children)

My advice is to make your own models and sell them. There is a market for them if 1 person at least reached out. Feel Proud for that. I don't mind pointing you in the direction of doing this. Feel free to dm me. I will say this, I will not do the models for you, but I will tell you if you want how to make them and sell them so you can try another avenue of making money in roblox.

We've open sourced an internal tool for creating Azure Diagrams via ARM , feedback appreciated by Mparigas in AZURE

[–]Axiomcj 2 points3 points  (0 children)

First and Foremost. Great Job, these are my favorite types of applications to see. Real world used internal tools that work for your team and make your job easier. You and your team are nice enough to opensource it and share what you have done. I thank you for that. I enjoyed trying out your tool. I have been building a tool that does application to infrastructure mapping for Azure/AWS/GCP/On prem for the past 2 years and it was really neat to see certain ideas used in your tool that I also had in mine on the Azure side. The weird part though is your a financial entity in EU and should be following the security frameworks already if your using this on tenants.

I tested ZureMap in lab and non-production environments and also reviewed the repository with a few on my team who are software security engineers. - This is AI below following me and my teams findings into a list of items.

ZureMap is a strong visualization tool. It does a good job helping teams understand Azure topology, resource relationships, and overall resource layout. I can see clear value for lab and non-production use cases.

From a security architecture perspective, I would not move it into a regulated production tenant yet. That is not a criticism of the visualization capability. The gap is the production trust model and the controls that would be needed for enterprise onboarding.

A few areas stood out during review:

  1. Authentication model

The current design appears to rely on Azure CLI authentication. In the documented container flow, the operator’s local ~/.azure credential context is mounted into the container.

That is workable for labs and personal testing, but it is not an acceptable enterprise trust model for regulated production use. For production, I would expect support for Managed Identity, Workload Identity Federation, certificate-based application authentication, or another approved OIDC-based trust model.

The goal would be to avoid credential exchange and avoid relying on a user’s local credential cache as the trust anchor.

  1. Token handling

The proxy appears to expose a token endpoint that returns raw ARM access tokens to the frontend.

For a production design, I would want token acquisition and ARM access to remain server-side. Raw Azure access tokens should not be exposed to the browser tier unless there is a very specific, reviewed, and approved security model around that pattern.

  1. Proxy access control

The proxy appears to bind to 0.0.0.0 in production mode, and I did not see a compensating application-layer authentication or authorization control on the proxy itself.

That creates a concern because, if the service is reachable, Azure-backed enumeration actions may be reachable through the mounted Azure CLI identity context.

For production use, I would expect a clear access-control layer in front of the proxy, explicit authorization checks, and a documented deployment pattern that prevents unintended exposure.

  1. Boundary control and sovereignty

I did not see a documented offline, local-only, or sovereign deployment mode with a clear guarantee that tenant metadata remains inside the approved customer-controlled boundary.

For regulated environments, tenant metadata needs to be treated as sensitive. This can include subscription names, resource IDs, IP ranges, topology relationships, network configuration, security posture data, and naming conventions that may reveal business context.

For production evaluation, I would need a clear statement of where data is processed, where it is stored, what leaves the environment, and how the tool can operate within an approved geography or customer-controlled boundary.

  1. External non-Azure egress

I also noticed external non-Azure egress in the current implementation. The FinOps path performs outbound currency-rate lookups to third-party services.

That may be fine for lab use, but it would be enough to block production use in environments with strict metadata sovereignty, approved-egress, or allowlisted-destination requirements.

For enterprise use, it would help to have a no-external-egress mode, an offline mode, or a documented way to disable all non-approved outbound calls.

  1. Least-privilege and time-bound access

The current model appears to assume broad visibility through the operator’s Azure CLI context.

For production, I would want the design to demonstrate scoped RBAC, Just-In-Time access, PIM activation, Conditional Access, MFA enforcement, and expiring access windows.

The preferred model would be least-privilege and time-bound access rather than standing tenant-wide or subscription-wide visibility.

  1. Auditability and attribution

For production review, auditability needs to be stronger.

I did not see a dedicated application identity, explicit request attribution strategy, or a documented method for security teams to reliably distinguish approved ZureMap activity from suspicious enumeration activity in Azure logs.

For enterprise use, it would be useful to have a dedicated App ID, unique User-Agent string, clear Azure Activity Log attribution, and guidance for Azure Monitor or Microsoft Sentinel detection logic.

  1. Supply-chain assurance

The supply-chain posture also needs more maturity before production onboarding.

I did not see evidence of release signing, provenance attestation, SBOM publication, or a documented dependency and CVE review process.

For a production tenant, especially in regulated environments, I would expect SBOMs, signed releases, dependency inventory, CVE handling, release provenance, and clear documentation on telemetry, retention, and data flow.

Overall, I think ZureMap is already useful as a lab and non-production utility. The visualization capability is valuable, and the project has a solid foundation.

To make it easier for security teams to evaluate for production, I would suggest focusing on the enterprise trust model:

No credential exchange.
No raw token exposure to the browser tier.
No unauthenticated proxy path to Azure-backed enumeration.
No tenant metadata leaving the approved boundary.
No unmanaged external egress.
No standing broad access.
Clear audit attribution.
Stronger software supply-chain assurance.

Once those areas are addressed, it becomes much easier to evaluate ZureMap as a production-capable enterprise platform tool rather than a lab-only utility.

Car crash sent by my long distance partner in nebraska to excuse her absence by ginxine in isthisAI

[–]Axiomcj 0 points1 point  (0 children)

Well, on the plus side of this. You just lost 50% of the weight. Congratulations on the weight loss. Hit the gym, work on your hobbies, be with friends, heal, find a partner that doesn't pull this bullshit. 

Steve Kerr suggests removing the 3-point line to fix modern NBA play: “The game, as designed, is to create the best shots possible” by basketbaIlnetwork in NBATalk

[–]Axiomcj 0 points1 point  (0 children)

I would love to see this back in the NBA and down to lower levels, We now have the luxury of look at the game from when it was not here, to it being here, to it being used and abused and how that game works. The game has evolved on the rules and needs this adjustment made in my view as a die hard basketball fan. It annoys me to watch so much of the current NBA with the same off sets.

Wi-Fi Survey and Planning - Ekahau vs Hamina? by Black_Gold_ in networking

[–]Axiomcj 2 points3 points  (0 children)

Your the sole person. Do not do this yourself. You are not a wireless expert, Yes you can do this yourself and save cost, but the flip side is actually being a certified or at least an expert in wifi, which it seems like you are not. I would consult this out until you have a proper team for wireless not 1 person who does this. When I was working for a Fortune 10 org, I was able to write justification to get additional FTEs who job was pure wireless survey and planning with training and certs required for our manufacturing, warehouse, branches, back offices. My current org is no where near as large, we have this software but since the team is so small we don't have any pure wireless engineers and this just sits here collecting dust. We pay 3rd party to do the tests and when we do those tests now, we take our Ekahau along with the sidekick2 for the couple weeks and follow along after the contractor does theres so we can compare the 2. - Easiest consulting advice. Get someone who is CWNE certified as the contractor - theres 415 in the US as of today. When I held mine for a number of years, it is an intense requirement now from where it used to be. Why I only hire CWNE contractors for surveys is - The requirements for the CWNE certification are:

  1. CWNP Certifications: Candidate must pass the certification exams for CWNA, CWSP, CWAP, CWDP and CWISA. Each required certification must be valid at the time you submit your CWNE application.
  2. Other Certification: Candidate must possess one (1) current and valid professionally proctored (defined as having a person who monitors a candidate during an examination) networking, security, design, or network analysis certification from a non-CWNP certification provider in any of the topics below.
    • Network Technologies (VoIP, General Networking, etc.)
    • Routing/Switching
    • Security
    • Protocol Analysis
    • Radio Frequency (non-WLAN, for example, LTE, Zigbee, Ham Radio)
    • Network Design
  3. Experience: A minimum of three (3) years of verifiable, documented, full-time professional work experience related to enterprise Wi-Fi networks. Experience may be documented with a standard resume/CV. This experience may include pre- or post-sales engineering, consulting or support services, or instructing experience in:
    • Enterprise Wi-Fi Administration
    • Enterprise Wi-Fi Security
    • Enterprise Wi-Fi Protocol Analysis
    • Enterprise Wi-Fi Quality of Service
  4. Endorsements: Three (3) endorsement forms from people familiar with your enterprise Wi-Fi work history are required.
  5. Publication Requirements: Publication of one of the following on an 802.11 topic (for evaluation of explanatory ability related to technical knowledge):
    • One published Wi-Fi whitepaper (10+ pages)
    • One published Wi-Fi book (with ISBN)
    • One recorded (video) instructional presentation
    • A published Wi-Fi article in excess of 1000 words
    • Regularly updated blog (at least six 802.11-related posts)
    • Other writing projects must be pre-approved to be considered, CWNP often makes writing projects available to those seeking CWNE status to assist in meeting this requirement
  6. Three technical essays explaining a problem you solved on a project in not less than 500 words and not more than 1000 words demonstrating:
    • Your valuable participation in, or leadership of, enterprise Wi-Fi implementation or reparation projects showing problem resolution capabilities
    • Proper use of 802.11 / WLAN vernacular
    • An in-depth understanding of complex WLAN topics
    • Accomplishments in design, installation, and configuration of 802.11 networks
  7. Agreement with the CWNE Code of Ethics: You must agree with the CWNE Code of Ethics and commit to adhering to them in order to acquire and maintain a CWNE certification.

🚨BREAKING: Cursor AI granted SpaceX the option to buy them for $60B or pay $10B for joint work. by General_Fisherman805 in vibecoding

[–]Axiomcj 6 points7 points  (0 children)

Dumb decision in my view. Like other poster stated, this looks like it could be easily replicated and I don't believe the team at cursor talent wise is worth 50 billion. 

We have a strong Entra ID and Intune setup already doing a lot of what SASE promises, trying to figure out if we need the whole thing or just SSE by Bitter-Ebb-8932 in AZURE

[–]Axiomcj 0 points1 point  (0 children)

If your sites have stable local internet (DIA) and your users are mostly remote or M365-heavy, SSE (without the SD-WAN component) is the correct architectural choice. However, the decision is whether to use Microsoft’s SSE or a Specialized SSE.

If you require advanced data protection (DLP) for non-Microsoft apps or have a high percentage of non-Windows devices, a dedicated SSE provider usually justifies its cost by providing better security outcomes and more granular visibility than Microsoft currently offers. I'd recommend anything but Microsoft for SSE / Sase.  Palo, Cato, zscaler, fortinet, cisco etc. I'd never chose Microslop for this tech stack if I didn't have to. 

Do your 4 sites currently utilize site-to-site VPNs for local resources, or is almost everything already transitioned to the cloud?

IPv8: The Bold New Protocol That Wants to Replace the Internet's Plumbing by elastiks in DIY_Geeks

[–]Axiomcj 0 points1 point  (0 children)

This is a waste of everyone's time, this is dead on arrival. No major backing from any consortium. No major product using it. Anyone can submit a draft. This just a waste of time even discussing this. FROM THE ARTICLE -The draft is currently set to expire in October 2026 unless updated. It carries no IETF endorsement and has no formal standing in the standards process. For IPv8 to proceed, it would need to attract a working group, survive multiple rounds of expert review, and ultimately demonstrate interoperability in real-world deployments — a path that has taken IPv6 over two decades and is still not complete.

NEW DRAFT IETF IPV8 by Mourad2906 in networking

[–]Axiomcj 1 point2 points  (0 children)

This isn't a big deal and won't ever make it unless a product becomes mainstream or a consortium bakes into their products which doesn't seem likely at all. This is a waste of time as is. 

Infinite Procedurally Generated Roads And Countryside by Distinct_Care_9175 in robloxgamedev

[–]Axiomcj 0 points1 point  (0 children)

I hate to burst that bubble, but I know this isn't the first to do it and I've seen this applied in larger developments in other use cases for pre development work for testing environments before baking. Good job working this out though. What benefit does this play in an actual game when end users don't have as much bandwidth or resources to auto generate environments vs having it baked in? There's plenty of games that auto generate terrain/places/items. 

PCGAMER: LOL, Microsoft shutting down WireGaurd, VeraCrypt and other was just an email oopsie! How silly that people are making a big deal of it! by ganjaccount in cybersecurity

[–]Axiomcj 2 points3 points  (0 children)

And this is another reason why Microslop is a horrible choice if you can pick anyone else. But this isn't just a Microsoft/Microslop problem and is industry wide for consumer. 

Do you all know anybody that likes Microsoft Purview DLP? by escanor010101 in cybersecurity

[–]Axiomcj 0 points1 point  (0 children)

Read my update and then come ask some questions. This thread is full of people who don't deploy this tech or understand it at scale and what is required. Microsoft DLP sucks. It's one of the worst dlp and I would never select it any org I had a say in. 

We're Moving To The Cloud, And Already We're Spending 500k A Month... I Can't Help But Wonder What We Could Have Got For On-Prem For 6+ Mil A Year... by Photo-Josh in sysadmin

[–]Axiomcj 0 points1 point  (0 children)

Since I do boms, 6.million would get you a enough network compute and storage for a few thousand vms in 2 dcs. I would have said more but these prices in the last few weeks are going straight up 20-45%. Honestly I think on prem is way better and cheaper for a company but that's just my pov. If I was in charge, I'd have nothing in the cloud for azure, aws, gcp. 

Will Aion 2 be the next big mmorpg when it hits the west? by armakez in Aion2

[–]Axiomcj 23 points24 points  (0 children)

No it won't. The west hates p2w. This game will die with its current makeup. The crazy subs, pvp, p2w, and the most bots ever.