Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@troyhunt
troyhunt / AcuityColumns.txt
Created November 15, 2023 04:41
Column names in alleged Acuity data breach
AddressID
IndividualId
personfirstname
personmiddleinitial
personlastname
PersonSurnameSuffix
persontitleofrespect
housenumber
predirection
streetname
@troyhunt
troyhunt / gist:ec2167141e5f3e0c4f0e1aa5a790f542
Created August 5, 2023 06:31
Word to HTML is an abomination
<!--
/* Font Definitions */
@font-face
{font-family:"Cambria Math";
panose-1:2 4 5 3 5 4 6 3 2 4;}
@font-face
{font-family:Calibri;
panose-1:2 15 5 2 2 2 4 3 2 4;}
@font-face
{font-family:"Univers 45 Light";}
@troyhunt
troyhunt / Eye4Fraud-SiteName-Values.csv
Last active January 22, 2024 22:22
Eye4Fraud SiteName values
Lovelyskin 3338541
Jomashop Magento 2342771
iTechDeals 1411036
tilebar.com 910699
AppliancesConnection 663130
CANADIANAPPLIANCE.CA 645213
MoodFabrics 585985
Botach.com 488274
BeachCamera 483356
ezcontactsusa 464685
@troyhunt
troyhunt / getrevengeonyourex.com.txt
Created November 15, 2022 02:02
File list from the Get Revenge On Your Ex data breach
Name Length
---- ------
admin.csv 113
affiliate.csv 12241
affsales.csv 86847
apps.csv 600
articlecomments.csv 68184
articles.csv 237259
articlesBackup.csv 224940
campaigns.csv 183167
@troyhunt
troyhunt / files.txt
Created September 5, 2022 00:25
Alleged WeChat Data Breach
Length Name
------ ----
4647 ad_pic_cache_202209032229.csv
772 ad_publish_202209032229.csv
7122 ad_publish_content_202209032229.csv
564 ad_publish_job_202209032229.csv
1039 ad_publish_job_his_202209032229.csv
53 ad_publish_operation_del_202209032229.csv
523 ad_publish_plan_time_202209032229.csv
326 ad_publish_plan_time_his_202209032229.csv
@troyhunt
troyhunt / files.txt
Created September 4, 2022 23:30
Alleged TikTok Data Breach
Length Name
------ ----
184 app_info_202209032248.csv
145 app_server_info_202209032248.csv
410 cookie_202209032248.csv
537 oauth_client_details_202209032247.csv
501 oauth_client_extend_202209032247.csv
55 open_sms_phone_202209032247.csv
76 open_sms_temp_202209032247.csv
106 record_add_order_202209032247.csv
@troyhunt
troyhunt / coinhive-domains.txt
Created January 16, 2022 06:28
Host names in referrer header for requests to the Coinhive cryptominer
This file has been truncated, but you can view the full file.
dl-x.com 210383
s.weibo.com 154193
www.toke-loisirs.fr 137141
www.danzyworld.com 90918
gateauxridha.blogspot.com 82891
xn--cumpleaosdefamosos-t0b.com 76441
www.ufofxw.com 69427
domoviefree4you.blogspot.com 67402
moedacripto.blogspot.com 64628
sexhikayelerimbenim.blogspot.com 64055
@troyhunt
troyhunt / nmerrigan.json
Created October 2, 2021 20:51
Scraped LinkedIn data of Niall Merrigan
{
"id":"PMTPbtB79fUTnDS2f2Hn7Q_0000",
"full_name":"niall merrigan",
"first_name":"niall",
"middle_initial":null,
"middle_name":null,
"last_name":"merrigan",
"gender":"male",
"birth_year":null,
"birth_date":null,
Id MapID UserID AddressId Fax Lat Lon Sex Tel Tel2 Email Notes State Title Banned LastIP Status URLName AddrCity AgeRange LastName NickName Services FirstName InitialIP LastLogin RFDIssuer RFDNumber TelMobile TermsText TermsWhen AddrCounty Categories EmailOptIn Facilities ImageCount ModifyTime TradeTypes TraderType WebAddress AddrCountry AddrStreet1 AddrStreet2 AddrStreet3 BillStreet1 ConfirmHash Description LastBrowser ShowAddress TermsAgreed AddrPostcode BillPostCode CreationTime HideStockNos InvoiceEmail Organization PasswordHash DefaultAdText PasswordScore EmailValidated MarketingOptIn SpecialBilling DistancePostcode MarketingOptTime EmailValidationString
@troyhunt
troyhunt / rick-roll-content-scraper.js
Created August 19, 2020 07:41
A Cloudflare worker to redirect image requests from dickhead content scraper's site to a Rick Roll
addEventListener('fetch', event => {
event.respondWith(fetchAndApply(event.request))
})
async function fetchAndApply(request) {
let response = await fetch(request)
let referer = request.headers.get('Referer')
let contentType = response.headers.get('Content-Type') || ''
if (referer && contentType.startsWith('image/')) {