Skip to content

Instantly share code, notes, and snippets.

View eamonnmag's full-sized avatar
📊
Making Histograms

Eamonn Maguire eamonnmag

📊
Making Histograms
View GitHub Profile
@hackermondev
hackermondev / zendesk.md
Last active July 18, 2025 18:46
1 bug, $50,000+ in bounties, how Zendesk intentionally left a backdoor in hundreds of Fortune 500 companies

hi, i'm daniel. i'm a 15-year-old with some programming experience and i do a little bug hunting in my free time. here's the insane story of how I found a single bug that affected over half of all Fortune 500 companies:

say hello to zendesk

If you've spent some time online, you’ve probably come across Zendesk.

Zendesk is a customer service tool used by some of the world’s top companies. It’s easy to set up: you link it to your company’s support email (like [email protected]), and Zendesk starts managing incoming emails and creating tickets. You can handle these tickets yourself or have a support team do it for you. Zendesk is a billion-dollar company, trusted by big names like Cloudflare.

Personally, I’ve always found it surprising that these massive companies, worth billions, rely on third-party tools like Zendesk instead of building their own in-house ticketing systems.

your weakest link

@alexpchin
alexpchin / restful_routes.md
Last active May 30, 2025 09:46
7 Restful Routes
URL HTTP Verb Action
/photos/ GET index
/photos/new GET new
/photos POST create
/photos/:id GET show
/photos/:id/edit GET edit
/photos/:id PATCH/PUT update
/photos/:id DELETE destroy
@eamonnmag
eamonnmag / update-path.sh
Created September 27, 2011 10:12
Script to do mass string replacement on files in a folder.
OLD="http://files.ivec.org/bpa_wheat/*"
NEW="http://files.ivec.org/bpa/raw/agrf/*"
DPATH="/home/isauser/BPA-Wheat-Cultivars-3"
BPATH="/home/isauser/BPA-Wheat-Cultivars-3-fixed"
for f in `ls $DPATH`
do
FULLPATH=$DPATH"/"$f
echo "processing $f `date`" >>Change.log
sed "s/$OLD/$NEW/g" $FULLPATH > $BPATH"/"$f
echo "processed $ `date`" >>Change.log
@eamonnmag
eamonnmag / pom.xml
Created September 19, 2011 20:51
pom.xml for ISAvalidator & ISAconverter plugin
<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
@mbostock
mbostock / .block
Last active November 25, 2024 09:00
Labeled Force Layout
license: gpl-3.0