diff --git a/h1_asset.py b/h1_asset.py new file mode 100644 index 0000000..61512b3 --- /dev/null +++ b/h1_asset.py @@ -0,0 +1,60 @@ +import requests +import json +import os + +def write_word(word,target): + #print(target) + if os.path.exists(target)==True: + w=0 + with open(target,'r',encoding='utf-8')as f: + for line in f: + if line[:-1]==word: + w=1 + else: + pass + if w == 0: + fp = open(target,'a+',encoding='utf-8') + fp.write(word+'\n') + fp.close() + + else: + fp = open(target,'a+',encoding='utf-8') + fp.write(word+'\n') + fp.close() + +def get_assets(handle): + url = "https://hackerone.com/graphql" + cookies = {"h1_device_id": "6b006754-624f-48dd-8640-3a6c1b2594a5", "_gcl_au": "1.1.11592276.1653657152", "_ga": "GA1.2.1701425692.1653657219", "amp_b7cba2": "LtSVdSlcq8x09-wpdce0ud.ZTFlZmNjZWQtNjMzNy00YmFlLTlmZTctNDM1MGMwZjNmOWRj..1g42qde4b.1g42s7l4j.e.2.g", "__Host-session": "dEJBMnQwcjlwQlNnYTV3b24xUHNlRWN0Z2d6ZlhBYXdoaWlISnRHL3BsNWtmcGxMWXhQN3RVc1l6aWRIWmt6UU9YU1N6ZzN6MWY3a0xBVlFLanh4NE1jN3BFb1FZQjh4YVd3eEdmb2FUQUQ4c1N0d3N0N1phS2N5V3VJTGFadVZWSnZNSStEMGxHa3Q5NkV0NVZrWW0yelJUSmIveWNIQTQxUHNtRzVwR2pQcTNCMHg0NEJNYy9aaVJvblcxRU9PRU1vRXlFMllVcTF5bVBIUFN6Y2pKTTdRakttdVhwTmdrVUw1UW43UXIvc0czZmFhYlY4MzFCTVBxSld1ZFlseU9HZ3BTcHU3Y3VVQVpTMk5QbWFoS3JlUjhtTDJxQ2Vya0c1VmRJbFlpTjNybkdqQ0dTT0lTRGpNRlRQVTB4cjM3aFR0L3JqVHZrUEJBaDBSRUNiOFJBPT0tLVhBdlpUM2Y5dnNucG5QRjhKM3dsT3c9PQ%3D%3D--2241d124b675695c0d174cae11d3e0fabb59b119", "_dd_s": "rum=0&expire=1660822945246", "AMP_b7cba2c14c": "JTdCJTIyb3B0T3V0JTIyJTNBZmFsc2UlMkMlMjJkZXZpY2VJZCUyMiUzQSUyMkx0U1ZkU2xjcTh4MDktd3BkY2UwdWQlMjIlMkMlMjJsYXN0RXZlbnRUaW1lJTIyJTNBMTY2MDgyMjA0NjA0MiUyQyUyMnNlc3Npb25JZCUyMiUzQTE2NjA4MjE0NzEzNjglMkMlMjJ1c2VySWQlMjIlM0ElMjJlMWVmY2NlZC02MzM3LTRiYWUtOWZlNy00MzUwYzBmM2Y5ZGMlMjIlN0Q=", "_gid": "GA1.2.1018576083.1660821473", "AMP_MKTG_b7cba2c14c": "JTdCJTdE"} + headers = {"User-Agent": "Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Firefox/91.0", "Accept": "*/*", "Accept-Language": "zh-CN,zh-TW;q=0.8,en-US;q=0.5,en;q=0.3", "Accept-Encoding": "gzip, deflate", "Referer": "https://hackerone.com/cornershop?type=team", "Content-Type": "application/json", "X-Csrf-Token": "QOFiIvQ7XJceEJ/y7Z5M1KO9CcO6PBehaUSTQmgdpE33/ZSAIWNNVzBJzf8bH7d1Ynw9VKj6mesrZ2BUdfQF7Q==", "Origin": "https://hackerone.com", "Sec-Fetch-Dest": "empty", "Sec-Fetch-Mode": "cors", "Sec-Fetch-Site": "same-origin", "Te": "trailers"} + data = {"operationName":"TeamAssets","variables":{"handle":handle},"query":"query TeamAssets($handle: String!) {\n me {\n id\n membership(team_handle: $handle) {\n id\n permissions\n __typename\n }\n __typename\n }\n team(handle: $handle) {\n id\n handle\n structured_scope_versions(archived: false) {\n max_updated_at\n __typename\n }\n in_scope_assets: structured_scopes(first: 650, archived: false, eligible_for_submission: true) {\n edges {\n node {\n id\n asset_type\n asset_identifier\n instruction\n max_severity\n eligible_for_bounty\n labels(first: 100) {\n edges {\n node {\n id\n name\n __typename\n }\n __typename\n }\n __typename\n }\n __typename\n }\n __typename\n }\n __typename\n }\n out_scope_assets: structured_scopes(first: 650, archived: false, eligible_for_submission: false) {\n edges {\n node {\n id\n asset_type\n asset_identifier\n instruction\n __typename\n }\n __typename\n }\n __typename\n }\n __typename\n }\n}\n"} + r = requests.post(url, headers=headers, cookies=cookies, json=data) + response = r.json() + try: + for i in response['data']['team']['in_scope_assets']['edges']: + ##print(i['node']['asset_type'],'\t',i['node']['asset_identifier']) + write_word(i['node']['asset_identifier'],'src/'+handle+'/'+i['node']['asset_type']+'.txt') + write_word(i['node']['asset_identifier'],'src/'+i['node']['asset_type']+'.txt') + except: + print(handle+'\terror') + +page = 0 +while True: + page = page + 1 + res = requests.get('https://hackerone.com/programs/search?query=type:hackerone&sort=published_at:descending&page='+str(page)) + if res.status_code != 200: + break + res = json.loads(res.text) + for i in res['results']: + word = str(i['id'])+'\t'+'https://hackerone.com'+i['url']+'\t'+i['name']+'\t'+i['handle'] + url = 'https://hackerone.com'+i['url'] + name = i['name'] + handle = i['handle'] + #建目录 + if not os.path.exists('src/'+handle): + os.mkdir('src/'+handle) + write_word(word,'src/'+handle+'/note.txt') + write_word(word,'src/note.txt') + try: + get_assets(handle) + except: + print(handle+'\terror') diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..3288e92 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,2 @@ +requests + diff --git a/src/23andme_bbp/URL.txt b/src/23andme_bbp/URL.txt new file mode 100644 index 0000000..ebfb91a --- /dev/null +++ b/src/23andme_bbp/URL.txt @@ -0,0 +1,10 @@ +api.23andme.com +auth.23andme.com +blog.23andme.com +education.23andme.com +mediacenter.23andme.com +medical.23andme.com +store.23andme.com +therapeutics.23andme.com +you.23andme.com +research.23andme.com diff --git a/src/23andme_bbp/note.txt b/src/23andme_bbp/note.txt new file mode 100644 index 0000000..9aea53b --- /dev/null +++ b/src/23andme_bbp/note.txt @@ -0,0 +1 @@ +73655 https://hackerone.com/23andme_bbp 23andMe Bug Bounty 23andme_bbp diff --git a/src/50m-ctf/note.txt b/src/50m-ctf/note.txt new file mode 100644 index 0000000..9e5b336 --- /dev/null +++ b/src/50m-ctf/note.txt @@ -0,0 +1 @@ +38489 https://hackerone.com/50m-ctf 50m-ctf 50m-ctf diff --git a/src/8x8-bounty/APPLE_STORE_APP_ID.txt b/src/8x8-bounty/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..626e394 --- /dev/null +++ b/src/8x8-bounty/APPLE_STORE_APP_ID.txt @@ -0,0 +1,2 @@ +348177448 +8x8-work diff --git a/src/8x8-bounty/DOWNLOADABLE_EXECUTABLES.txt b/src/8x8-bounty/DOWNLOADABLE_EXECUTABLES.txt new file mode 100644 index 0000000..902f29e --- /dev/null +++ b/src/8x8-bounty/DOWNLOADABLE_EXECUTABLES.txt @@ -0,0 +1 @@ +Virtual Office Desktop diff --git a/src/8x8-bounty/GOOGLE_PLAY_APP_ID.txt b/src/8x8-bounty/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..8316907 --- /dev/null +++ b/src/8x8-bounty/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +org.vom8x8.sipua diff --git a/src/8x8-bounty/OTHER.txt b/src/8x8-bounty/OTHER.txt new file mode 100644 index 0000000..e8c2410 --- /dev/null +++ b/src/8x8-bounty/OTHER.txt @@ -0,0 +1 @@ +Intellectual Property on Public Domains diff --git a/src/8x8-bounty/SOURCE_CODE.txt b/src/8x8-bounty/SOURCE_CODE.txt new file mode 100644 index 0000000..48491b3 --- /dev/null +++ b/src/8x8-bounty/SOURCE_CODE.txt @@ -0,0 +1 @@ +https://github.com/jitsi diff --git a/src/8x8-bounty/URL.txt b/src/8x8-bounty/URL.txt new file mode 100644 index 0000000..651106e --- /dev/null +++ b/src/8x8-bounty/URL.txt @@ -0,0 +1,23 @@ +*.8x8.vc +*.jit.si +*.jitsi.net +connect.8x8.com +sms.8x8.com +platform.8x8pilot.com +uc.8x8pilot.com +sso.8x8pilot.com +work-staging.8x8.com +user-profile-staging.8x8.com +*.8x8staging.com +sso.8x8.com +platform.8x8.com +*.chalet.8x8.com +work.8x8.com +user-profile.8x8.com +vcc-*.8x8.com +voapi.8x8.com +https://8x8.vc/xmpp-websocket +https://webrtc.8x8.com/ +cloud8.8x8.com +pay.8x8.com +admin.8x8.com diff --git a/src/8x8-bounty/WILDCARD.txt b/src/8x8-bounty/WILDCARD.txt new file mode 100644 index 0000000..eaed2e8 --- /dev/null +++ b/src/8x8-bounty/WILDCARD.txt @@ -0,0 +1,18 @@ +http://*.8x8.vc +http://*.jit.si +http://*.jitsi.net +http://*.8x8staging.com +http://*.chalet.8x8.com +http://vcc-*.8x8.com +https://*.chalet.8x8.com/ws/v1 +http://*.packet8.net +*.8x8.vc +*.jit.si +*.jitsi.net +*.8x8staging.com +*.chalet.8x8.com +vcc-*.8x8.com +*.8x8.id +*.8x8cloud.net +*.p8t.us +*.wavecell.com diff --git a/src/8x8-bounty/note.txt b/src/8x8-bounty/note.txt new file mode 100644 index 0000000..ba49ff0 --- /dev/null +++ b/src/8x8-bounty/note.txt @@ -0,0 +1 @@ +49732 https://hackerone.com/8x8-bounty 8x8 Bounty 8x8-bounty diff --git a/src/8x8/APPLE_STORE_APP_ID.txt b/src/8x8/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..20a48c0 --- /dev/null +++ b/src/8x8/APPLE_STORE_APP_ID.txt @@ -0,0 +1,6 @@ +com.yourcompany.Virtual-Office +com.8x8.spot +com.atlassian.JitsiMeet.ios +com.8x8.meetings +8x8-meeting-rooms +8x8-work diff --git a/src/8x8/DOWNLOADABLE_EXECUTABLES.txt b/src/8x8/DOWNLOADABLE_EXECUTABLES.txt new file mode 100644 index 0000000..43d9ac4 --- /dev/null +++ b/src/8x8/DOWNLOADABLE_EXECUTABLES.txt @@ -0,0 +1,2 @@ +Virtual Office Desktop +Jitsi Meet Desktop diff --git a/src/8x8/GOOGLE_PLAY_APP_ID.txt b/src/8x8/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..bb40ab5 --- /dev/null +++ b/src/8x8/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1,3 @@ +org.vom8x8.sipua +org.jitsi.meet +com.spot8x8.spot diff --git a/src/8x8/OTHER.txt b/src/8x8/OTHER.txt new file mode 100644 index 0000000..e8c2410 --- /dev/null +++ b/src/8x8/OTHER.txt @@ -0,0 +1 @@ +Intellectual Property on Public Domains diff --git a/src/8x8/SOURCE_CODE.txt b/src/8x8/SOURCE_CODE.txt new file mode 100644 index 0000000..926377c --- /dev/null +++ b/src/8x8/SOURCE_CODE.txt @@ -0,0 +1,5 @@ +https://github.com/jitsi/ +https://github.com/orgs/8x8/packages?repo_name=8x8_messaging_java_client +https://github.com/callstats-io/ +https://github.com/jitsi +https://github.com/8x8/8x8_messaging_java_client diff --git a/src/8x8/URL.txt b/src/8x8/URL.txt new file mode 100644 index 0000000..6dd1b94 --- /dev/null +++ b/src/8x8/URL.txt @@ -0,0 +1,53 @@ +*.ucverse.com +*.8x8.com +*.packet8.net +*.easycontactnow.com +*.dxi.eu +accountmanager.8x8.com +*.contactnow.8x8.com +sso.8x8.com +*.jit.si +vcc-*.8x8.com +*.8x8.vc +*.wavecell.com +*.callstats.io +*.8x8e2e.com +*.8x8pilot.com +*.jitsi.net +*.p8t.us +*.8x8.id +*.8x8.uk +*.8x8.co.uk +*.fuze.com +*.fuze.site +*.thinkingphones.com +*.thinkingphones.net +*.adgjmp.net +www.8x8.com +*.sameroom.io +*.mycontactual.com +*.jitsi.org +support.8x8.com +get8x8.com +*.8x8staging.com +*.8x8cloud.net +8x8.force.com +connect.8x8.com +work-staging.8x8.com +work.8x8.com +voapi.8x8.com +sms.8x8.com +user-profile-staging.8x8.com +platform.8x8.com +user-profile.8x8.com +https://webrtc.8x8.com/ +express.8x8.com +cloud8.8x8.com +supersite.8x8.com +pay.8x8.com +admin.8x8.com +vm.8x8.com +www.fuzemeeting.com +www.wavecell.com +wavecell.zendesk.com +fuze.me diff --git a/src/8x8/WILDCARD.txt b/src/8x8/WILDCARD.txt new file mode 100644 index 0000000..884594c --- /dev/null +++ b/src/8x8/WILDCARD.txt @@ -0,0 +1,56 @@ +http://*.ucverse.com +http://*.8x8.com +http://*.packet8.net +http://*.easycontactnow.com +http://*.dxi.eu +http://*.contactnow.8x8.com +http://*.jit.si +http://vcc-*.8x8.com +http://*.8x8.vc +http://*.wavecell.com +http://*.8x8e2e.com +http://*.8x8pilot.com +http://*.jitsi.net +http://*.p8t.us +http://*.8x8.id +http://*.8x8.uk +http://*.8x8.co.uk +http://*.fuze.com +http://*.fuze.site +http://*.thinkingphones.com +http://*.thinkingphones.net +http://*.adgjmp.net +http://*.8x8staging.com +http://*.8x8cloud.net +http://*.sameroom.io +http://*.mycontactual.com +http://*.jitsi.org +https://*.chalet.8x8.com/ws/v1 +http://*.chalet.8x8.com +*.ucverse.com +*.8x8.com +*.packet8.net +*.easycontactnow.com +*.dxi.eu +*.contactnow.8x8.com +*.jit.si +vcc-*.8x8.com +*.wavecell.com +*.8x8e2e.com +*.8x8pilot.com +*.jitsi.net +*.p8t.us +*.8x8.id +*.8x8.uk +*.8x8.co.uk +*.fuze.com +*.fuze.site +*.thinkingphones.com +*.thinkingphones.net +*.adgjmp.net +*.8x8staging.com +*.8x8cloud.net +*.sameroom.io +*.mycontactual.com +*.jitsi.org +qm-*.8x8.com diff --git a/src/8x8/note.txt b/src/8x8/note.txt new file mode 100644 index 0000000..48f1e1e --- /dev/null +++ b/src/8x8/note.txt @@ -0,0 +1 @@ +32665 https://hackerone.com/8x8 8x8 8x8 diff --git a/src/AI_MODEL.txt b/src/AI_MODEL.txt new file mode 100644 index 0000000..16295c7 --- /dev/null +++ b/src/AI_MODEL.txt @@ -0,0 +1,3 @@ +Workers AI +Penny +Grammarly AI Assistant diff --git a/src/API.txt b/src/API.txt new file mode 100644 index 0000000..479cdc1 --- /dev/null +++ b/src/API.txt @@ -0,0 +1,5 @@ +Crypto.com mobile app APIs that require an account +Crypto.com Exchange APIs that require an account +apimobile.vueling.com +funding-webhooks.remitly.io +hub-api-sandbox.remitly.io diff --git a/src/APPLE_STORE_APP_ID.txt b/src/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..237acd9 --- /dev/null +++ b/src/APPLE_STORE_APP_ID.txt @@ -0,0 +1,489 @@ +288429040 +com.wealthsimple.wealthsimple +944875099 +1573529788 +1514854156 +com.kayak.travel +878577184 +1080248000 +1359763701 +1579331769 +1392465628 +de.traderepublic.app +1139155460 +1139151320 +com.etoro.openbook +com.etoro.wallet +545599256 +1170782544 +535509415 +1050971067 +950273328 +920603929 +1503133294 +1135407607 +com.gemini.ios +397761931 +1460176225 +884242294 +1449758462 +884228815 +281796108 +547702041 +1119135275 +1104383066 +1498206477 +958749681 +io.b2a.BankProd +978516833 +mewwallet.ios +1032480595 +982922982 +1173230823 +1530014952 +1423794466 +1230112791 +1506076042 +1064216828 +657777015 +1515005951 +1506274532 +com.aqupepgames.projectpepe +com.pieyel.scrabble +com.withbuddies.dice.free +com.scopely.yux +com.foxnextgames.m3 +com.1debit.ChimeProdApp +1042814349 +int.who.WHOMyHealth +1116327021 +1292836438 +1539469172 +1452166623 +588950703 +exodus-movement.exodus +983980808 +com.basecamp.bc3-ios +com.hey.app.ios +835599320 +1235601864 +632344648 +1018340690 +1294578643 +1476615877 +1456293789 +com.enjin.mobile.wallet +com.zivver.app +1118448159 +978342143 +429704844 +1192506963 +1147690535 +1335632832 +486781045 +com.bitwala.app +297606951 +589698942 +984202314 +com.helium.mobile.wallet +587366035 +905382680 +463335337 +669969610 +1091010942 +io.tokencard.app.ios +455004730 +com.goodrx.iphone +com.lifeomic.life +com.lifeomic.LIFEExtend +com.yourcompany.Virtual-Office +com.8x8.spot +com.atlassian.JitsiMeet.ios +com.8x8.meetings +com.alertus.zenly +905953485 +1486322860 +443904275 +539883307 +com.pillarproject.wallet +510717503 +1242358235 +1090492316 +479213995 +io.coda +com.mailtime.MailTime +336381998 +493086499 +907613256 +1291519134 +1109537081 +808215470 +1008234539 +407558537 +1450441660 +1380744689 +481679012 +com.smartsheet.smartsheet +uk.co.starlingbank.Starling +com.creditkarma.mobile +com.creditkarma.canada +co.omise.omise +1095418609 +587040067 +599142823 +1068283395 +1316029395 +1290945517 +1142223695 +950707840 +1225744589 +1141482401 +1290960071 +1316029168 +476639005 +com.grammarly.keyboard +599664106 +com.smule.sing.* +com.smule.magicpiano.* +com.smule.autorap.* +328407587 +737216887 +com.paypal.herehd +351727428 +com.xoom.app +com.yourcompany.PPClient +com.paypal.here +com.paypal.merchant +1589023233 +com.duckduckgo.mobile.ios +971888874 +976353472 +com.valvesoftware.Steam +com.monaco.mobile +com.defi.wallet +com.newrelic.NRApp +com.deliveroo.orderapp +com.deliveroo.riderapp +1014875256 +1298908406 +1439784468 +com.8bit.bitwarden +647268330 +1257641454 +1343620481 +930441707 +351331194 +403684733 +com.flashgap.fruits +com.soundtrap.studioapp +com.spotify.client +com.spotify.s4a +com.spotify.stations +com.spotify.kids +com.spotify.soundtrap.dreamcatcher +com.anchorfminc.Anchor +io.bettylabs.Disco +979980804 +com.dashlane.dashlanephonefinal +597940518 +1120698698 +com.quora.app.mobile +com.robinhood.release.Robinhood +com.starbucks.jp +com.starbuckschina.mystarbucksmoments +com.starbucks.fr +com.starbucks.de +com.starbucks.br +com.starbucks.mystarbucks +com.starbucks.mystarbucks.kr +com.starbucks.sbuxsingapore +493253309 +1557515848 +com.brave.ios.browser +284910350 +936983378 +542767785 +1585939206 +355395846 +it.twsweb.Nextcloud +com.nextcloud.Talk +com.moneybird.Moneybird +434613896 +991745732 +912349367 +owncloud.iosapp +1174276185 +549057844 +com.toyopagroup.picaboo +com.bitstrips.imoji +com.iphone.workfront +com.frame.FrameIO +com.airbnb.app +com.luxuryretreats.ios +com.getdropbox.Dropbox +com.dropbox.paper +com.getdropbox.DropboxEMM +com.getdropbox.Passwords +425194759 +1491791513 +com.atebits.Tweetie2 +com.urbandictionary.iphone +com.tumblr.tumblr +com.irccloud.IRCCloud +com.coinbase.ios +org.toshi.distribution +com.coinbase.pro +com.shiftpayments.shiftcard +com.yahoo.aerogram +com.thnks.appstore +1070049375 +im.status.ethereum +407804998 +1049397112 +com.shaadi.iphone +512393983 +398465290 +1095345669 +564177498 +1441659687 +1219369741 +com.adobe.lrmobilephone +com.adobe.lrmobile +com.gww.km +com.Fnbox.Recarga +1478723637 +488534576 +370922777 +io.metamask.Metamask +io.getdelta.ios +814456780 +com.token.ios +Encrypt.team +1065904944 +lt.tokencard.monolith-ios +com.pogotech.pogocash +com.tinyspeck.chatlyio +com.slack.slackmdm +com.finnwea.Raivo +io.cornershop.ios +524362642 +1127881507 +1585858911 +co.clario.clario.ios +319881193 +1180074773 +com.malwarebytes.Malwarebytes +740514933 +com.skypicker.Skypicker +348177448 +566635048 +403546234 +483394780 +427916203 +531549799 +880759727 +284803487 +284971959 +1245772818 +com.divvyapp.io +1293674041 +339041767 +383915209 +com.rivian.ios +1459319841 +com.schlage.overtur +com.allegion.access.store +com.schlage.engage +com.allegion.sense.store +com.allegion.freestyle +com.allegion.cisa.smartaccess +com.allegion.IFkey +com.my-mobilekey.key4friends +com.simonsvoss.mobilekey.adminapp +944011620 +302584613 +1496435377 +947984433 +1324809509 +621574163 +1291586307 +1528364633 +1422565459 +1541949985 +641062073 +com.getmeetio.Meetio-Enterprise +ICIParisXL.App.IOS +ThePerfumeShop.App.iOS +Marionnaud.Italy.iOS +Marionnaud.Romania.iOS +Marionnaud.Switzerland.iOS +Marionnaud.Austria.iOS +PNS.HongKong.iOS +MoneyBack.HongKong.iOS +Kruidvat.Belgium.iOS +Kruidvat.Netherlands.iOS + Fortress.HongKong.IOS +Watsons.HongKong.IOS +Watsons.Indonesia.IOS +Watsons.Malaysia.IOS +Watsons.Philippines.IOS +Watsons.TaiWan.IOS +Watsons.Thailand.IOS +Watsons.Singapore.IOS +410896080 +1608392803 +com.badoo.hotornot +com.blendr.Blendriphone +com.sgiggle.Mango +com.peterandlinda.iOCNotes +647922896 +Marionnaud.France.iOS +Watsons.Turkey.iOS +6444040977 +1023499075 +8x8-work +8x8-meeting-rooms +com.marcus.ios-us +com.marcus.ios-uk +com.gs.pwmdigital.external +com.gs.gstrader.external +com.gs.gsnow.external +GS Select iOS app +1635031432 +io.opensea +com.adobe.PSMobile +com.shutterfly.ShutterflyUploader +com.creditkarma.mobile.international +apps.apple.com/us/app/crowdstrike-falcon/id1458815656 +com.robinhood.release.Gateway +https://apps.apple.com/app/id1635031432 +1660741163 +com.oyo.oyo-ios +com.belvilla.rental +com.oyo.partnerapp +com.oyo.campus +com.oyo.maestro +work.innov8.mobilecowork +com.oyorooms.weddingz.content +co.tide +1013961111 +1218902777 +926252661 +id1520720139 +id1534920947 +1005070636 +563291345 +com.ideashower.ReadItLaterPro +com.mercadopago.MercadoPago +com.3mosquitos.MercadoLibre +1671793296 +965180355 +1431768824 +Exness Trade: Online Trading +Exness Social Trading +Exness Investor +https://apps.apple.com/ph/app/ap-watch-2/id1447462456 +https://apps.apple.com/ph/app/mobileap-aboitizpower/id1508234439 +Snapfish: Photos Cards & Books / com.hp.Snapfish +Snapfish Photo Tile Wall Decor / com.snapfish-llc.SnapfishExpress +https://apps.apple.com/au/app/schlage-breeze-guest/id1533768823 +https://apps.apple.com/au/app/schlage-breeze-hotel/id1533768772 +https://apps.apple.com/au/app/schlage-breeze/id1510864627 +https://apps.apple.com/in/app/gainsborough-freestyle/id1522406111 +https://apps.apple.com/la/app/isel/id1220364077 +https://apps.apple.com/la/app/schlage-base/id1634746027 +https://apps.apple.com/us/app/key/id1150331435 +https://apps.apple.com/us/app/key4friends/id1141846653 +https://apps.apple.com/us/app/kryptonite-locks-lights-app/id1534328893 +https://apps.apple.com/us/app/mobilekey/id1231074427 +https://apps.apple.com/us/app/pure-mobile/id1194728322 +https://apps.apple.com/us/app/schlage-home/id1038212933 +https://apps.apple.com/us/app/schlage-mobile-access/id1505710549 +https://apps.apple.com/us/app/yonomi/id991840741 +https://apps.apple.com/us/app/zentra-access/id1593437290 +https://itunes.apple.com/app/id1038212933 +https://itunes.apple.com/app/id1462089647 +https://itunes.apple.com/app/id920140172 +com.coinhako.app +469463298 +1467720176 +1436732536 +1552207792 +com.nicehash.mobile +com.nicehash.NiceX +com.fidelity.watchlist +com.fidelity.sqrl +com.hypr.one +1591003012 +com.frontapp.mobile +com.boozt.app +com.boozt.booztlet +com.trip.ios +com.keybank.mobile +com.keycorp.kmf +com.laurelRoad.mobile +plus.scan.ScanPlus +plus.sign.SignPlus +plus.fax.FaxPlus +https://apps.apple.com/us/app/bybit-app/id1488296980 +1445040108 +1541576878 +1547602361 +1559906965 +1563808574 +1664702687 +id1427744264 +1641486558 +com.security.care +com.security.BatteryCam +com.eufylife.EufyHome +com.anker.AnkerMake +com.allegion.cisa.openx +com.allegion.cisa.openxkey +mobi.wealthscape +mobi.wealthscapeinvestor +https://apps.apple.com/gb/app/oaknorth-business/id1633477300 +https://apps.apple.com/gb/app/oaknorth-mobile-banking/id1476387507 +id1541153375 +https://apps.apple.com/us/app/british-airways-executive-club/id1388235740 +6467124390 +https://apps.apple.com/pt/app/tari-aurora/id1503654828 +https://apps.apple.com/ie/app/aer-lingus/id965854546 +1142114207 +https://apps.apple.com/no/app/world-app-worldcoin-wallet/id1560859847 +br.com.Inter.CDPro +br.com.intermedium +6467634418 +674258465 +993135524 +448142450 +1604650263 +https://apps.apple.com/us/app/nightowl-companion/id1397382074 +https://apps.apple.com/br/app/bmg-empresas/id1502415444 +https://apps.apple.com/br/app/bmg-token/id1259944970 +https://apps.apple.com/br/app/cart%C3%A3o-le-biscuit/id1611065956 +https://apps.apple.com/br/app/cart%C3%A3o-novo-mundo/id1575971612 +https://apps.apple.com/br/app/conta-digital-bmg-empr%C3%A9stimos/id1396096726 +https://apps.apple.com/br/app/conta-digital-corinthians-bmg/id1450986344 +https://apps.apple.com/br/app/conta-digital-galo-bmg/id1458354196 +https://apps.apple.com/br/app/conta-digital-vasco-bmg/id1459647814 +https://apps.apple.com/br/app/conta-digital-voz%C3%A3o-bmg/id1580606314 +https://apps.apple.com/br/app/sou-parceiro-bmg/id1483246549 +https://apps.apple.com/br/developer/banco-bmg/id1259944969?see-all=i-phone-apps +com.lowes.LowesStore +id1551448692 +1526689858 +1413099571 +1505343389 +6446176419 +1615039001 +Freshdesk-iOS-App +Freshservice-iOS-App +Freshsales-iOS-App +Freshchat-iOS-App +Freshcaller-iOS-App +Freshserive-Intune-iOS-App +Freshservice-Intune-iOS-App +com.bitwarden.authenticator +Netflix Mobile Application for iOS +com.zellepay.zelle diff --git a/src/CIDR.txt b/src/CIDR.txt new file mode 100644 index 0000000..622c565 --- /dev/null +++ b/src/CIDR.txt @@ -0,0 +1,66 @@ +69.52.0.0/16 +185.86.231.0/24 +135.84.145.0/27 +38.140.238.56/29 +97.105.243.96/28 +64.47.18.80/29 +194.90.25.80/29 +194.90.151.192/28 +194.90.89.165/32 +212.143.112.81/29 +64.84.60.0/24 +140.95.0.0/16 +213.139.133.32/28 +139.162.222.67 +2a01:7e00::f03c:91ff:fec6:27a3 +157.230.83.95 +2604:a880:400:d1::aad:8001 +54.175.255.192/27 +66.232.20.0/23 +206.166.248.0/23 +195.19.210.0/24 +167.187.0.0/16 +192.251.123.0/24 +192.251.124.0/24 +192.251.125.0/24 +192.251.126.0/24 +82.196.42.196/28 +203.79.37.2/29 +62.216.152.46/29 +121.200.237.36/29 +203.119.102.40/32 +203.133.248.0/22 +199.66.248.0/22 +207.90.251.0/24 +185.183.185.116 +185.89.65.82 +195.122.195.234 +195.136.48.42 +195.239.232.54 +195.68.214.73 +212.174.158.210 +83.242.228.94 +81.12.139.114 +80.107.91.210 +78.107.30.18 +62.96.194.226 +62.1.54.58 +46.16.194.69 +217.146.130.51 +84.254.8.25 +86.110.242.75 +86.110.245.26 +88.254.8.25 +89.120.147.170 +89.216.23.202 +90.152.54.18 +91.196.156.146 +91.82.106.182 +92.86.207.110 +93.184.72.138 +94.42.120.90 +156.77.0.0/16 +167.104.0.0/16 +207.250.125.0/28 +83.244.225.128/26 +31.221.63.152/29 diff --git a/src/DOWNLOADABLE_EXECUTABLES.txt b/src/DOWNLOADABLE_EXECUTABLES.txt new file mode 100644 index 0000000..d4d76e1 --- /dev/null +++ b/src/DOWNLOADABLE_EXECUTABLES.txt @@ -0,0 +1,242 @@ +https://download.krisp.ai/win +https://download.krisp.ai/mac +406056744 +FortniteClient-Win64-Shipping.exe +FortniteLauncher-Win64-Shipping.exe +FortniteLauncher-Win64-Shipping_BE.exe +FortniteLauncher-Win64-Shipping_EAC.exe +FortniteLauncher.exe +EOS C# SDK +Cardano-Node +Cardano-Wallet +doppler +Windows OS Executable: Download here https://www.larksuite.com/download +Mac OS Executable: Download here https://www.larksuite.com/download +Exodus Desktop Wallet +basecamp3.exe +Basecamp.app +HEY.app +hey-mail +Streamlabs Desktop Application PC/MAC +Logitech Sync +Logi Tune PC/MAC +Other Logitech Desktop and Mobile Application +Harmony Remote Software +G Hub +Logitech Options PC/MAC +Logi Options+ PC/MAC +Acronis Agent +Acronis Cyber Protect +Acronis Cyber Protect Home Office (formerly Acronis True Image) +Acronis DeviceLock DLP +Acronis Snap Deploy +https://mackeeper.com/mk/download/?ref=hackerone +HCL AppScan +HCL BigFix +HCL Commerce +HCL Connections +HCL Digital Experience (Portal & Content Manager) +HCL Domino +HCL Notes +HCL Sametime +HCL Unica +HCL Verse +HCL Clara +HCL HERO +HCL Atlas +HCL Design Room Live! +HCL Forms +HCL Informix +HCL Informix on Cloud +HCL Integration Platform (HIP) +HCL Leap +HCL OneTest +HCL One Test Embedded +HCL RealTime Software Tooling (RTist) +HCL Terminal Enterprise Access (TEA) +HCL UrbanCode Deploy +HCL UrbanCode Velocity +HCL Workload Automation (HWA) +HCL Workload Automation on AWS +HCL Z Asset Optimizer +HCL Z Data Tools +Roblox Client +Roblox Studio +Virtual Office Desktop +DSE, Opscenter +NordVPN - Windows Executable +NordVPN - MacOS Executable +NordVPN - Linux Executable +NordPass - Windows Executable +NordPass - MacOS Executable +NordPass - Linux Executable +NordLocker - MacOS Executable +NordLocker - Windows Executable +Windows Executable +Suspected Java Component +Grammarly Editor for MacOS +Grammarly Editor for Windows +Grammarly for Microsoft Word +Grammarly Desktop for Windows +Grammarly Desktop for macOS +steam.exe +csgo.exe +dota2.exe +tf2.exe +hl.exe +Infrastructure agents +Go agent +Node.js agent +Ruby agent +Unity agent +PHP agent +.NET agent +.NET Core agent +Java agent +Python agent +Browser agent +Android agent +iOS agent +https://github.com/bitwarden/desktop/releases/latest +https://github.com/bitwarden/cli/releases/latest +Spotify desktop application (Windows and Mac) +https://www.dashlane.com/fr/directdownload-v2?os=none&platform=website&target=archive_win +https://www.dashlane.com/fr/directdownload-v2?os=OS_X_10_12_6&platform=website&target=launcher_macosx +Rockstar Games Launcher +Burp Collaborator +Burp Suite Enterprise Edition +Burp Suite Pro/Community +Burp Suite Extension (BApps) +https://laptop-updates.brave.com/latest/osx +https://laptop-updates.brave.com/latest/winx64 +https://laptop-updates.brave.com/latest/winia32 +https://laptop-updates.brave.com/latest/dev/debian64 +https://laptop-updates.brave.com/latest/dev/ubuntu64 +https://laptop-updates.brave.com/latest/mint64 +https://laptop-updates.brave.com/latest/fedora64 +https://laptop-updates.brave.com/latest/openSUSE64 +https://laptop-updates.brave.com/latest/linux64 +https://repo.powerdns.com +https://repo.dovecot.org +GoCD (https://www.gocd.org/download) +Desktop Client +GitHub Desktop +GitHub CLI +npm CLI +Snap Camera +Lens Studio +UniFi Network Application +UCRM +UNMS +Adobe Acrobat Reader DC +Photoshop +Lightroom +After Effects +Animate +Audition +Adobe AIR +Bridge +Character Animator +Creative Cloud Desktop Application +Digital Editions +Dreamweaver +Flash Player +Fonts +Framemaker +Illustrator +InCopy +InDesign +Media Encoder +Prelude +Premiere Pro +XD +Adobe Campaign +Adobe Experience Manager (AEM) +Lightroom Classic +XMP Toolkit +Distiller +Premiere Rush +Premiere Elements +Dimension +Dropbox Desktop +Any Informatica on-premise software +yarn +Status Desktop +Files.com Desktop Application for Windows or Mac +VK Messenger +Atom browser +Guilded +Endpoint Security Cloud +Mattermost Desktop +Mackeeper app +Windows Desktop Application +MacOS Desktop Application +Malwarebytes for Windows +Malwarebytes for Mac +Malwarebytes for Teams +Malwarebytes Remediation for CrowdStrike +Malwarebytes Incident Response +Malwarebytes ToolSet (MBTS) +Malwarebytes Anti-Exploit +Malwarebytes Anti-Ransomware +Malwarebytes Windows Firewall Control +AdwCleaner +USB Flash Drive Control +SDM Client - Windows (sdm.exe) +SDM Client - macOS (sdm.app) +SDM Gateway - *nix +Acronis Cyber Files +Other Acronis executables +Acronis Cloud Manager +ColdFusion +Substance 3D +https://salesforce.quip.com/blog/desktop +UnrealEditorFortnite-Win64-Shipping.exe +EpicGamesLauncher.exe +Jitsi Meet Desktop +Beats - Auditbeat +Beats - Filebeat +Beats - Heartbeat +Beats - Metricbeat +Beats - Packetbeat +Beats - Winlogbeat +Elastic Agent +Elastic Cloud Enterprise (ECE) +Elastic Cloud on Kubernetes (ECK) +Elastic Enterprise Search +Elastic Maps Server +Elasticsearch +Logstash +Observability - APM Agents +Observability - APM Server +Fleet Server +Kibana +Beats +Tenable Sensor Proxy +HyprUnlock.exe +HYPR Workforce Access.app +Front for Mac +Front for Windows +Dynatrace OneAgent +Dynatrace ActiveGate +Dynatrace MobileAgent +HCL Tech - GEO - Leave Management System (LMS) +HCL Tech - India - Leave Management System (LMS) +HCL Tech - Global Claim System - CVCS Azure +HCL Tech - TP-SOW +HCL Tech - Smart Service Desk (SSD) Azure +HCL Tech - Revenue Forecast System (iRFS) +HCL Tech - Resource Assignation System (RAS) +HCL Tech - HCLT-EIS-Project Initiation & Budgeting +HCL Tech - Netconsole Joining +HCL Tech - My Travel TAS AZURE +HCL Tech - My Profile (ESS) +HCL Tech - iTIME +HCL Tech - iRemunerate +HCL Tech - iOnboard Application +HCL Tech - iOffboardWebOnPrim +HCL Tech - Global Claim System - ECS +HCL Tech - Geo Joining Console (GJC) +HCL Tech - Compensation Console OnPrim +HCL Tech - Billing Request System (BRQ) +Logitech MIXLINE diff --git a/src/GOOGLE_PLAY_APP_ID.txt b/src/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..7ea8481 --- /dev/null +++ b/src/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1,487 @@ +com.linkedin.android +com.wealthsimple +com.gojek.app +com.gojek.partner +com.kayak.android +com.callsign.app.android +com.zzkko +com.romwe +com.exness.investor +com.exness.investments +de.traderepublic.app +com.gymshark.fitness +com.etoro.openbook +com.etoro.wallet +com.instacart.client +plus.fax.android +com.costco.app.android +com.koral +com.o1 +com.roposo.android +com.o1.dash101 +com.clubhouse.android +com.epam.connect.android +com.gemini.android.app +com.mtb.mbanking.sc.retail.prod +com.mtb.mobilebanking.ncr +com.mts.webtrading +com.evernote.android +com.tinder +nl.samsonit.vanmoofapp +com.deere.myoperations +com.deere.equipmentplus +co.uk.getmondo +com.stripe.android.dashboard +mewwallet.android +com.urbanclap.provider +com.urbanclap.urbanclap +com.tego +com.zegocover.zego +com.lumiradx.connect +com.lumiradxcaresolutions.engage +com.reddit.frontpage +via.rider +com.ridewithvia.zuzu +com.blockfi.mobile +com.aqupepgames.projectpepe +com.pieyel.scrabble +com.withbuddies.dice.free +com.scopely.yux +com.foxnextgames.m3 +com.onedebit.chime +co.hud.app +org.who.WHOMyHealth +com.remitano.remitano +com.bitso.wallet +com.bitso.alpha +com.jimdo +exodusmovement.exodus +com.yoti.mobile.android.live +com.basecamp.bc3 +com.basecamp.hey +com.zhiliaoapp.musically +com.ss.android.ugc.trill +com.logitech.ueboom +com.logitech.circle +com.streamlabs.slobsrc +com.streamlabs +com.logitech.logue +com.enjin.mobile.wallet +com.zivver.app +com.acronis.acronistrueimage +com.acronis.abc +com.affirm.central.audit +com.engelvoelkers.propertysearch +com.uphabit.android +com.magisto +com.bitwala.app +com.amazon.mShop.android.shopping +com.glassdoor.app +com.onbeep.obiwan +com.helium.wallet +com.picsart.studio +com.unibet.casino +com.unibet.unibetpro +ca.koho +io.tokencard.app.android +com.marriott +com.goodrx +com.lifeomic.lifefasting +com.lifeomic.lifeextend +org.vom8x8.sipua +org.jitsi.meet +app.zenly.locator +com.nordvpn.android +com.nordpass.android.app.password.manager +jp.naver.line.android +com.linecorp.linelite +com.pillarproject.wallet +com.mobisystems.office +com.mobisystems.fileman +com.mobisystems.msdict.embedded.wireless.oxford.dictionaryofenglish +com.key.android +com.keycorp.kmf +com.nclud.hellowallet +com.key.community.tablet +io.coda.codaapp +com.jnj.mocospace.android +com.mailtime.android +com.priceline.android.negotiator +in.sweatco.app +com.livestream.livestream +com.capitalone.credittracker +com.capitalone.intellix.mobile.prod +com.konylabs.capitalone +ca.capitalone.enterprisemobilebanking +com.capitalone.atwork +com.capitalone.tz +com.ie.capitalone.uk +com.ukcapitalone.creditWise +com.smartsheet.android +com.starlingbank.android +com.creditkarma.mobile +co.omise.omise +com.ford.fordpass +com.ford.remoteaccess +com.ford.fordalexa +com.ford.mfm +com.ford.fordplay +com.ford.performance.android.experience +com.ford.therightway +com.ford.fordvr +com.lincoln.lincolnway +com.lincoln.lincolnalexa +com.lincoln.lincolnplay +com.Hyatt +com.grammarly.android.keyboard +com.fanduel.android.self +com.smule.singandroid.* +com.smule.magicpiano.* +com.smule.autorap.* +com.yahoo.mobile.client.android.flickr +org.piwik.mobile2 +com.xoom.android.app +com.paypal.merchant.client +com.paypal.android.p2pmobile +com.venmo +com.paypal.here +com.bitmex.app.android +com.duckduckgo.mobile.android +com.shipt.groceries +com.shipt.shopper +com.valvesoftware.Steam +co.mona.android +com.defi.wallet +com.newrelic.rpm +com.deliveroo.orderapp +com.deliveroo.driverapp +showmax.app +fi.lahitapiola.mobile +fi.lahitapiola.lemmikkihelppi +com.x8bit.bitwarden +im.delight.letters +com.grabtaxi.passenger +com.grabtaxi.driver2 +com.grab.merchant +com.grabpay.merchant +com.bumble.app +com.badoo.mobile +com.badoo.twa +com.flashgap.fruitz +com.spotify.tv.android +com.spotify.s4a +com.soundtrap.studioapp +com.spotify.music +com.spotify.zerotap +com.spotify.lite +com.spotify.kids +fm.anchor.android +io.bettylabs.disco +co.cuvva.hourly +com.dashlane +com.lyst.lystapp +com.quora.android +com.robinhood.android +com.starbucks.jp +com.starbucks.cn +com.starbucks.fr +com.starbucks.de +com.starbucks.br +com.starbucks.mobilecard +com.starbucks.singapore +piuk.blockchain.android +com.blockchain.exchange +com.brave.browser +com.brave.browser_beta +com.yelp.android.biz +com.yelp.android +com.openexchange.drive.vanilla +com.harvestapp +com.nextcloud.client +com.nextcloud.talk2 +com.moneybird.android +com.application.zomato +com.application.zomatomerchant +com.owncloud.android +com.zendesk.android +com.zopim.android +com.snapchat.android +com.bitstrips.imoji +com.ubnt.easyunifi +com.ubnt.umobile +com.ubnt.discovery.app +com.ubnt.ucrm +com.adobe.reader +com.workfront.android.aware +com.airbnb.android +com.dropbox.android +com.dropbox.paper +com.dropbox.passwords_android +com.vimeo.android.videoapp +com.vimeocreate.videoeditor.moviemaker +com.twitter.android +com.urbandictionary.android +com.tumblr +com.irccloud.android +com.coinbase.android +org.toshi +com.coinbase.pro +com.coinbase.wallite +com.yahoo.mobile.client.android.mail +com.thnks +com.earny.android +ru.ozon.app.android +com.companyhub.crm +com.imaginecurve.curve.prd +com.shaadi.android +com.postmates.android +cobinhood.exchange +ru.ok.android +ru.ok.messages +com.vkontakte.android +com.vk.im +com.vk.admin +com.adobe.lrmobile +com.adobe.scan.android +com.adobe.fas +com.adobe.echosign +com.gww.km +com.recarga.recarga +com.gymshark.store +plus.sign.android +com.futuresimple.base +com.oanda.fxtrade +io.metamask +io.getdelta.android +com.nu.production +com.token.android +br.com.easynvest.rendafixa +com.pogotech.pogocash +com.Slack +cornershopapp.android +trendyol.com +com.dolap.android +com.mattermost.rn +co.clario.android +com.grindrapp.android +com.realtimeboard +org.malwarebytes.antimalware +fi.spankki +com.skypicker.main +com.moonpay +com.hotwire.hotels +com.ebookers +com.orbitz +com.expedia.bookings +com.wotif.android +com.cheaptickets +com.travelocity.android +com.hcom.android +com.vrbo.android +com.divvyapp.io +com.deribit +com.abercrombie.abercrombie +com.abercrombie.hollister +com.rivian.android +com.monarchmoney.mobile +com.schlage.overtur +com.allegion.schlagemobileaccess +com.allegion.tigershark +com.allegion.stingray +com.allegion.leopard +com.simonsvoss.mobilekey.adminapp +com.simonsvoss.mobilekey.key4android +com.interflex.key +com.allegion.teachin +com.allegion.cisa.smartaccess +com.allegion.freestyle +com.amazon.kindle +com.amazon.healthtech.malibu +com.amazon.storm.lightning.client.aosp +com.amazon.tahoe.freetime +com.amazon.dee.app +com.amazon.clouddrive.photos +com.amazon.cosmos +com.amazon.tails +com.cybavo.auth +io.opensea +com.coinspot.app +com.ss.android.ugc.now +com.tiktok.tv +com.zhiliao.musically.livewallpaper +com.getmeetio.* +Superdrug.App.Android +ICIParisXL.App.Android +ThePerfumeShop.App.Android +Marionnaud.Italy.Android +Marionnaud.Switzerland.Android +Marionnaud.Romania.Android +Marionnaud.Austria.Android +PNS.HongKong.Android +MoneyBack.HongKong.Android +Kruidvat.Belgium.Android +Kruidvat.Netherlands.Android + Watsons.TaiWan.Android +Fortress.HongKong.Android +Watsons.HongKong.Android +Watsons.Indonesia.Android +Watsons.Malaysia.Android +Watsons.Philippines.Android +Watsons.Singapore.Android +Watsons.Thailand.Android +Superdrug.Healthera.App.Android +com.scee.psxandroid +com.insulet.myblue.pdm +com.hotornot.app +com.sgiggle.mango +it.niedermann.owncloud.notes +com.quip.quip +Marionnaud.France.Android +Watsons.Turkey.Android +com.bumblebff.app +com.eero.android +com.spot8x8.spot +com.marcus.android.uk +com.marcus.android +com.gs.pwmdigital.external.android +com.gs.pfmg.wellness +com.gs.mobile.trader +com.gs.mobile.gsnow +com.shutterfly +com.photoupload +com.creditkarma.mobile.international +play.google.com/store/apps/details?id=com.crowdstrike.falconmobile +https://play.google.com/store/apps/details?id=com.moonpay +com.studio.projects.zodia +com.oyo.consumer +com.oyo.partnerapp +com.oyo.property +com.bookertools +com.oyo.orbis.ovh +com.oyo.homes.maestro +com.oyo.mmapp +com.jedi.jediaudit +com.oyorooms.coworkfoodvendor +com.oyo.consumerlite +com.guerrilla.innov8coworking +com.oyorooms.weddingz.content +com.tideplatform.banking +co.tide.tideplatform.in +com.immediasemi.android.blink +com.ring.neighborhoods +com.ringapp +com.fishbowlmedia.fishbowl +com.ideashower.readitlater.pro +com.mercadopago.wallet +com.mercadolibre +com.mercadoenvios.crowdsourcing +com.mercadoenvios.driver +com.exness.android.pa +https://play.google.com/store/apps/details?id=com.aboitiz.watch +https://play.google.com/store/apps/details?id=com.aboitizceh&hl=en&gl=US +https://play.google.com/store/apps/details?id=com.outsystemsenterprise.apc1.DXPApp +com.scopely.monopolygo +Snapfish: Prints + Photo Books / com.snapfish.mobile +ro.superbet.sport +ro.superbet.games +https://play.google.com/store/apps/details?id=com.allegion.cisa.smartaccess +https://play.google.com/store/apps/details?id=com.allegion.freestyle +https://play.google.com/store/apps/details?id=com.allegion.leopard +https://play.google.com/store/apps/details?id=com.allegion.schlagemobileaccess +https://play.google.com/store/apps/details?id=com.allegion.stingray +https://play.google.com/store/apps/details?id=com.allegion.teachin +https://play.google.com/store/apps/details?id=com.allegion.tigershark +https://play.google.com/store/apps/details?id=com.breeze.hotel +https://play.google.com/store/apps/details?id=com.breeze.lock&hl=en_AU +https://play.google.com/store/apps/details?id=com.breezehotel.staff&hl=en_US +https://play.google.com/store/apps/details?id=com.isonas.puremobile&hl=en_US&gl=US +https://play.google.com/store/apps/details?id=com.schlage.overtur +https://play.google.com/store/apps/details?id=com.schlage.smart +https://play.google.com/store/apps/details?id=com.schlageabode.lock&hl=en_NZ +https://play.google.com/store/apps/details?id=com.simonsvoss.mobilekey.adminapp +https://play.google.com/store/apps/details?id=com.simonsvoss.mobilekey.key4android +https://play.google.com/store/apps/details?id=com.sp_expert_connect.app +https://play.google.com/store/apps/details?id=com.yonomi +https://play.google.com/store/apps/details?id=com.yudu.kryptonite.na&hl=en_US&gl=US +com.coinhako +NordLocker - Android Application + com.citymapper.app.release +life.simple +com.lensa.app +com.nicehash.metallum +com.metallum.nicex +com.fidelity.android +com.fidelity.sqrl +com.flutter.bem.release +com.hypr.one +com.tiktokshop.seller +com.frontapp.mobile +com.boozt +com.booztlet +com.trip.android +com.laurelroad.android +plus.scan.android +https://play.google.com/store/apps/details?id=com.bybit.app&hl=en +coach.zing.fitness +https://play.google.com/store/apps/details?id=com.hm.mena +market://details?id=com.aeo.mena +market://details?id=com.aloyoga.mena +market://details?id=com.bbw.mena +market://details?id=com.footlocker.mena +market://details?id=com.vs.mena +com.scopely.startrek +com.einnovation.temu +com.oceanwing.care.cam +com.oceanwing.battery.cam +com.oceanwing.FDMPrint +com.allegion.cisa.openx +com.allegion.cisa.openx_key +com.sgiggle.Mango +com.fmr.eca.android.wealthscape +com.fmr.eca.android.wealthscapeinvestor +com.oaknorth.businessbanking +com.oaknorth.oaknorthmobilebanking +com.kitkagames.fallbuddies +https://play.google.com/store/apps/details?id=com.usablenet.ba.avios +com.johndeere.jdo.android +https://play.google.com/store/apps/details?id=com.tari.android.wallet +https://play.google.com/store/apps/details?id=com.aerlingus.mobile +ovo.id +https://play.google.com/store/apps/details?id=com.worldcoin +br.com.Inter.CDPro +br.com.intermedium +com.trendyol.milla.android +com.remitly.androidapp +com.dyson.mobile.android +com.truecaller +com.official.rnapp +https://play.google.com/store/apps/details?id=com.ectosense.nightowl&hl=en&gl=US +https://play.google.com/store/apps/details?id=br.com.bancobmg.alemhorizonte +https://play.google.com/store/apps/details?id=br.com.bancobmg.bancodigital +https://play.google.com/store/apps/details?id=br.com.bancobmg.bancodigital.atletico +https://play.google.com/store/apps/details?id=br.com.bancobmg.bancodigital.corban +https://play.google.com/store/apps/details?id=br.com.bancobmg.bancodigital.corinthians +https://play.google.com/store/apps/details?id=br.com.bancobmg.bancodigital.lebiscuit +https://play.google.com/store/apps/details?id=br.com.bancobmg.bancodigital.novomundo +https://play.google.com/store/apps/details?id=br.com.bancobmg.bancodigital.vasco +https://play.google.com/store/apps/details?id=br.com.bancobmg.bancodigital.vozao +https://play.google.com/store/apps/details?id=br.com.bancobmg.meubmgpj +https://play.google.com/store/apps/details?id=br.com.bmg.token +https://play.google.com/store/apps/developer?id=BMG+Banco+Digital +com.LowesAndroid +com.evernote +com.cleevio.ionity.android.app +com.awi.cz.whrp +com.awi.whrp +com.williamhill.us.nj.sports +com.caesarsdigital.igaming.caesarspalaceonline +com.freshservice.helpdesk +com.freshdesk.helpdesk +com.freshdesk.freshsales.mobile +com.freshchat.agent.android +com.freshworks.freshcaller +com.freshservice.helpdesk.intune +com.bitwarden.authenticator +com.grofers.customerapp +Netflix Mobile Application for Android +com.zellepay.zelle diff --git a/src/HARDWARE.txt b/src/HARDWARE.txt new file mode 100644 index 0000000..9b14f37 --- /dev/null +++ b/src/HARDWARE.txt @@ -0,0 +1,109 @@ +LumiraDx Instrument V5E +Circle Cameras +Video Conferencing Products +USB Unifying and LightSpeed Receivers +Harmony Remotes +Presentation Remotes +Logitech Mice & Keyboards +Ultimate Ears Speakers +Other Logitech Hardware/IoT +PlayStation 4 +PlayStation 5 +Mi/Redmi Phone +Mi Band +Mi Home Webcam +Mi Robot Vacuum +Mi TV Box +Mi Laser Projector +Mi TV +Mi Electric Scooter +The Onmipod System Personal Diabetes Manager (PDM) +The Omnipod System Insulin Pump (Omnipod) +The Omnipod DASH System Personal Diabetes Manager (DASH PDM) +The Omnipod DASH System Insulin Pump (DASH Omnipod) +Helium Hotspot +CounterAct 8.3 +Vehicle +GitHub Enterprise Server +Spectacles +airMAX +UniFi +EdgeMAX +airFiber +UFiber +AmpliFi +UniFi Talk +UniFi Protect +UniFi Switches +UniFi Wireless Access Points +UniFi Gateways (UDM, UXG, USG) +Cloudkey +UniFi LED +UniFi Access +Wink Hub 2 +R1T Vehicle +R1S Vehicle +Schlage NDE/NDEB +Schlage Encode +Von Duprin RU/RM +Schlage Control +Schlage GWE Gateway +Schlage CTE Single Door Controller +Schlage LE/LEB +Interflex Terminals access control +Interflex Terminals time recording +Interflex controllers +Interflex desktop readers and encoders +Tablets +Echo Family Devices +FireTV +Kindle E-Reader +Luna +Halo +eero Pro (2nd Generation) +eero Beacon (2nd Generation) +eero (2nd Generation) +eero 6 (3rd Generation) +eero 6 Extender (3rd Generation) +eero 6 Pro +eero 6+ (4th Gen) +eero 6E Pro (4th Gen) +Nintendo Switch System +Nintendo Switch applications for which Nintendo is the publisher worldwide +Video Doorbell +Peephole Cam +Indoor Cam +Stickup Cam +Chime +Ring Alarm +Ring Smart Lighting Bridge +Blink Outdoor +Blink Indoor +Blink Sync Module 2 +Blink Mini +Blink Video Doorbell +Point Smart +CAMON Phone Series +PHANTOM Phone Series +SPARK Phone Series +POVA Phone Series +POP Phone Series +https://us.eufy.com/products/e8213181 +https://us.eufy.com/products/t88711w1 +https://us.eufy.com/products/t88511d1 +https://us.eufy.com/products/t8410121 +https://www.ankermake.com/products/m5?variant=42744298373269 +eSigno Lock 2 +Wall Reader 2 +Encoder 2 +BLEGateway (IF-4041) +eServer +Aero USB RFID Reader +MyEVO Lock Controller +MyEVO RFID Transponder +Domo Connexa Button +OpenX eCylinder +OpenX eHandle +OpenX Wall Reader +CounterAct 8.4 +Dyson Connected Products (IoT Hardware) diff --git a/src/IP_ADDRESS.txt b/src/IP_ADDRESS.txt new file mode 100644 index 0000000..e3d2101 --- /dev/null +++ b/src/IP_ADDRESS.txt @@ -0,0 +1,32 @@ +185.183.185.116 +185.89.65.82 +195.122.195.234 +195.136.48.42 +195.239.232.54 +195.68.214.73 +212.174.158.210 +83.242.228.94 +81.12.139.114 +80.107.91.210 +78.107.30.18 +62.96.194.226 +62.1.54.58 +46.16.194.69 +217.146.130.51 +84.254.8.25 +86.110.242.75 +86.110.245.26 +88.254.8.25 +89.120.147.170 +89.216.23.202 +90.152.54.18 +91.196.156.146 +91.82.106.182 +92.86.207.110 +93.184.72.138 +94.42.120.90 +139.162.222.67 +2a01:7e00::f03c:91ff:fec6:27a3 +157.230.83.95 +2604:a880:400:d1::aad:8001 +216.131.54.65 diff --git a/src/OTHER.txt b/src/OTHER.txt new file mode 100644 index 0000000..555f776 --- /dev/null +++ b/src/OTHER.txt @@ -0,0 +1,882 @@ +All Keurig Dr Pepper-owned Assets +Any public (Internet-facing) infrastructure owned and operated by Palantir. +Any public cloud (e.g. Amazon AWS, Microsoft Azure) resource or infrastructure operated and managed by Palantir. +Personal Area for Web Trading +Web Terminal +Logical trading issues +Partnership +Portfolio Management +Public Area for Web Trading +Social Trading +Any subdomain infrastructure issue +Any subdomain application issue +External service data leakage +Android & iOS App for Instacart Shoppers +FAX Programmable API +Tenable.sc +Nessus Professional +Log Correlation Engine +Tenable.ad +Tenable.ot +Nessus Agent +Tenable Core + Nessus/Tenable.sc/NNM/Tenable.ot +Web Application Scanner +Nessus Network Monitor +Other Hy-Vee owned asset +Product Vulnerabilities +Corporate Infrastructure +OpenSea’s Smart Contracts +Other +Wickr Pro/Wickr Me (all related technical components) (up to) +Wickr Pro Android +Wickr Pro iOS +Wickr Pro Linux +Wickr Me iOS +Wickr Me Android +Wickr Me Linux +Wickr Me OS X +Wickr Pro OS X +Wickr Pro Windows +Wickr Me Windows +SEGA Europe +Creative Assembly +Sports Interactive +Two Point Studios +Amplitude Studios +Hardlight Studios +Relic Entertainment +Clubhouse Production and Corporate Infrastructure +Any other Epic games owned asset not listed in the out of scope section +other +All Elastic Products +Elastic Package Registry +Any John Deere digital application, product or service, but excluding: (1)Any John Deere machine, equipment or other hardware (collectively “Equipment”) And (2) Any software, firmware or other component of John Deere Equipment. +http(s)://*.johndeere.com* +http(s)://*.deere.com* +http(s)://wirtgen-group.com +http(s)://bluerivertechnology.com +http(s)://bearflagrobotics.com +https://developer.deere.com +https://jdlink.deere.com +https://play.google.com/store/apps/details?id=com.deere.equipmentplus&hl=en_US&gl=US +Stripe Payments +Stripe Checkout +Stripe Connect +Stripe Terminal +Stripe Billing +Stripe Elements +Stripe Dashboard +Stripe Issuing +Stripe Radar +Stripe Sigma +Stripe Atlas +Stripe SDKs +Stripe Open Source +R3 - everything in scope +Anything that is explicitly owned and managed by Zebra Technologies is in scope for the VulnerabIlity Disclosure Program +Our infrastructure hosted in Azure Cloud +Heartland Payment Systems +TSYS +AdvancedMD +GP eCom +GPE +UCS +Bleep +GP AUNZ +Storman +eWay +Ezidebit +Sentral +Quickcliq +GP Integrated +PayGateway +3PointData / CX2 +OpenEdge +Cayan +Callpop +Global Payments Integrated +Xenial (Xenial) +SICOM +Nextep +Active Networks +TouchNet +Heartland Restaurant / Retail / Payroll / Human Capital Management (Get Hired) +Greater Giving +Micropayments +Gaming +ECSI +Zego +Commercia Global Payments +MineralTree +Other publicly-released plugins +iOS Chime App Development Environment +Android Chime App Development Environment +PayFriends/PayAnyone Features +https://haveafling.s3.amazonaws.com/ +Exodus Browser Extension +ROM +Scope Questions: Items not explicitly listed here +Enjin Coin - Ethereum ERC-20 Contract +Enjin - Ethereum ERC-1155 Contract +Figma Atlassian App +s3://faraday-uploads +s3://faraday-secret +Simple Poll Slack app +Simple Goals slack app +github.com/aiven +Aiven for Apache Kafka managed and hosted service +Aiven for M3 managed and hosted service +Aiven for PostgreSQL managed and hosted service +Aiven for MySQL managed and hosted service +Aiven for OpenSearch managed and hosted service +Aiven for Apache Cassandra managed and hosted service +Aiven for Redis managed and hosted service +Aiven for InfluxDB managed and hosted service +Aiven for Grafana managed and hosted service +Aiven for Apache Flink (beta) managed and hosted service +Aiven for Clickhouse (beta) managed and hosted service +Acronis Cyber Infrastructure +Other Acronis Domains +com.affirm.internal.hackerone +Kruidvat +Superdrug +The Perfume Shop +Fortress +PARKnSHOP +ICI Paris XL +Kruidvat (subdomains) +Superdrug (subdomains) +Marionnaud +MoneyBack +Watsons +ICI Paris XL (subdomains) +PlayStation Network +Other Hardware Assets +MIUI OS for Xiaomi Phone +Other APK Assets +iVUE AppSuite +iVUE ABS +iVUE CC&B +iVUE Connect +iVUE E&O +iVUE Document Vault +NISC Cloud Portal +NISC Community +NISC Payment Gateway +NISC SmartHub +Capturis Vendor Portal +Other Amazon Retail Sites +Other Amazon Retail Mobile Apps +Amazon Retail Subsidiaries +Other Amazon Retail Assets (if you are not sure about the asset scope, please use this one) +Automotive Security +Other Vulnerabilities +Account Settings +Login with SMS - Feature +Magic and Fortmatic Products +Multi-factor Auth - Feature +DigitalOcean products associated with an account you created (e.g. droplets, load balancers, etc.) +Blockchain +Validator nodes +API +Components +Android & IOS Apps +All Other Assets in Scope +Other Marriott-owned asset +Scope Not Listed (See Instruction) +k8s.gcr.io +https://storage.googleapis.com/kubernetes-release/ +Community Management & Communications +Intellectual Property on Public Domains +All Mobile Assets +NordVPN Browser Extension +Chrome Extension +LINE Messenger - VOOM +LINE Messenger - Keep +LINE Messenger - VoIP +LINE Messenger - Chat +LINE Messenger - OpenChat +LINE Messenger - News +Other Assets +Platform Core API +Etherspot SDK +Coda Chrome Extension +AODocs Smartbar Chrome Extension +Amitree Chrome extension https://chrome.google.com/webstore/detail/folio/ecaieeiecbdhkcgknidmfelflleobbnp?hl=en +Explorer +Faucets +www.priceline.com/vp-web/* +Livestream software (Producer, Studio) +Xilinx Products - Devices, Boards, Developer Tools +Eno® Browser Extension + MS Office Add-In +Browser Extensions +Capture the Flag +Custom Webpages for Private Domains +Any other domain +IBM Products +IBM Websites +IBM Tokens & Secrets +All Other BitMEX Assets +https://play.google.com/store/apps/details?id=com.bitmex.app.android.testnet +https://testflight.apple.com/join/533gFghn +Any IP belonging to Liberapay +Steam Servers +Synthetics minions (public and private) +Agent traffic +channelstore.roku.com/details/48061/vhx +Branded Customer iOS Apps +Branded Customer Android Apps +Branded Customer Roku Apps +Security vulnerabilities that are identified in Sony products or in website domains owned, operated, or controlled by Sony are in scope. +CrowdStrike public infrastructure +Showmax tvOS Application for AppleTV +NLB (Network Load Balancer) for Showmax forwarding to HAproxies +NLB (Network Load Balancer) forwarding to NGINX Ingress Controller (Kubernetes), requiring SSO/Vouch Proxy to login +BBAC +https://chrome.google.com/webstore/detail/bitwarden-free-password-m/nngceckbapebfimnlniiiahkandclblb?hl=en +https://addons.mozilla.org/en-US/firefox/addon/bitwarden-password-manager/ +https://www.microsoft.com/store/p/bitwarden-free-password-manager/9p6kxl0svnnl +https://addons.opera.com/extensions/details/bitwarden-free-password-manager/ +https://safari-extensions.apple.com/details/?id=com.bitwarden.safari-LTZ2PFU5D6 +Tor +Tor Browser +Services (like the website, bug tracker, and server infrastructure) +Orbot +Parrot Security OS +Other Spotify websites +Gimlet +Anchor +Loudr +Niland +Parcast +Preact +Soundtrap +Greenroom Endpoints +Megaphone +Whooshkaa +Podsights +Chartable +Standalone Chrome extension +https://wordpress.org/plugins/formassembly-web-forms/ +Subdomain Takeover (SDTO) +Information Disclosures +Other assets +0x0d8775f648430679a709e98d2b0cb6250d2887ef +0x44fcfabfbe32024a01b778c025d70498382cced0 +0x7c31560552170ce96c4a7b018e93cddc19dc61b6 +0xfbfa258b9028c7d4fc52ce28031469214d10daeb +0x67fa2c06c9c6d4332f330e14a66bdf1873ef3d2b +Malicious or compromised gem +getharvest.com/mac +GitHub Enterprise Cloud +GitHub Pages +GitHub Production Credentials +Dependabot +LGTM +GitHub for mobile +GitHub CSP +Uber Assets +Your Own GitLab Instance +https://developer.zendesk.com/documentation/zendesk-sdks/#ios +https://developer.zendesk.com/documentation/zendesk-sdks/#android +Shopify Developed Apps +Shopify Mobile Applications +Shopify Scripts Platform +Shopify Third Party Apps +Shopify Third Party Store +UniFi Cloud +UID +Adobe Commerce, Commerce B2B and Commerce Open Source +Workfront Outlook Plugin +Localized airbnb sites listed at the link below: +https://appexchange.salesforce.com/appxListingDetail?listingId=a0N3A00000EFmGIUA1 +Any IP address reasonably attribute to Informatica +Any other domain reasonably attributable to Informatica +twitter.com/urbandictionary +Cloudflare Pages +CDNJS +WARP Mobile Apps +Cloudflare Access +Stream +1.1.1.1 Resolver +Magic Transit +Argo Tunnel +Spectrum +Load Balancing +Bot Management +Cloudflare for teams +Open source tools from Cloudflare +Cloudflare D1 +Cloudflare R2 +WooCommerce +Crowdsignal +WordPress.com VIP +WordPress Plugins & Themes +Other - Please describe +Yahoo! (misc) +7News +Yahoo Sports: Editorial +Yahoo Sports: Fantasy Sports +Yahoo Sports: Rivals +Yahoo Finance +Yahoo HK Auctions +Yahoo HK News +Yahoo HK Shopping +Yahoo Live Web Insights +Yahoo Mail +Yahoo Search +TW eCommerce: Auctions +TW Media: News +TW eCommerce: Shopping +TW Media: Stock +TW eCommerce: Store +Yahoo Video +Yahoo Weather +Flurry +Newsroom +Yahoo News +Gemini +Makers +BUILD +Built By Girls +Membership +Omega +Ensemble +Yahoo Calendar +RYOT +Engadget +TechCrunch +Autoblog +AOL Mail +Yahoo Sports: Rivals Forums +Yahoo Sports: Mobile +Yahoo Sports: Fantasy Slate/PicknWin +Yahoo Sports: Best Ball +Yahoo Sports: Fantasy Games +Yahoo Sports: Fantasy Wallet +Yahoo Sports: Daily Fantasy +Social Media Accounts +TW Media: Front Page +TW eCommerce: Used Car +Media Platform Marketing Website +Media Platforms Engineering Blog +AOL (misc) +AOL Homepage +AOL Mobile Apps +AOL Search +AOL Help +Yahoo Elections +IDS +Online Marketplace +AOL Publishers +Low Cost Access +DSP +Other (misc) +EdgeCast - Customers +EdgeCast - Partners +Uplynk +All Diem owned assets +iOS/Android fleet apps +Magento 2 Commerce, Commerce B2B and Open Source +com/us/app/cobinhood-ethereum-exchange/id1369572233?mt=8&ign-mpt=uo%3D4 +Maps Marker Pro WordPress plugin +FIles.com REST API +Files.com SDK's +Content +Ext. O: Acquisitions, not integrated to Mail.Ru infrastructure and external cloud services +Citymobil +Mail.Ru Cloud Solutions (MCS) +Main Scope +Ext. A Scope +Ext. B Scope +Delivery Club +ICQ +MY.GAMES +DonationAlerts +Foodplex +Samokat +Biz +Uchi +Citydrive +KITCHEN +NATIVEROLL +Pixonic +Ext. O: Delegated subdomain or branded partner service +Hosting +*.vpn.hackerone.net +*.hackerone-ext-content.com +*.hackerone-user-content.com +Other Amazon Retail Sites (Please only actively test explicitly stated scope) +Other Amazon Retail Mobile Apps (Please only actively test explicitly stated scope) +Amazon Retail Subsidiaries (Please only actively test explicitly stated scope) +Other Amazon Retail Assets (Please only actively test explicitly stated scope) +Chrome Extension: https://chrome.google.com/webstore/detail/metamask/nkbihfbeogaeaoehlefnkodbefgpgknn +Firefox Extension: https://addons.mozilla.org/en-US/firefox/addon/ether-metamask/ +OpenSea's Polygon and Klaytn contracts +Seaport Smart Contract +Elastic Synthetics Monitoring +All Nubank assets +All other Nubank assets +The Perfume Shop (subdomains) +Other non-production infrastructure +C100447517 +C103149579 +Trellix Products +Other Trellix Websites +Other Skyhigh Security Websites +Skyhigh Security products +VHX Branded Customer iOS Apps +VHX Branded Customer Android Apps +VHX Branded Customer Roku Apps +Livestream software (Producer, Studio) +MacOS App Store: https://apps.apple.com/us/app/raivo-otp/id1498497896 +MacOS App Store +Fortress (subdomains) +PARKnSHOP (subdomains) +Tesco +Booker +One Stop +ContentCal +Assets which are owned by Paystack are in scope for this Vulnerability Disclosure Program +* IPv4 addresses +* IPv6 addresses +Android APK: Download here https://play.google.com/store/apps/dev?id=5411538746886747470 +iOS APP: Download here https://apps.apple.com/hk/app/okx-buy-bitcoin-eth-crypto/id1327268470?l=en +Mac OS Executable: Download here https://www.okx.com/download +Windows OS Executable: Download here https://www.okx.com/download +https://marketplace.atlassian.com/apps/1219583/jira-cards-by-miro?hosting=cloud +https://marketplace.atlassian.com/apps/1217530/miro-for-confluence?hosting=cloud +https://marketplace.atlassian.com/apps/1215456/miro-for-jira-cloud?hosting=cloud +Miro SDK +Tier1 +Tier2 +Malwarebytes Privacy (VPN) +BrowserGuard (Firefox/Chrome/Safari browser extension) +Vulnerability & Patch Management +Malwarebytes Endpoint Detection and Response (EDR) +Malwarebytes Endpoint Protection +Malwarebytes Device Control +Any other Malwarebytes asset +XDEFI Extension (Chromium web extension) +Hedera Testnet API Endpoints +Testnet Mirror Node APIs +Delivery Hero +Foodpanda +Foodora +Hungerstation +Yemeksepeti +mjam +InstaShop +Talabat +DámeJídlo.cz +Baedal Minjok +foody +efood.gr +PedidosYa +Glovo +831287358355275877 +961114489414094898 +937011954453721119 +329381334701178885 +Security vulnerabilities that are identified in products or website domains owned by Cognizant are in scope +Other Expedia-owned Asset +*.magiceden.io +*.magiceden.dev +*.coralcube.io +*.magiceden.workers.dev +Tier 1 +Tier 2 +strongDM Gateway Docker/Kuberneters/Fargate Relay Container Image +Interflex Software IF-6040 +Interflex Software SP-EXPERT +Interflex Software IF-6020 +Interflex Managed Services (cloud) +20.165.44.200 +20.122.153.201 +20.114.177.126 +20.232.191.31 +20.84.34.149 +52.147.215.103 +52.147.215.27 +40.74.181.236 +20.96.224.176 +20.80.229.29 +13.82.173.96 +20.96.80.106 +20.228.220.130 +20.25.124.98 +20.114.72.141 +20.55.212.23 +20.110.133.248 +20.22.88.242 +MetaMask Browser Extension +MetaMask JavaScript SDK +Subdomain takeover +*.opensource.epam.com +Disclosure of the credentials or confidential information +All Multichain USDC and EUROC Smart Contracts +Cross Chain Transfer Protocol (CCTP) +Seadrop/Fee Collector Smart Contract +Broken Links +*deere.com* +advertising.deere.com +*promotemyprograms*.deere.com +adzone.deere.com +Stripe Apps +Stripe Payment Links +Stripe Invoicing +Stripe Financial Connections +Stripe Revenue Recognition +Stripe Identity +Stripe Climate +Stripe Data Pipeline +Stripe Tax +Stripe Capital +Stripe Treasury +*.gsa.gov +Figma Desktop App +Figma iOS and Android apps +Figma Slack App +Figma for Microsoft Teams +CTF challenge: ed25519 SSH host key of falcon-bug-bounty-flag-pgsql-dev-sandbox.aivencloud.com +PNS (subdomains) +Watsons HK (subdomains) +Watsons MY (subdomains) +Moneyback (subdomains) +Watsons PH (subdomains) +Watsons TW (subdomains) +Please refer to the policy page for scope +*equifax.com +*equifax.com.ar +*equifax.com.mx +*equifax.com.pr +*equifax.com.tw +*equifax.ca +*equifax.com.au +*equifax.cl +*equifax.co.cr +*equifax.ec +*equifax.sv +*equifax.hn +*equifax.co.in +*equifax.co.nz +*equifax.com.py +*equifax.pe +*equifax.pt +*equifax.ru +*equifax.es +*equifax.co.uk +*.mapcity.com +*.dicom.cl +*.ansoniacreditdata.com +*.talx.com +*.i2verify.com +*.kount.net +*.hiretech.com +*.wageverify.com +*.kount.com +*.accountscore.com +*.accountscore.co.uk +*.accountscore.net +*.employersedge.com +*.employersedge.net +*.datacredito.com +*.datacredito.com.do +*.datacredito.info +*.healthefx.net +*.healthefx.us +*.healthefxforms.us +*.paynet.us,*.paynet.ca,*.paynet.com,*.paynet.credit +*.equifax.com.pe +*.i9anywhere.com +*.paynetonline.us,*.paynetonline.ca,*.paynetonline.com,*.paynetonline.site,*.paynetonline.mobi +*.efficienthire.com +*.efficientforms.com +*.i9advantage.com +*.midigator.com +*.appriss.com,*.appriss.net,*.apprissafety.com,*.apprissgomobile.com,*.apprissinsights.com,*.apprissinsights.net,*.apprissmobile.com +*.datacredito1.com +*.datacredito2.com +*.datacredito3.com +*.equifax.cl +*.equifax.com +*.deliveroo-data.net +*.deliveroo-data.io +*.deliveroo-data-test.io +*.deliveroo.* +*.deliveroo-streams.net +Recon Data +uber.com +*.uberinternal.com +*ubereats.com +Cloudflare Zero Trust/Cloudflare One +WARP desktop client +https://chrome.google.com/webstore/detail/coinbase-wallet-extension/hnfanknocfeofbddgcijnmhnfnkdnaad +*.base.org +MongoDB Owned GitHub Repositories +Watsons TR (subdomains) +Marionnaud (subdomains) +Watsons TH (subdomains) +IP range 81.128.180.193 - 81.128.180.254 +IP range 145.233.9.129 - 145.233.9.131 +IP range 217.33.241.33 - 217.33.241.62 +IP range 194.74.25.97 - 194.74.25.110 +IP range 81.128.176.2 - 81.128.176.62 +All other applications (web sites, web applications, web services, and mobile applications) owned by Merck & Co., Inc., Rahway, NJ, USA +*.sam.gov +*.acquisition.gov +*.digital.gov +*.ecpic.gov +*.facadatabase.gov +Cloudflare DNS +Watsons SG (subdomains) +Watsons ID (subdomains) +MetaMask SDK +*.saytechnologies.com +*.say.rocks +Seadrop Smart Contract +EpicOnlineServices +(*).theendlessweb.com +(*).itsendless.org +(*).endlessgroup.org +nlaolsrvq02.mtn.co.za:8006/rest/atg/v1/device/mtnsite +portals-preprod.mtn.co.za:443 +mtnid-preprod.mtn.co.za:443 +Cloudflare CASB +*.advisorsolutions.gs.com +*.folioclient.com +*.foliofn.com +*.folioidentity.com +*.folioinstitutional.com +*.nnip.com +*.vennhypotheken.nl +*.foliodigitalwealth.com +*.foliofirst.com +*.folioinvesting.com +http://nlaussrvu01:9982/ +http://jhmcgwrva01:8080 +http://flaeblrvd09:15002/ebilling-qa-ui/-1    +*.sc-corp.net +Mozilla VPN Clients +All Assets (other than Blinkit) +Tier A - Core Assets +Tier B - Non Core (Bitmoji, Playcanvas) +Other Not Listed +Client Supplied List of Target IPs & Hostnames +Please see external docs +Workers +github.com/deriv-com +www.amazon.in specific areas of note +*.nextcapital.com +Mercado Pago Apps Endpoints +All Blinkit assets (in scope) +Tabsquare +Security vulnerabilities that are identified in Fifth Third Bank products or in website domains owned, operated, or controlled by Fifth Third Bank are in scope. +*.freightliner.com +All Apps published by Daimler Truck AG +Vehicles +*detroitconnect.com +elastic.co credentials +Product Delivery +Software Supply Chain +Elastic Clients +EVO Payments, Inc. +Eurofins Assets +SEGA Japan +*.fetchcore-cloud.com +*.zebrasports.com + All other applications (web sites, web applications, web services, and mobile applications) owned by AboitizPower and its Business Units +Tenable Security Center +MongoDB Driver: Node.js +MongoDB Driver: Java +MongoDB Driver: Python +MongoDB Driver: .NET +MongoDB Driver: Ruby +MongoDB Driver: Rust +Tier B - Non Core (Bitmoji, Playcanvas, Lens Studio) +OKT Chain +e-Commerce +Web3 Smart Contracts +Nessus +Tenable Identity Exposure +Tenable OT Security +Tenable Core +Tenable Web Application Scanning +Tenable Attack Surface Management +Tenable Lumin +Tenable One Exposure Management Platform + partnerconnect.zebra.com +*.antuit.ai +*.profitect.com +*.pttpro.zebra.com +*.zams-eu.zebra.com +*.zams.zebra.com +*.zebra.com/mobicontrol +*.zebra.engineering +*.zebramwe.com +*.zpc.zebra.com +spx-*.zebra.engineering +johndeerecloud.com +Any public cloud resource or infrastructure operated and managed by REI. +Android & iOS App for REI Customers +https://metamask.github.io/phishing-warning/ +Snaps +Third Party Snaps +Tenable Vulnerability Management +Chime IOS App (Beta) +Chime Android App (Beta) +MongoDB Server Local Instance +All other assets +cto-*.zebra.engineering +bankaccountdata.gocardless.com, ob.gocardless.com +.trip.com +CosmWasm +Packet Forward Middleware +Cloudflare Tunnel +AMP Real URL +Cloudflare Cache +Magic Firewall +Cloudflare Zaraz +China Network +API Shield +Gateway +Browser Isolation +Workers AI +AI Gateway +Vectorize +Hyperdrive +Workers KV +Cloudflare Analytics +Cloudflare Durable Objects +Turnstile +Waiting Room +Magic WAN +Data Loss Prevention (DLP) +SSL/TLS +Images +OKX Wallet Chrome Extension +OKX Wallet Edge Add-ons +Rovio Entertainment +Singapore Health Services (SingHealth) +National University Health System (NUHS) +National Healthcare Group (NHG) +1 Finance Shared Services (1FSS) +Agency for Integrated Care (AIC) / Intermediate & Long Term Care (ILTC) services +ALPS Healthcare (ALPS) +Synapxe +Consortium for Clinical Research and Innovation (CRIS) +MOH Holdings (MOHH) +OKX Wallet Safari Extension +Tenable Cloud Security +CometBFT +Cosmos SDK +ibc-go +Horcrux +MongoDB BI Connector +MongoDB Cluster-To-Cluster sync +MongoDB Compass +MongoDB Driver: C +MongoDB Driver: C# +MongoDB Driver: C++ +MongoDB Driver: Go +MongoDB Driver: PHP +MongoDB Driver: Swift +MongoDB Kafka Connector +MongoDB Realm SDKs +MongoDB Relational Migrator +MongoDB Shell +MongoDB Spark Connector +MongoDB VS Code Plugin +https://cisasmartaccess.allegion.com/login +https://keycontrol.allegion.com/it +CISA Aero PMS Service (Windows) +Smart Software 4 +CISA Reader App (Windows) +CISA Reader App (iMac) +GitLab for Jira Cloud +All other Assets +Core Assets +https://ring.com/* +https://api.ring.com/* +https://fw.ring.com/* +https://app.ring.com/* +https://admin.ring.com/* +https://nw.ring.com/* +https://oauth.ring.com/* +https://billing.ring.com/* +https://node.e2ro.com/* +https://api-user.e2ro.com/* +Hermes +ibc-go Relayer +IBC Go Relayer +Hermes Relayer +AppActions +Magic Eden Wallet (Chrome Extension) +iagcargo.com/* +*.iaggbs.com +*.iairgroup.com +Magic Eden ETH Marketplace (NEW) +Steam Client +*.aerlingus.com +Yoti Password Manager browser extension +Sonantic +Web3 Smart Contract +Trekpleister (subdomains) +Marionnaud FR (subdomains) +Android APK +iOS APP +Mac OS Executable +Windows OS Executable +deere.com +Any .magic.link demo sites +https://partnerservices.avios.com/partnerpages/password/request.html?partner=WEBGB00001&languageCode=en +Copilot +Copilot Chat on dotcom +*.dyson.com +Other Dyson Assets +Github findings +Yoti liveness detection campaign +Yahoo Homepages +Yahoo Games +OKX Android APK +OKX iOS APP +Okcoin Android APK +Okcoin iOS App +Instashop +Woowabros +Any public cloud resource or infrastructure operated and managed by REI +*.isharesonline.com +Crypto.com Wallet Extension +All internet-facing Aon assets are in scope +Grammarly Assistant +Braintree SDK +PayPal SDK +Freshservice Discovery Agent and Probe +https://www.amazonpay.in/* +C2PA Tool +Coinbase WaaS (Wallet as a Service) +Games Tier 1 +Games Tier 2 +wss://api.americanwagering.com/* +wss://diffusion-*.us.williamhill.com +Tier 1: +Tier 2: +*.cloudflarepartners.com +Merchant Portal +Grammarly Business Features +All Other In-Scope Assets +Corporate Assets +Open Source - Consoleme +Open Source - Weep +Open Source - Zuul +Microsites +Open Source - Spectator +Secondary Assets +Content Authorization Targets +Open Source - Dispatch +Affiliates or entities such as recently acquired companies +Content authorization vulnerabilities affecting only the in-browser player +Low impact, individually exposed Google Docs with no common root cause (see “Publicly accessible Google Document or Drive Links” in the “Corporate Targets” section) +Netflix Gaming Target +Amazon Subsidiaries (Please only actively test explicitly stated scope) diff --git a/src/OTHER_APK.txt b/src/OTHER_APK.txt new file mode 100644 index 0000000..f41876e --- /dev/null +++ b/src/OTHER_APK.txt @@ -0,0 +1,85 @@ +com.exness.android.pa +com.kraden.chat +FortniteClient-Android-Shipping-arm64-es2.apk +com.recordedfuture.mobile +com.larksuite.suite +com.oppo.usercenter +com.heytap.usercenter +com.nearme.atlas +com.nearme.wallet +com.coloros.browser +com.nearme.browser +com.heytap.browser +com.oppo.market +com.heytap.market +com.oppo.cloud +com.heytap.cloud +com.coloros.findphone.client +com.coloros.findphone.client2 +com.coloros.findmyphone +com.oppo.speechassist +com.coloros.speechassist +com.nearme.instant.platform +com.coloros.backuprestore +com.coloros.encryption +com.coloros.securepay +com.miui.micloudsync +com.xiaomi.smarthome +com.xiaomi.market +com.mi.global.shop +com.xiaomi.mibrain.speech +com.xiaomi.account +com.xiaomi.payment +com.xiaomi.mipicks +com.xiaomi.micloud.sdk +com.miui.cloudbackup +com.miui.cloudservice +com.android.browser +com.paddypower.sportsbook.u.inhouse +com.betfair.sportsbook +com.betfair.exchange +com.nordvpn.android +com.binary.ticktrade +im.status.ethereum +Pornhub_6.11.0-release.apk +kz.kolesa +kz.krisha +uz.avtoelon +com.transsion.hilauncher +com.transsion.faceid +com.transsion.calendar +com.talpa.hibrowser +com.transsion.notebook +com.rlk.weathers +com.transsion.fmradio +com.transsion.camera +net.bat.store +com.hoffnung +com.transsion.tecnospot +com.transsnet.store +com.transsion.letswitch +com.transsion.applock +com.transsion.phonemaster +tech.palm.id +com.afmobi.boomplayer +com.sh.smart.caller +com.transsion.scanningrecharger +com.scorpio.securitycom +com.transsion.aivoiceassistant +com.xui.xhide +com.transsion.compass +com.transsion.healthlife +com.transsion.plat.appupdate +com.transsion.trancare +com.zaz.translate +com.transsion.deskclock +com.transsion.screenrecord +com.transsion.systemupdate +com.transsion.screencapture +com.transsion.batterylab +com.transsion.datatransfer +com.transsion.magazineservice +com.transsion.soundrecorder +com.transsion.magicshow +com.wisdomtree.wtprime +com.talpa.share diff --git a/src/OTHER_IPA.txt b/src/OTHER_IPA.txt new file mode 100644 index 0000000..90247e5 --- /dev/null +++ b/src/OTHER_IPA.txt @@ -0,0 +1,4 @@ +com.recordedfuture.mobile +com.companyhub.crm +Superdrug.App.IOS +id1563808574 diff --git a/src/SMART_CONTRACT.txt b/src/SMART_CONTRACT.txt new file mode 100644 index 0000000..7acb2ba --- /dev/null +++ b/src/SMART_CONTRACT.txt @@ -0,0 +1,32 @@ +https://github.com/magiceden-oss/erc721m/releases/latest +https://github.com/magiceden-oss/open_creator_protocol/releases/latest +https://github.com/coralcube-oss/mmm/releases/latest +https://etherscan.io/address/0x0000a26b00c1F0DF003000390027140000fAa719 +https://github.com/ProjectOpenSea/seaport#deployments +https://etherscan.io/address/0x00005EA00Ac477B1030CE78506496e8C2dE24bf5 +https://github.com/smartcontractkit/chainlink +https://github.com/smartcontractkit/chainlink/tree/master/contracts +https://github.com/smartcontractkit/staking-v0.1/tree/master/contracts +https://github.com/circlefin/evm-cctp-contracts +https://algoexplorer.io/asset/31566704 +https://app.dragonglass.me/hedera/tokens/0.0.456858 +https://etherscan.io/token/0x1aBaEA1f7C830bD89Acc67eC4af516284b1bC33c +https://etherscan.io/token/0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48 +https://flowscan.org/contract/A.b19436aae4d94622.FiatToken +https://polygonscan.com/token/0x2791bca1f2de4661ed88a30c99a7a9449aa84174 +https://snowtrace.io/token/0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E +https://solscan.io/token/EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v +https://stellar.expert/explorer/public/asset/USDC-GA5ZSEJYB37JRC5AVCIA5MOP4RHTM335X2KGX3IHOJAPP5RE34K4KZVN +https://tronscan.org/#/token20/TEkxiTehnzSmSe2XqrBj4w32RUN966rdz8 +https://github.com/stellar/soroban-examples +https://base.org +https://github.com/worldcoin/world-id-contracts +https://github.com/worldcoin/world-id-state-bridge +https://etherscan.io/address/0x0046000000000151008789797b54fdb500E2a61e +https://etherscan.io/address/0xcE0000007B008F50d762D155002600004cD6c647 +https://etherscan.io/address/0x0000003E0000a96de4058e1E02a62FaaeCf23d8d +https://etherscan.io/address/0x000000e92d78d90000007f0082006fda09bd5f11 +https://etherscan.io/address/0x000000000000204327E6669f00901a57CE15aE15 +https://etherscan.io/address/0x000000000000a53f64b7bcf4cd59624943c43fc7 +http://github.com/circlefin/noble-cctp +https://github.com/circlefin/solana-cctp-contracts diff --git a/src/SOURCE_CODE.txt b/src/SOURCE_CODE.txt new file mode 100644 index 0000000..2e7be19 --- /dev/null +++ b/src/SOURCE_CODE.txt @@ -0,0 +1,769 @@ +https://github.com/endojs/endo/tree/master/packages/ses +https://github.com/Agoric/agoric-sdk/tree/master/packages/ERTP +https://github.com/Agoric/agoric-sdk/tree/master/packages/zoe +https://github.com/Agoric/agoric-sdk/tree/master/packages/run-protocol +https://github.com/endojs +https://github.com/HorizenOfficial/zen +https://github.com/18F/federalist-proxy +https://github.com/18F/federalist +https://github.com/18F/federalist-builder +https://github.com/18F/federalist-docker-build +https://github.com/18F/identity-idp +https://github.com/18F/identity-saml-sinatra +https://github.com/18F/identity-saml-rails +https://github.com/GSA/datagov-deploy +https://github.com/GSA/data.gov +https://github.com/18F/docker-ruby-ubuntu +https://github.com/ruby +https://github.com/rails +https://github.com/rubygems/rubygems +https://github.com/curl/curl +https://github.com/Electron +https://github.com/django +https://github.com/Nginx +https://github.com/openssl/openssl +https://github.com/nodejs/node +https://github.com/apache/airflow +https://github.com/apache/httpd +https://wiki.xenproject.org/wiki/Xen_Project_Repositories +https://git.libssh.org/ +https://github.com/spiffe/spiffe +https://github.com/spiffe/spire +https://github.com/rust-lang/rust +https://github.com/trufflesuite/truffle +https://github.com/trufflesuite/ganache +https://github.com/trufflesuite/trufflesuite.com +https://github.com/trufflesuite/ganache-ui +https://github.com/trufflesuite/vscode-ext +https://github.com/trufflesuite/preserves +https://github.com/trufflesuite/drizzle +https://github.com/trufflesuite/drizzle-utils +https://github.com/Zilliqa/scilla +https://github.com/Zilliqa/Zilliqa +https://github.com/Zilliqa/schnorr +https://github.com/Zilliqa/staking-contract/blob/main/contracts/ssnlist.scilla +https://github.com/Zilliqa/staking-contract/blob/main/contracts/proxy.scilla +https://github.com/Zilliqa/staking-contract/blob/main/contracts/gzil.scilla +https://github.com/Zilliqa/staking-contract/blob/main/contracts/multisig_wallet.scilla +https://github.com/Zilliqa/Zilliqa-JavaScript-Library +https://github.com/Zilliqa/gozilliqa-sdk +https://github.com/Zilliqa/dev-explorer +https://github.com/Zilliqa/Devex-apollo +https://github.com/Zilliqa/ceres +https://github.com/Zilliqa/zilliqa-multisig-wallet +https://github.com/Zilliqa/ZRC/blob/master/reference/multisig_wallet.scilla +https://github.com/Zilliqa/ZRC/blob/master/reference/nonfungible-token.scilla +https://github.com/Zilliqa/ZRC/blob/master/reference/FungibleToken.scilla +https://github.com/Switcheo/switcheo-tradehub-zil/blob/main/contracts/LockProxySwitcheo.scilla +https://github.com/Switcheo/switcheo-tradehub-zil/blob/main/contracts/ZilCrossChainManager.scilla +https://github.com/Switcheo/switcheo-tradehub-zil/blob/main/contracts/ZilCrossChainManagerProxy.scilla +https://github.com/Switcheo/switcheo-tradehub-zil/blob/main/contracts/SwitcheoTokenZRC2.scilla +https://github.com/elastic/elasticsearch +https://github.com/elastic/kibana +https://github.com/elastic/logstash +https://github.com/elastic/beats +mewcx.chrome.extension +https://github.com/sifchain/sifnode +https://gitlab.com/upchieve/subway +https://github.com/samuel-lucas6/Kryptor +https://github.com/samuel-lucas6/ChaCha20-BLAKE2b +https://github.com/mcu-tools/mcuboot +https://github.com/fastify +Analytics & Customer Engagement (ACE) +mattermost/mattermost-server +mattermost/mattermost-webapp +mattermost/mattermost-mobile +mattermost/mattermost-redux +mattermost/desktop +mattermost/mattermost-push-proxy +mattermost/mattermost-plugin-jira +mattermost/mattermost-plugin-zoom +mattermost/mattermost-plugin-github +mattermost/mattermost-plugin-autolink +mattermost/mattermost-plugin-welcomebot +mattermost/mattermost-plugin-custom-attributes +mattermost/mattermost-plugin-aws-SNS +mattermost/mattermost-plugin-playbooks +https://github.com/OpenMage/magento-lts +https://github.com/DopplerHQ/cli +https://github.com/WorldHealthOrganization/app +https://github.com/skalenetwork/skale-consensus +https://github.com/skalenetwork/libBLS +https://github.com/skalenetwork/sgxwallet +https://github.com/skalenetwork/skale-manager/tree/develop/contracts +Bootgen +Xilinx Runtime (XRT) +https://github.com/impresscms/impresscms +https://github.com/mainwp/mainwp +https://github.com/mainwp/mainwp-child +https://github.com/maticnetwork/heimdall +https://github.com/maticnetwork/bor +https://github.com/maticnetwork/contracts +https://github.com/orion-labs/node-red-contrib-orion +https://github.com/orion-labs/node-orion +https://github.com/EndlessHosting +https://github.com/tokencard/contracts +https://github.com/lifeomic/cli +https://github.com/kubernetes/csi-api +https://github.com/kubernetes/kubernetes +https://github.com/kubernetes/dns +https://github.com/kubernetes/kube-openapi +https://github.com/kubernetes/git-sync +https://github.com/kubernetes/gengo +https://github.com/kubernetes/cluster-bootstrap +https://github.com/kubernetes/kube-controller-manager +https://github.com/kubernetes/kube-scheduler +https://github.com/kubernetes/kubelet +https://github.com/kubernetes/kube-proxy +https://github.com/kubernetes/cli-runtime +https://github.com/kubernetes/metrics +https://github.com/kubernetes/apiextensions-apiserver +https://github.com/kubernetes/kube-aggregator +https://github.com/kubernetes/apiserver +https://github.com/kubernetes/component-base +https://github.com/kubernetes/client-go +https://github.com/kubernetes/api +https://github.com/kubernetes/apimachinery +https://github.com/kubernetes/code-generator +https://github.com/kubernetes/publishing-bot +https://github.com/kubernetes/cluster-registry +https://github.com/kubernetes/k8s.io +https://github.com/kubernetes/klog +https://github.com/kubernetes/utils +https://github.com/kubernetes/website +https://github.com/kubernetes/test-infra +https://github.com/kubernetes/ingress-nginx +https://github.com/kubernetes/kops +https://github.com/kubernetes/minikube +https://github.com/kubernetes/kompose +https://github.com/kubernetes/kube-state-metrics +https://github.com/kubernetes/autoscaler +https://github.com/kubernetes/kube-deploy +https://github.com/kubernetes/release +https://github.com/kubernetes/dashboard +https://github.com/kubernetes/node-problem-detector +https://github.com/kubernetes/repo-infra +https://github.com/kubernetes/kubectl +https://github.com/kubernetes/org +https://github.com/kubernetes/sig-release +https://github.com/kubernetes/kubeadm +https://github.com/kubernetes/cri-api +https://github.com/kubernetes/node-api +https://github.com/kubernetes/csi-translation-lib +https://github.com/kubernetes/cloud-provider +https://github.com/kubernetes-security +https://github.com/kubernetes-client +github.com/kubernetes-csi +https://github.com/kubernetes/cloud-provider-alibaba-cloud +https://github.com/kubernetes/cloud-provider-sample +https://github.com/kubernetes/kubernetes-template-project +https://github.com/kubernetes/kubernetes-anywhere +https://github.com/kubernetes/frakti +https://github.com/kubernetes/sample-cli-plugin +https://github.com/kubernetes/sample-controller +https://github.com/kubernetes/sample-apiserver +https://github.com/kubernetes/cloud-provider-gcp +https://github.com/kubernetes/security +https://github.com/kubernetes/examples +https://github.com/kubernetes/steering +https://github.com/kubernetes/funding +https://github.com/kubernetes/cloud-provider-aws +https://github.com/kubernetes/community +https://github.com/kubernetes/ingress-gce +https://github.com/kubernetes/enhancements +https://github.com/kubernetes/cloud-provider-openstack +https://github.com/kubernetes/perf-tests +https://github.com/kubernetes/cloud-provider-azure +https://github.com/kubernetes/cloud-provider-vsphere +https://github.com/kubernetes/legacy-cloud-providers +https://github.com/kubernetes-incubator +github.com/kubernetes-retired +https://github.com/kubernetes-sigs +https://github.com/jitsi/ +https://github.com/orgs/8x8/packages?repo_name=8x8_messaging_java_client +https://github.com/callstats-io/ +https://github.com/oasisprotocol/oasis-core +https://github.com/oasisprotocol/deoxysii +https://github.com/oasisprotocol/deoxysii-rust +https://github.com/oasisprotocol/ed25519 +https://github.com/oasisprotocol/oasis-sdk +https://github.com/oasisprotocol/curve25519-voi +https://github.com/oasisprotocol/oasis-wallet-web +https://github.com/oasisprotocol/oasis-wallet-ext +https://svn.filezilla-project.org/svn/libfilezilla/trunk/ +https://svn.filezilla-project.org/svn/FileZilla3/trunk/ +https://svn.filezilla-project.org/svn/libfilezilla/trunk +https://github.com/solidusio/solidus +https://github.com/solidusio/solidus_auth_devise +https://github.com/DefectDojo/django-DefectDojo +github.com/smartcontractkit/chainlink +https://github.com/smartcontractkit/chainlink/tree/master/contracts +https://github.com/phpbb/phpbb +https://github.com/pyca/cryptography +https://github.com/pyca/pynacl +https://github.com/pyca/bcrypt +https://github.com/pyca/pyopenssl +https://github.com/pyca/infra +Java Component in search.maven.org +Java component NOT in search.maven.org +github.com +https://github.com/gtsatsis/RLAPI-v3-OOP +https://github.com/matomo-org/matomo +https://plugins.matomo.org/developer/matomo-org +https://plugins.matomo.org/developer/innocraft +https://github.com/matomo-org +https://github.com/innocraft/ +https://github.com/eslint/eslint-github-bot +https://github.com/eslint/eslint +https://github.com/duckduckgo/duckduckgo-privacy-extension +MariaDB Server & Connectors - Remote Code Execution +MariaDB Server & Connectors - Access control bypass +MariaDB Server & Connectors - Data corruption, exfiltration, disclosure +MariaDB Server & Connectors - Denial of Service +airtable.js SDK (https://www.npmjs.com/package/airtable) +https://github.com/arkadiyt/ssrf_filter +https://github.com/arkadiyt/bounty-targets +https://github.com/arkadiyt/aws_public_ips +https://github.com/arkadiyt/zoom-redirector +https://github.com/liberapay/liberapay.com +https://github.com/tendermint/tendermint +https://github.com/cosmos/iavl +https://github.com/cosmos/cosmos-sdk +https://github.com/iqlusioninc/yubihsm.rs +https://github.com/iqlusioninc/tmkms +https://github.com/iqlusioninc/signatory +https://github.com/cosmos/ledger-cosmos +https://github.com/cosmos/gaia +https://github.com/cosmos/ibc-go +https://github.com/valvesoftware + https://github.com/crypto-org-chain/chain-main +https://github.com/crypto-com/cro-staking +https://github.com/crypto-com/swap-contracts-periphery +https://github.com/crypto-com/swap-contracts-core +https://github.com/rsksmart/rskj +https://github.com/rsksmart/tokenbridge +https://github.com/rsksmart/powpeg-node +https://github.com/hyperledger/fabric +https://github.com/hyperledger/fabric-ca +https://github.com/hyperledger/fabric-chaincode-java +https://github.com/hyperledger/fabric-chaincode-node +https://github.com/hyperledger/fabric-chaintool +https://github.com/hyperledger/fabric-sdk-node +https://github.com/hyperledger/fabric-sdk-java +https://github.com/hyperledger/fabric-baseimage +https://github.com/hyperledger/fabric-sdk-go +https://github.com/hyperledger/fabric-sdk-py +https://github.com/hyperledger/fabric-sdk-rest +https://github.com/hyperledger/fabric-samples +https://gitlab.com/jamieweb/results-whitelist +https://gitlab.com/jamieweb/jamieweb +https://gitlab.com/jamieweb/jw-config +https://gitlab.com/jamieweb/web-server-log-anonymizer-bloom-filter +https://gitlab.com/jamieweb/dl-integrity-verify +https://github.com/plaid/plaid-link-ios +https://github.com/plaid/plaid-link-android +https://github.com/plaid/plaid-link-examples +https://github.com/plaid/plaid-ruby +https://github.com/plaid/react-native-plaid-link-sdk +https://github.com/plaid/react-plaid-link +https://github.com/vanilla/vanilla/ +https://github.com/vanilla/addons +https://github.com/vanilla/community +https://github.com/dhui/passhash +https://github.com/johnbillion/user-switching +https://github.com/johnbillion/query-monitor +https://github.com/johnbillion/wp-crontrol +https://github.com/EdOverflow/* +https://github.com/securitytxt/* +https://github.com/AspenWeb +https://github.com/bitwarden +https://github.com/delight-im +Spotify SDKs +iOS SDK +Android SDK +Web Playback SDK +Backstage source code +https://github.com/cuvva/docs +SSO_Saml_connector +https://github.com/WeblateOrg/weblate +https://github.com/WeblateOrg/wlc +https://github.com/WeblateOrg/docker +https://github.com/WeblateOrg/website +https://github.com/WeblateOrg/translation-finder +WordPress Core +BuddyPress Core +BBPress Core +*.trac.wordpress.org, *.svn.wordpress.org, *.git.wordpress.org, github.com/WordPress +Gutenberg +GlotPress +WP-CLI +Official WordPress plugins +https://github.com/brave/brave-core +https://github.com/brave-intl/bat-ledger +https://github.com/brave-intl/bat-client +https://github.com/brave-intl/bat-balance +https://github.com/brave-intl/bat-publisher +https://github.com/brave-intl/publishers +https://github.com/brave/vault-updater +https://github.com/brave-intl/bat-go +https://github.com/brave/brave-ios +https://github.com/dovecot/core +https://github.com/dovecot/pigeonhole +https://github.com/PowerDNS/pdns +https://github.com/open-xchange/appsuite-middleware +https://github.com/open-xchange/appsuite-frontend +https://github.com/ruby/ruby +nextcloud/server +nextcloud/activity +nextcloud/files_accesscontrol +nextcloud/3rdparty +nextcloud/files_pdfviewer +nextcloud/files_texteditor +nextcloud/firstrunwizard +nextcloud/notifications +nextcloud/password_policy +nextcloud/user_saml +nextcloud/files_automatedtagging +nextcloud/files_retention +nextcloud/serverinfo +nextcloud/nextcloud_announcements +nextcloud/logreader +nextcloud/survey_client +nextcloud/updater +nextcloud/spreed +nextcloud/photos +nextcloud/mail +nextcloud/files_rightclick +nextcloud/privacy +nextcloud/recommendations +nextcloud/viewer +nextcloud/text +nextcloud/circles +nextcloud/data_request +nextcloud/files_antivirus +nextcloud/fulltextsearch +daita/files_fulltextsearch_tesseract +nextcloud/flow_notifications +nextcloud/fulltextsearch_elasticsearch +nextcloud/files_fulltextsearch +nextcloud/groupfolders +nextcloud/guests +nextcloud/sharepoint +nextcloud/socialsharing +nextcloud/suspicious_login +nextcloud/terms_of_service +nextcloud/twofactor_totp +nextcloud/twofactor_u2f +nextcloud/user_oidc +nextcloud/workflow_script +nextcloud/calendar +nextcloud/contacts +nextcloud/richdocuments +nextcloud/onlyoffice +nextcloud/end_to_end_encryption +nextcloud/deck +https://www.mapbox.com/mapbox.js/ +https://www.mapbox.com/mapbox-gl-js/ +https://docs.mapbox.com/ios/maps/overview/ +https://docs.mapbox.com/android/ +https://github.com/mapbox +https://github.com/paragonie/sodium_compat +https://github.com/paragonie/easydb +https://github.com/paragonie/halite +https://github.com/paragonie/random_compat +https://github.com/paragonie/anti-csrf +https://github.com/paragonie/constant_time_encoding +https://github.com/paragonie/certainty +https://github.com/paragonie/password_lock +https://github.com/paragonie/gpg-mailer +https://github.com/paragonie/chronicle +https://github.com/paragonie/sapient +https://github.com/paragonie/paseto +https://gitlab.com/gitlab-org/gitlab +https://gitlab.com/gitlab-org/gitlab-runner +https://gitlab.com/gitlab-org/gitaly +https://gitlab.com/gitlab-org/gitlab-pages +https://gitlab.com/gitlab-org/gitlab-shell +https://gitlab.com/gitlab-org/gitlab-vscode-extension +github.com/binary-com +https://github.com/globaleaks/GlobaLeaks +https://github.com/bcit-ci/CodeIgniter +https://github.com/revive-adserver/revive-adserver +owncloud/core +owncloud/user_ldap +owncloud/oauth2 +owncloud/customgroups +owncloud/guests +owncloud/richdocuments +owncloud/activity +owncloud/files +owncloud/notifications +owncloud/gallery +owncloud/updater +https://github.com/bwillis/versioncake +https://github.com/smooch/smooch-android +https://github.com/smooch/smooch-ios +https://github.com/smooch/smooch-web +https://lensstudio.snapchat.com/api/ +https://github.com/adobe/svg-native-viewer +https://github.com/WordPoints/wordpoints/ +https://github.com/WordPoints/ +github.com/urbandictionary +WordPress.org plugins +GitHub repositories +Jetpack +https://github.com/irccloud/ios +https://github.com/irccloud/android +https://github.com/irccloud/irccloud-desktop +https://github.com/concrete5/concrete5 +https://github.com/slackhq/nebula +Arkime +Athenz +Yahoo Open Source Projects (misc) +https://github.com/rails/rails +express +body-parser +Other module +serve-here +augustine +lactate +fastify +featurebook +html-pages +serve +html-janitor +angular-http-server +node-srv +hekto +metascrapper +simplehttpserver +general-file-server +anywhere +626 +crud-file-server +localhost-now +mcstatic +public +hoek +lodash +mixin-deep +assign-deep +merge-deep +defaults-deep +resolve-path +stattic +protobufjs +sshpk +typeorm +https-proxy-agent +http-proxy-agent +glance +bracket-template +simple-server +pullit +whereis +metascraper +sexstatic +grunt-serve +buttle +pdfinfojs +m-server +atob +deap +deep-extend +merge-recursive +merge-options +merge-objects +entitlements +cloudcmd +concat-with-sourcemaps +foreman +rgb2hex +superstatic +stringstream +fs-path +command-exists +npmconf +react-marked-markdown +put +getcookies +utile +file-static-server +formidable +canvas +njwt +merge +useragent +ua-parser-js +pdf-image +byte +open +sql +base64url +macaddress +cryo +funcster +express-cart +git-dummy-commit +marked +memjs +express-useragent +markdown-pdf +scrape-metadata +statics-server +exceljs +extend +url-parse +multer +win-spawn +flintcms +egg-scripts +libnmap +ps +cached-path-relative +samsung-remote +apex-publish-static-files +takeapeek +ascii-art +knightjs +bruteser +node-red +samlify +http-live-simulator +node-xlsx +ponse +send +morgan +tianma-static +zombie +flatmap-stream +reveal.js +harp +mpath +node.extend +just-extend +noble +servey +bower +kramed +zlib-browserify +atlasboard-atlassian-package +node-buffer-builder +questor +node-email +http-sync +bufferjs +jQuery +smart-extend +node-tar +pdf-officegen +is-my-json-valid +dot +kill-port +webpack-bundle-analyzer +finalhandler +handlebars +gatsby-remark-images-contentful +mqtt-packet +seneca +http_server +gitlabhook +pino +MQTT.js +node-df +node-static +treekill +tree-kill +new-serve +fileview +kill-port-process +seeftl +meta-git +hexo-admin +npm-git-publish +total.js +jimp +jpeg-js +devcert +Ghost +crypto-js +jison +logkitty +react-autolinker-wrapper +utils-extend +jsonpointer +Uppy +json-bigint +property-expr +i18next +json8-merge-patch +node-downloader-helper +json-stable-stringify +@firebase/util +systeminformation +https://github.com/status-im/status-react +https://github.com/status-im/status-go +Desktop Wallet +https://github.com/Agoric/ses-shim +https://github.com/Agoric/agoric-sdk +https://github.com/diem/diem/ +https://github.com/notepad-plus-plus/notepad-plus-plus +https://github.com/apache/kafka +https://www.chiark.greenend.org.uk/~sgtatham/putty/ +https://github.com/notepad-plus-plus/notepad-plus-plus.git +https://github.com/deconf/Google-Analytics-Dashboard-for-WP + https://github.com/18F/identity-idp +https://github.com/adobe/* +https://github.com/argoproj/argoproj +https://github.com/tokencard/contracts/tree/master/contracts +https://github.com/rack/rack +https://github.com/pixiv/charcoal +https://github.com/raivo-otp/ios-application +https://github.com/raivo-otp/issuer-icons +https://github.com/raivo-otp/apns-server +https://github.com/raivo-otp/macos-receiver +enkrypt.browser.extension +https://github.com/hyperledger/fabric-amcl +https://github.com/hyperledger/fabric-cli +https://github.com/hyperledger/fabric-chaincode-go +https://github.com/hyperledger/fabric-config +https://github.com/hyperledger/fabric-contract-api-go +https://github.com/hyperledger/fabric-gateway-java +https://github.com/hyperledger/fabric-gateway +https://github.com/hyperledger/fabric-lib-go +https://github.com/hyperledger/fabric-private-chaincode +https://github.com/hyperledger/fabric-protos-go-apiv2 +https://github.com/hyperledger/fabric-protos-go +https://github.com/hyperledger/fabric-protos +github.com/cornershop/* +Mattermost Source Code +Mattermost Plugins +Other publicly-released plugins +https://github.com/Agoric/agoric-sdk/tree/master/packages/inter-protocol +https://www.zabbix.com/download_sources +https://github.com/tronprotocol/java-tron +https://github.com/kiwicom/* +Hedera Network Services Codebase +Hedera Mirror Node Codebase +Hedera Java SDK +Hedera Javascript SDK +Hedera Go SDK +https://github.com/jitsi +https://github.com/moonpay +https://github.com/moonpay-hypermint +https://github.com/USStateDept +Magic Eden Open Source - Smart Contracts +Magic Eden Open Source - Open Creator Protocol +CoralCube Open Source - MMM +https://github.com/gravitational/teleport +https://github.com/gravitational/teleport-plugins +https://github.com/gravitational/gravity +StrongDM Go SDK +StrongDM Python SDK +StrongDM Java SDK +StrongDM Ruby SDK +https://github.com/18f/federalist-proxy +https://github.com/18f/federalist +https://github.com/18f/federalist-builder +https://github.com/18f/federalist-docker-build +https://github.com/18f/identity-idp +https://github.com/18f/identity-saml-sinatra +https://github.com/18f/identity-saml-rails +https://github.com/gsa/datagov-deploy +https://github.com/gsa/data.gov +https://github.com/18f/docker-ruby-ubuntu +LaunchDarkly Open Source SDKs +https://github.com/digitalocean/doctl +https://github.com/digitalocean/do-agent +https://github.com/digitalocean/droplet-agent +https://github.com/digitalocean/terraform-provider-digitalocean +https://github.com/digitalocean/do-markdownit +https://github.com/smartcontractkit/staking-v0.1/tree/master/contracts +Grammarly for Developers Text Editor SDK +https://github.com/paypal/react-paypal-js +https://github.com/RocketChat/Rocket.Chat +https://github.com/RocketChat/Rocket.Chat.ReactNative +https://github.com/RocketChat/Rocket.Chat.Electron +https://github.com/cometbft/cometbft +https://github.com/iqlusioninc/crates/tree/main/signatory +nextcloud/bruteforcesettings +nextcloud/related_resources +nextcloud/approval +nextcloud/files_lock +nextcloud/user_migration +nextcloud/twofactor_webauthn +nextcloud/external +nextcloud/notify_push +nextcloud/calendar_resource_management +nextcloud/globalsiteselector +nextcloud/notes +nextcloud/preferred_providers +https://github.com/owncloud/ocis +https://github.com/cloudflare/workerd +https://github.com/cometbft/cometbft-db +https://github.com/cosmos/ics23 +https://github.com/smartcontractkit/chainlink +https://github.com/8x8/8x8_messaging_java_client +https://github.com/finos/CatchIT +https://github.com/arkadiyt/protodump +github.com/oasisprotocol/explorer +github.com/snowplow/ +github.com/snowplow-incubator +https://github.com/snowplow-devops +https://github.com/snowplow-product +https://github.com/stellar/rs-soroban-env +https://github.com/stellar/rs-soroban-sdk + https://github.com/stellar/stellar-core/tree/master/src/rust +https://github.com/stellar/bytes-lit +https://github.com/stellar/crate-git-revision +https://github.com/stellar/js-soroban-client +https://github.com/stellar/rs-stellar-strkey +https://github.com/stellar/rs-stellar-xdr +https://github.com/stellar/soroban-examples +https://github.com/stellar/soroban-tools +https://github.com/stellar/wasmi +https://gitlab.com/gitlab-org/opstrace/opstrace +https://github.com/AleoHQ/snarkOS/ +https://github.com/AleoHQ/snarkVM/ +https://github.com/passwordless +https://github.com/fireblocks/mpc-lib +https://github.com/iron-fish/ironfish +https://github.com/leather-wallet/extension +https://github.com/leather-wallet/desktop +Snaps Development Packages +https://filezilla-project.org/download.php?type=server&show_all=1 +https://github.com/smartcontractkit/external-adapters-js/ +https://github.com/0xPolygon/chain-indexer-framework +https://github.com/CosmWasm/cosmwasm +https://github.com/arkadiyt/ddexport +https://github.com/arkadiyt/free-ft +https://github.com/roundcube/roundcubemail +https://github.com/apache/tomcat +https://github.com/rsksmart/rif-wallet +https://github.com/rsksmart/rif-wallet-services +https://github.com/rsksmart/rif-wallet-libs +https://github.com/poplindata +https://github.com/snowplow-referer-parser +https://github.com/Dynatrace-innovationlab +https://github.com/Dynatrace +https://github.com/Dynatrace-oss-contrib +https://github.com/nextcloud/files_confidential +https://github.com/Shopify/* +https://github.com/tari-project/ +https://github.com/worldcoin +ONCE: Campfire +https://github.com/alchemyplatform/modular-account +https://github.com/Chia-Network/chia-blockchain +https://github.com/Chia-Network/chia-blockchain-gui +https://github.com/Chia-Network/clvm_rs +https://github.com/Chia-Network/chia_rs +https://github.com/Chia-Network/chiapos +https://github.com/Chia-Network/chiavdf +https://github.com/crypto-com/chain-desktop-wallet +https://github.com/libuv/libuv +https://github.com/HeyPuter/puter/ +https://github.com/contentauth/c2pa-js +https://github.com/contentauth/c2pa-rs +Open Source - Atlas +https://github.com/nimiq/core-rs-albatross +https://github.com/discourse/discourse diff --git a/src/TESTFLIGHT.txt b/src/TESTFLIGHT.txt new file mode 100644 index 0000000..2870c78 --- /dev/null +++ b/src/TESTFLIGHT.txt @@ -0,0 +1,3 @@ +com.finnwea.Raivo +com.wisdomtree.wtprime +com.lowes.LowesStoreTestFlight diff --git a/src/URL.txt b/src/URL.txt new file mode 100644 index 0000000..36ff056 --- /dev/null +++ b/src/URL.txt @@ -0,0 +1,10574 @@ +https://dashboard.razorpay.com +https://api.razorpay.com +https://checkout.razorpay.com +https://invoices.razorpay.com +www.linkedin.com +api.linkedin.com +*.wealthsimple.com +*.simpletax.ca +*.gojekapi.com +*.gopayapi.com +api.gojek.co.id +https://www.gojek.com +https://portal.gosend.id +https://gocorp.gojek.com +https://gofood.co.id +https://gosend.id/ +https://go-tix.id/ +*.findaya.com +*.findaya.co.id +*.mab.co.id +*.planet.com +*.planet-labs.com +my.ro.co +login.ro.co +start.ro.co +*.ro.co +ro.co/pharmacy +ro.co/mind +ro.co/derm +ro.co/spermkit +*.getroman.com +*.ropharmacy.com +*.hellorory.com +*.modernfertility.com +*.myplenity.com +automationanywhere.university +https://apeople.automationanywhere.com/ +https://botstore.automationanywhere.com/ +*.my.automationanywhere.digital +14west-1.my.automationanywhere.digital +1775.my.automationanywhere.digital +*.alexamerican.com +*.alexamericansystems.com +*.americansystems.com +*.ascvpc.com +*.ascsites.com +*.ascgov.com +*.ddlomni.com +*.nhaero.com +*.americansystems.info +*.amsyscorp.com +*.2asc.com +*.americanalliant.com +*.asc.name +*.digitalaccess.com +*.americansystemsuniversity.com +*.americansystems.org +*.thoughtmill.com +*.american-systems.org +*.american-systems.com +*.asextranet.com +*.emsolutionsinc.com +*.emsolve.com +*.essworld.net +*.nswccd-fbw-scs.com +*.asvpc.com +*.alex-as.com +www.kayak.com +www.swoodoo.com +www.checkfelix.com +www.momondo.com +www.cheapflights.com +www.hotelscombined.com +www.mundi.com.br +business.kayak.com +app.s02.callsign.com +*.s02.callsign.com +b2b.s02.callsign.com +https://southfields-v2.s02.t00-csglobal.a2develop.com/ +*.* +j2.com +j2global.com +ziffdavis.com +https://www.pcmag.com/ +https://mashable.com/ +https://www.askmen.com/ +https://www.extremetech.com/ +https://www.offers.com/ +https://www.retailmenot.com/ +https://www.techbargains.com/ +https://blackfriday.com/ +https://www.theblackfriday.com/ +https://www.dealsofamerica.com/ +https://www.ign.com/ +https://howlongtobeat.com/ +https://www.humblebundle.com/ +https://www.speedtest.net/ +https://downdetector.com/ +https://www.toolbox.com/ +https://www.spiceworks.com/ +https://community.spiceworks.com/ +https://www.ekahau.com/ +https://www.everydayhealth.com/ +https://www.whattoexpect.com/ +https://www.medpagetoday.com/ +https://www.healthecareers.com/ +https://www.castleconnolly.com/ +https://www.babycenter.com/ +https://www.migraineagain.com/ +https://www.diabetesdaily.com/ +https://www.dailyom.com/ +https://primeinc.org/ +https://www.campaigner.com/ +https://www.smtp.com/ +https://www.ipvanish.com/ +https://uk.pcmag.com/ +www.computershopper.com +www.geek.com +https://bestblackfriday.com/ +www.insidecrm.com +www.itmanagement.com +www.itsecurity.com +www.voip-news.com +au.pcmag.com +http://www.retailmenot.fr/ +https://www.ma-reduc.com/ +https://www.poulpeo.com/ +https://www.line2.com/ +https://www.icontact.com/ +www.ipvanish.com +https://kickbox.com/ +sorare.com +api.sorare.com +ws.sorare.com +*.shein.com +*.romwe.com +smtp2go.com +app.smtp2go.com +api.smtp2go.com +messenger2.dragonapp.io +getdragon.ch +webrtc.dragonapp.io +wipe.dragonapp.io +releases.dragonapp.io +admin.dragonapp.io +app.traderepublic.com +api.traderepublic.com +traderepublic.com +app-sandbox.circle.com +my-sandbox.circle.com +api-sandbox.circle.com +api.circle.com +my.circle.com +app.circle.com +usdc.circle.com +www.circle.com +*.securityscorecard.io +*.securityscorecard.com +*.gymshark.com +*.gymshark.io +www.etoro.com +etoropartners.com +partners.etoro.com +aggregator.etoro.com +api.etoro.com +billing.etoro.com +billing-pci.etoro.com +candle.etoro.com +candle-src.etoro.com +cashier.etoro.com +cashier-src.etoro.com +charts.etoro.com +push-d-gw.cloud.etoro.com +push-d-hap.cloud.etoro.com +push-demo-hk-lightstreamer.cloud.etoro.com +push-demo-lightstreamer.cloud.etoro.com +push-dn-hap.cloud.etoro.com +push-hap.cloud.etoro.com +push-lightstreamer.cloud.etoro.com +push-n-hap.cloud.etoro.com +push-real-hk-lightstreamer.cloud.etoro.com +etorologsapi.etoro.com +kyc.etoro.com +kyc-src.etoro.com +r.etoro.com +streams.etoro.com +sts.etoro.com +tapi-demo.etoro.com +tapi-real.etoro.com +uapi-front.etoro.com +wallet.etoro.com +watchlistapi.etoro.com +etorox.com +rankings.etoro.com +delta.app +api.instacart.com +www.instacart.com +admin.instacart.com +shoppers.instacart.com +*.instacart.com +*.instacart.tools +*.ups.com +*.sign.plus +www.alohi.com +*.fax.plus +*.realogy.* +*.bhgre.* +*.century21.* +*.coldwellbanker.* +*.cbcworldwide.* +*.corcoran.* +*.era.* +*.sothebysrealty.* +*.nrtllc.* +*.trgc.com +*.leadrouter.com +*.cartus.* +*.mycbdesk.com +new.myzap.com +databricks.com +https://dbc-a1ba5468-749b.staging.cloud.databricks.com,https://community.cloud.databricks.com/ +connect.databricks.com,databricks-staging-cloudfront.staging.cloud.databricks.com,docs-admin.databricks.com,docs-user.databricks.com,e.databricks.com,go.databricks.com,go.dev.databricks.com,homebrew-tap.dev.databricks.com,ideas.staging.databricks.com,info.databricks.com,it.corp.databricks.com,ok.databricks.com,pages.databricks.com,partnermarketing.databricks.com,signup.cloud.mrkt.databricks.com,signup.dev.mrkt.databricks.com,ssh.databricks.com,ssh.spark-summit.org,staging.spark-summit.org,tools.sec-sf.databricks.com,training.databricks.com,uberlyft-ns.dev.databricks.com,waf-test.corp.databricks.com,academy.databricks.com,accounts.cloud.databricks.com,databricks-prod-cloudfront.cloud.databricks.com,delta.io,demo.cloud.databricks.com,docs.cloud.databricks.com,docs.databricks.com,docs.delta.io,files.training.databricks.com,ftp.databricks.com,go.corp.databricks.com,gw1-ap.corp.databricks.com,gw1-eu.corp.databricks.com,gw1-us.corp.databricks.com,gw2-us.corp.databricks.com +help.corp.databricks.com,help.databricks.com,ideas.databricks.com,kb.azuredatabricks.net,kb.databricks.com,maintenance.databricks.com,partners.databricks.com,pgg11o.hubspot.databricks.com,preferences.databricks.com,sophos.corp.databricks.com,spark-portal.org,spark-summit.com,spark-summit.org,sparkhub.databricks.com,support.databricks.com,unsubscribe.corp.databricks.com,vpn-us.corp.databricks.com,www.databricks.com,www.sparkhub.databricks.com +*.hy-vee.com +*.payoneer.com +app.redislabs.com +www.redis.com +www.redislabs.com +api.redislabs.com +*.costco.com +*.costco.ca +*.costcobusinessdelivery.com +*.costcobusinesscentre.ca +*.veeam.com +*.kasten.io +*.veeamgov.com +www.jetblue.com +book.jetblue.com +checkin.jetblue.com +mobile.jetblue.com +movil.jetblue.com +api.jetblue.com +accounts.jetblue.com +help.jetblue.com +azrest.jetblue.com +magnolia.jetblue.com +experience.jetblue.com +*.jetblue.com +opensea.io +*.inmobi.com +*.glance.com +*.glance.app +*.glance.world +*.glance.inmobi.com +*.shop101.com +*.dash101.com +mydash101.com +*.roposo.com +*.koralapp.com +*.tva.gov +*.tva.com +https://krisp.ai +https://account.krisp.ai +https://api.krisp.ai +https://teams.krisp.ai +https://download.krisp.ai +https://analytics.krisp.ai +https://upld.krisp.ai +*.krisp.ai +https://whatsnew.krisp.ai +https://help.krisp.ai +https://help-jp.krisp.ai/ +https://jobs.krisp.ai +https://resources.krisp.ai/ +admin.wickr.com +www.wickr.com +your-store.vendhq.com +secure.vendhq.com +developers.vendhq.com +www.vendhq.com +www.games2gether.com +*.auvik.com +*.clubhouse.com +*.joinclubhouse.com +*.clubhouseapi.com +*.epam.com +*.infongen.com +*.telescopeai.com +dojorena.io +exchange.gemini.com +api.gemini.com +gemini.com +creditcard.exchange.gemini.com +cryptorewards.gemini.com +mobile.gemini.com +ota.gemini.com +static.gemini.com +status.gemini.com +support.gemini.com +www.gemini.com +blog.gemini.com +docs.gemini.com +https://judge.me/ +https://judge.me/reviews +https://shop.judge.me/ +https://woocommerce-adapter.judge.me/ +https://bigcommerce-adapter.judge.me/ +https://cache.judge.me/ +*.mtb.com +*.wilmingtontrust.com +https://www.evernote.com +accounts.evernote.com +api.evernote.com +accounts.stage.evernote.com +api.stage.evernote.com +*.rocketleague.com +*.psynet.gg +*.unrealtournament.com +*.epicgames.com +*.unrealengine.com +*.fortnite.com +*.epicgames.dev +metahuman.unrealengine.com +twinmotion.unrealengine.com +*.psyonix.com +*.3lateral.com +*.cubicmotion.com +*.oncatapult.com +*.fallguys.com +*.mediatonic.co.uk +*.artstation.com +*.easy.ac +*.sketchfab.com +*.quixel.com +*.superawesome.tv +*.superawesome.com +*.popjam.com +*.rukkaz.com +*.jellychat.com +help.sketchfab.com +forum.sketchfab.com +*.jfrog.com +*.jfrog.org +www.jfrog.com +www.jfrog.com/confluence +www.jfrog.com/jira +conan.io +www.jfrog.co.jp +www.jfrogchina.com +*.tinder.com +*.gotinder.com +*.tinderops.net +*.tstaging.com +*.tstaging.tools +*.tinderwebstaging.com +www.recordedfuture.com +api.recordedfuture.com +app.recordedfuture.com +id.recordedfuture.com +therecord.media +https://federalist-proxy.app.cloud.gov +https://account.fr.cloud.gov +https://ci.fr.cloud.gov +https://dashboard.fr.cloud.gov +https://login.fr.cloud.gov/ +https://logs.fr.cloud.gov +https://www.data.gov +https://federation.data.gov +https://sdg.data.gov +https://labs.data.gov +https://catalog.data.gov +https://inventory.data.gov +https://admin-catalog-bsp.data.gov +https://idp.fr.cloud.gov +https://admin.fr.cloud.gov +https://alertmanager.fr.cloud.gov +https://diagrams.fr.cloud.gov +https://grafana.fr.cloud.gov +https://logs-platform.fr.cloud.gov +https://nessus.fr.cloud.gov +https://opslogin.fr.cloud.gov +https://prometheus.fr.cloud.gov +ssh.fr.cloud.gov +api.fr.cloud.gov +api.data.gov +*.login.gov +dashboard-beta.fr.cloud.gov +tock.18f.gov +*.code.gov +www.fedramp.gov +marketplace.fedramp.gov +*.search.gov +https://dashboard-beta.fr.cloud.gov/ +www.usa.gov +https://federalist.18f.gov +https://cloud.gov +https://federalist-docs.18f.gov +rubygems.org +mmi-test.codefi.network +activate.codefi.network +staking.codefi.network +eu-oat.payments.codefi.network +canary.activate.codefi.network +on-ramp.metaswap-dev.codefi.network +consensys.net +assets-paris-demo.codefi.network +bridge.codefi.network +https://ipfs.infura.io/ +trufflesuite.com +*.lacework.net +www.lacework.com +www.vanmoof.com +backoffice.vanmoof.com +vanmoof.com/my-vanmoof +vanmoof.com/shop +tenjin.vanmoof.com +careers.vanmoof.com +fixer.vanmoof.com +*.nominet.uk +*.nominet.org.uk +*.nic.uk +https://dev-api.zilliqa.com/ +https://testnet-stake.zilliqa.com +https://ide.zilliqa.com/ +https://zilswap.io/bridge +https://dev-wallet.zilliqa.com/ +https://github.com/Zilliqa/nucleus-wallet +*.proctor.io +*.proctorauth.com +getproctorio.com +proctorio.com +cdn.proctorio.com +*.proctorcollect.com +*.proctordata.com +https://www.xvideos.com +https://www.xvideos.red +https://www.xnxx.com +https://gold.xnxx.com +https://www.xvideos.net/app/ +https://www.trafficfactory.com/ +https://main.trafficfactory.biz/ +*.trafficfactory.biz +www.elastic.co +cloud.elastic.co +*.elastic.co +elasticsearch-ci.elastic.co +*.found.io +*.swiftype.com +*.elstc.co +*.elasticnet.co +*.eops.nl +*.elastic-cloud.com +elastic-cloud.com +https://jdoapps.jdisonline.com +*.monzo.com +monzo.me +monzomail.com +monzoemail.com +*.prod-ffs.io +api.stripe.com +*.stripe.com +*.payable.com +*.touchtechpayments.com +*.indiehackers.com +js.stripe.com +api.taxjar.com +app.taxjar.com +*.getbouncer.com +*.recko.io +*.reckoproduction.com +*.reckostaging.com +*.recko.ai +*.link.co +www.stripe.partners +https://iv.usps.com +https://id.usps.com +https://gateway.usps.com +https://reg.usps.com +https://pi.usps.com +https://retail-pi.usps.com +https://store.usps.com +https://internationalclaims.usps.com +https://www.usps.com/postalone/ +https://ncoa.usps.gov +https://moversguide.usps.com +https://holdmail.usps.com/holdmail/ +https://redelivery.usps.com/redelivery/ +https://about.usps.com/what/government-services/election-mail/ +www.usps.com +special.usps.com/testkits +staging.tjmorrispayslips.co.uk +www.aiginsurance.com +www.aigdirect.com +www.myaig.com +*.aig.com +*.myretirementmanager.com +*.travelguard.com +www.layahealthcare.ie +www.aig.com +www.aigrs.com +www.aigprivateclient.com +www.lexingtoninsurance.com +*.blackrock.com +*.ishares.com +www.myetherwallet.com +www.urbancompany.com +www.urbanclap.com +elvis.meredith.com +https://insights.bizrate.com/js/init.js +https://registration.bizraterewards.com/members +https://magazinediscountcenter.com/ +https://www.magazineoutlet.com/ +mediapayportal.com +http://magazine.mileageplus.com +http://privacy.synapsegroupinc.com/ +*cedars-sinai.org +*www.cshs.org +*csmc.edu +*mycslink.org +*cedars-sinai.edu +*www.marinahospital.com +*kerlanjobe.org +*sd.invio.dev +*app.sourcedrive.org +*sourcedrive.org +*Hhapps.net +*Hhec.org +*Hmh-direct.com +*Hmhdr.com +*Hmhdr.net +*Hmhdr.org +*Hmhrx.com +*Hmhrx.net +*Hmhrx.org +*Hmtest.org +*Huntingtonhealth.net +*Huntingtonhealtheconnect.com +*Huntingtonhealtheconnect.net +*Huntingtonhealthnetwork.com +*Huntingtonhealthnetwork.org +*Huntingtonhealthnetwork.net +*Huntingtonrx.com +*Huntingtonrx.net +*SANGABRIELVALLEYHEALTHECONNECT.COM +*SANGABRIELVALLEYHEALTHECONNECT.NET +*sgveconnect.com +*sgveconnect.org +*huntingtonhospital.org +*huntingtonhospital.com +*huntingtonhospital.net +*hhcareers.com +*hhcompliancewebline.com +*hhcompliancewebline.net +*hhphysicians.org +*huntingtonsurgerycenter.com +*ourstory.huntingtonhospital.com/ +*pricing.huntingtonhospital.com/ +*legacy.huntingtonhospital.org +*apps.huntingtonhospital.com/ +*appofchoice.huntingtonhospital.com/ +*.thomsonreuters.com +www.aktia.fi +auth.aktia.fi +ebank.aktia.fi +ftn.aktia.fi +mobile-auth.aktia.fi +mobile-gateway.aktia.fi +www.aktia.com +app.aktia.fi +impakti.fi +varainhoito.aktia.fi +wealth-api.aktia.fi +*.aktia.fi +*.zego.com +*.zegocover.com +https://connect.lumiradx.com/* +https://www.lumiradx.com +https://inrstar-it.caresolutions.lumiradx.com/* +https://inrstar-ie.caresolutions.lumiradx.com/* +https://training.inrstar.co.uk/* +*.lumiradx.com/* +www.drugs.com +newsletters.drugs.com +blog.drugs.com +argocd.upchieve.org +hackers.upchieve.org +www.reddit.com +old.reddit.com +new.reddit.com +api.reddit.com +mod.reddit.com +oauth.reddit.com +ads.reddit.com +gql.reddit.com +accounts.reddit.com +gateway.reddit.com +strapi.reddit.com +m.reddit.com +amp.reddit.com +meta-api.reddit.com +*.snooguts.net +ads-api.reddit.com +reddit.secure.force.com +s.reddit.com +*.redditmedia.com +sh.reddit.com +*.reddit.com +*.redditblog.com +*.reddithelp.com +*.redditinc.com +www.coinspot.com.au +*.blockfi.com +*.on-running.com +*.scopely.io +*.scopely.com +*.withbuddies.com +*.test.mattermost.cloud +*.mattermost.com +*.boe.ohio.gov +*.militaryvotes.ohio.gov +*.ohiobusinesscentral.gov +*.ohiosecretaryofstate.gov +*.ohiosos.gov +*.safeathomeohio.gov +*.sos.state.oh.us +*.vote.ohio.gov +*.voteohio.gov +member-qa.chime.com/users/sign_in +*.1debit.com +*.chimebank.com +*.chimecard.com +*.chime.com +member-qa.chime.com/enroll/#/account +*.chmfin.com +*.chimepayments.com +*.glovoapp.com +*.glovoint.com +*.glovostore.com +*.testglovo.com +*.askglovo.com +*.glovoaccess.com +*.glovocookroom.com +*.glovoxtchallenge.com +app.launchdarkly.com +events.launchdarkly.com +stream.launchdarkly.com +cnztech.com +www.hudapp.com +https://prod-cloud.hookupdating.mobi/ +https://prod-realtime.hookupdating.mobi/ +https://cdn.hookupdating.mobi/ +https://console.huddatingapp.com/ +https://demo.openmage.org/ +*.cirrusinsight.com +*.cirruspath.com +*.zynbitdev.com +*.emaplan.com +*.emoneyadvisor.com +*.runpanther.io +*.runpanther.com +fetlife.com +*.fetlife.com +doppler.team +api.doppler.com +dashboard.doppler.com +share.doppler.com +federalreserveonline.org +atlantafed.org +bostonfed.org +chicagofed.org +clevelandfed.org +dallasfed.org +kansascityfed.org +minneapolisfed.org +newyorkfed.org +philadelphiafed.org +richmondfed.org +frbsf.org +stlouisfed.org +alfred.stlouisfed.org +hack.whocoronavirus.org +*.whocoronavirus.org +www.remitano.com +api.remitano.com +socket.remitano.com +CHALLENGE.GOV +CLOUD.GOV +CODE.GOV +COMPUTERSFORLEARNING.GOV +FEDRAMP.GOV +FMI.GOV +USA.GOV +*.DATA.GOV +*.FAI.GOV +www.FMI.GOV +*.GSAADVANTAGE.GOV +*.IDMANAGEMENT.GOV +*.LOGIN.GOV +*.REGINFO.GOV +*.ROCIS.GOV +*.SECTION508.GOV +*.SFTOOL.GOV +*.USA.GOV +SAM.GOV +ACQUISITION.GOV +BUYACCESSIBLE.GOV +*.CLOUD.GOV +www.sam.gov +portal.fas.gsa.gov +was.itss.gsa.gov +oasispet.gsa.gov +sws.gsa.gov +tams.gsa.gov +tams.preprod.gsa.gov +etsvendorsales.gsa.gov +hallways-staging.cap.gsa.gov +hallways.cap.gsa.gov +interact.gsa.gov +navigator.gsa.gov +p3.cap.gsa.gov +scopereview.gsa.gov +srp.fas.gsa.gov +tmss.gsa.gov +tmss.preprod-acqit.helix.gsa.gov +tscportal.fas.gsa.gov +vasalesportal.gsa.gov +drivethru.gsa.gov +autoauctions.gsa.gov +fms.fas.gsa.gov +arm.fas.gsa.gov +fmvrs.fas.gsa.gov +ffms.fas.gsa.gov +str.gsa.gov +amp.fas.gsa.gov +vehiclestdb.fas.gsa.gov +autovendorb.fas.gsa.gov +autochoiceb.fas.gsa.gov +roadsb.fas.gsa.gov +vehiclestd.fas.gsa.gov +autovendor.fas.gsa.gov +autochoice.fas.gsa.gov +roads.fas.gsa.gov +reportsportal.fas.gsa.gov +vehicledispatch.fas.gsa.gov +cars.fas.gsa.gov +fleet.gsa.gov/aiedecision/ +drivethru.gsa.gov/vfe.htm +spdatawarehouse.fas.gsa.gov +gsaxcess.gov +computersforlearning.gov +smartpaybi.fas.gsa.gov/BOE/BI/ +cops.fas.gsa.gov +cpsearch.fas.gsa.gov +eoffer.gsa.gov +extcws.fas.gsa.gov +gsaadvantage.gov +ebuy.gsa.gov +afadvantage.gov +dhsadvantage.gsa.gov +gsaglobalsupply.gsa.gov +usdaadvantage.gsa.gov +usmcservmart.gsa.gov +vaadvantage.gsa.gov +gsaelibrary.gsa.gov +asap.gsa.gov +poportal.gsa.gov +aacinquiry.fas.gsa.gov +8astars.fas.gsa.gov +gsaadvantage-cors.fas.gsa.gov +vsc.gsa.gov +ebuy-test.fas.gsa.gov +ebuyconnect.fas.gsa.gov +ebuyconnect-test.fas.gsa.gov +gsaadvantage-test.fas.gsa.gov +gsaadvantage-test2.fas.gsa.gov +gsaadvantage-test3.fas.gsa.gov +vscftp.gsa.gov +gsaadvantage.gsa.gov +gsadvantage.gsa.gov +*.cdo.gov +hrlinks.anywhere.gsa.gov +bm-hrlinks.anywhere.gsa.gov +tc-hrlinks.anywhere.gsa.gov +downloads.anywhere.gsa.gov +vdi.anywhere.gsa.gov +vdi-central.anywhere.gsa.gov +vdi-east.anywhere.gsa.gov +vdi-test.anywhere.gsa.gov +anywhere.gsa.gov +co-vpn.gsa.gov +ithelp.gsa.gov +mobile.anywhere.gsa.gov +ncr-vpn.gsa.gov +ncr.anywhere.gsa.gov +r06.anywhere.gsa.gov +r6-vpn.gsa.gov +r7-vpn.gsa.gov +secureauth.dev.gsa.gov +secureauth.gsa.gov +vpntest.gsa.gov +vpn.gsa.gov +vpntest2.gsa.gov +le.dms.gsa.gov +smartpay.gsa.gov +training.smartpay.gsa.gov +gsafinearts.pbs.gsa.gov +mysmartplans.gsa.gov +ncrrecycles.gsa.gov +publiccourts.gsa.gov +r2.gsa.gov +ilmt.pbs.gsa.gov +lmt.pbs.gsa.gov +pappcon1.pbs.gsa.gov +pappcon2.pbs.gsa.gov +tappcon1.pbs.gsa.gov +tappcon2.pbs.gsa.gov +uappcon1.pbs.gsa.gov +uappcon2.pbs.gsa.gov +ulmt.pbs.gsa.gov +api.sftool.gov +app.buyaccessible.gov +arch.idmanagement.gov +demo.sftool.gov +devicepki.idmanagement.gov +digitaldashboard.gov +fpki.idmanagement.gov +pacs.idmanagement.gov +piv.idmanagement.gov +pm.idmanagement.gov +registration.section508.gov +training.section508.gov +uat.digitaldashboard.gov +Alpha2.sam.gov +jss.gsa.gov +api-alpha.sam.gov +dss.gsa.gov +dpa.gsa.gov +soa-ext.fas.gsa.gov +*.ptt.gov +ptt.gov +PCSCOTUS.GOV +*.PCSCOTUS.GOV +SaferFederalWorkforce.gov +FASCC.GSA.GOV) +gis.gsa.gov +indoors.gsa.gov +spdatawarehousebi.gsa.gov +pbrb.gov +fmi.gov +PPMS.GOV +charlie.sam.gov +grex.pbs.gsa.gov +travel.reporting.gov +property.reporting.gov +reporting.gov +fairs.reporting.gov +beta.property.reporting.gov +beta.travel.reporting.gov +leasing.gsa.gov +facadatabase.gov +realpropertyprofile.gov +beta.facadatabase.gov +frpg.gov +ask.gsa.gov +cmls.gsa.gov +disposal.gsa.gov +fedspecs.gsa.gov +ftp.gsa.gov +itjobs.open.gsa.gov +labs.gsa.gov +listserv.gsa.gov +lop.gsa.gov +rc.gsa.gov +usaccess-alp.gsa.gov +vec.gsa.gov +api.acquisition.gov +editor.acquisition.gov +editor.acquisition-uat.gsa.gov +acquisition-uat.gsa.gov +api.acquisition-uat.gsa.gov +training.reginfo.gov +rpa.gov +thenamingcommission.gov +madeinamerica.gov +fleet.fas.gsa.gov +fleet.gsa.gov +fleeteur.fas.gsa.gov +gsac0.fas.gsa.gov +gsacin.fas.gsa.gov +gsafleet2go.fas.gsa.gov +webservices.fas.gsa.gov +edms.gsa.gov +api-staging.ppms.gov +api.ppms.gov +staging.ppms.gov +ppms.gov +federalist-proxy.app.cloud.gov +account.fr.cloud.gov +ci.fr.cloud.gov +dashboard.fr.cloud.gov +login.fr.cloud.gov +logs.fr.cloud.gov +data.gov +federation.data.gov +sdg.data.gov +labs.data.gov +catalog.data.gov +inventory.data.gov +admin-catalog-bsp.data.gov +idp.fr.cloud.gov +admin.fr.cloud.gov +alertmanager.fr.cloud.gov +diagrams.fr.cloud.gov +grafana.fr.cloud.gov +logs-platform.fr.cloud.gov +nessus.fr.cloud.gov +opslogin.fr.cloud.gov +prometheus.fr.cloud.gov +fedramp.gov +usa.gov +analytics.usa.gov +search.usa.gov +federalist.18f.gov +cloud.gov +federalist-docs.18f.gov +fy21payments.gsa.gov +uat-subdomains.digitaldashboard.gov +acquisition-staging.gsa.gov +https://portal.forms.gov +https://submission.forms.gov/ +https://sign.forms.gov +https://api.forms.gov/ +https://portal-dev.forms.gov +https://submission-dev.forms.gov/ +https://sign-dev.forms.gov +https://api-dev.forms.gov/ +https://portal-test.forms.gov +https://submission-test.forms.gov/ +https://sign-test.forms.gov +https://api-test.forms.gov/ +discovery.gsa.gov +benchmarks.gsa.gov +staging.d2d.gsa.gov +d2d.gsa.gov +tableau.d2d.gsa.gov +staging-tableau.d2d.gsa.gov +tss.d2d.gsa.gov +tss-staging.d2d.gsa.gov +staging-odc.d2d.gsa.gov +odc.d2d.gsa.gov +css.d2d.gsa.gov +css-staging.d2d.gsa.gov +aaapextsb.pbs.gsa.gov +aaapintsb.pbs.gsa.gov +advantage.gsa.gov +autochoice.gsa.gov +drivethrub.gsa.gov +ffmsb.fas.gsa.gov +fleetb.gsa.gov +fleeteurb.fas.gsa.gov +fmswseb.fas.gsa.gov +fmvrsb.fas.gsa.gov +roadsviewb.fas.gsa.gov +eoffer-test2.fas.gsa.gov +gsafleet.gov +connect.gsa.gov +fas.connect.gsa.gov +gsa.gov +publicfrppdata.realpropertyprofile.gov +beta.usaccess-alp.gsa.gov +beta.OCRTitleVI.gsa.gov +evaluation.gov +telluride.gsa.gov +ncportal.fas.gsa.gov +ncportalt.fas.gsa.gov +ncportals.fas.gsa.gov +webshop.gsa.gov +aspdotnetstorefront.webshops.fas.gsa.gov +aspdotnetstorefront.webshopt.fas.gsa.gov +vcss.gsa.gov +vcss.ocfo.gsa.gov +calc.gsa.gov +finance.ocfo.gsa.gov/defaultexternal/ +fedpay.gsa.gov +finance.ocfo.gsa.gov +financeweb.gsa.gov +cforeports.gsa.gov +fmitservices-external.gsa.gov/paymentsearch +financeweb.gsa.gov/vendorpayment +finance.ocfo.gsa.gov/webvendors +fmitservices-external.gsa.gov +finance.gsa.gov +regulations.gov +api.regulations.gov +origin-beta-staging.regulations.gov +outage.regulations.gov +resources.regulations.gov +staging.regulations.gov +test-api.regulations.gov +test-widget-examples.regulations.gov +test-widget.regulations.gov +test.regulations.gov +iolp.gsa.gov +slc.gsa.gov +frppmap.gsa.gov +epm.pbs.gsa.gov +cognos.pbs.gsa.gov +ask.fas.gsa.gov +extportal.pbs.gsa.gov/eOA +debits.fas.gsa.gov +eoffer-test.fas.gsa.gov +bitso.com +api.bitso.com +bitso.com/alpha +nvio.mx +nvio.ar +larksuite.com +lark-frontier.byteoversea.com +file.larksuite.com +open.larksuite.com +api.larksuite.com +app.larksuite.com +caldav.larksuite.com +status.larksuite.com +passport.larksuite.com +internal-api.larksuite.com +internal-api-lark-api.larksuite.com +internal-api-drive-stream.larksuite.com +hackers_chosendomain.larksuite.com +www.jimdo.com +cms.jimdo.com +cms.e.jimdo.com +*.jimdofree.com +dash.e.jimdo.com +account.e.jimdo.com +cms-backend.jimdosite.com +subscriptions.jimdosite.com +storage.jimdosite.com +store.jimdosite.com +business-profile-service.jimdosite.com +websitegenerator.jimdosite.com +*.jimdosite.com +ns1.jimdo.com +ns2.jimdo.com +ns11.jimdo.com +ns12.jimdo.com +a.jimdo.com +*.jimdoreseller.com +*.jimdoapi.com +logo.e.jimdo.com +help.jimdo.com +*.jimdo-platform.net +jimdo.design +*.jimdo-data-platform.net +*.jimdo-server.com +*.jimdo-stable-staging.com +*.jimdo-dev-staging.com +*.mendix.com +event.us-east-1.sws.siemens.com +o0pv3l7chl.execute-api.us-east-1.amazonaws.com/dev +gateway.us-east-1.sws.siemens.com +servicemanagement-accp.mendixcloud.com +poh0v3odoi.execute-api.eu-central-1.amazonaws.com +https://react.vis.pre2.usea1.devops.sws.siemens.com/sample/dist/index.html +3dvis.mendixcloud.com +slm.store.mendix.com +contributor.mendixcloud.com +dealservice.mendixcloud.com +dataprivacy.mendixcloud.com +datalake-sync.apps.mendix.com +alm.mendixcloud.com +deskallocation.mendixcloud.com +simplate.mendixcloud.com +mxpeople.mendixcloud.com +employees.mendix.com +3s.mendixcloud.com +revenuedatahub.mendixcloud.com +mxbpconfig.mendixcloud.com +provisioning.servicemanagement.mendix.com +k8s-licbrk-licenseb-11d216e80e-384217420.eu-central-1.elb.amazonaws.com +*.timeseries.com +*.timeseries.nl +*.timeseries.de +*.timeseries.us +*.timeseriesgroup.com +marketplaceadmin.mendixcloud.com +https://i1tv7nddaa.execute-api.eu-central-1.amazonaws.com/prod +*.exodus.io +*.a.exodus.io +*.exodus.com +https://core.yoti.com +https://api.yoti.com +https://ccloud.yoti.com +https://code.yoti.com +https://www.yotisign.com +https://frankd.yoti.com +app.netlify.com +api.netlify.com +*.oppo.com +*.oppo.cn +*.opposhop.cn +*.coloros.com +*.nearme.com.cn +*.oppomobile.com +*.oppofind.com +*.heytap.com +*.heytapmobi.com +*.realme.com +*.realme.net +*.heytapmobile.com +*.realmeservice.com +*.realmemobile.com +*.realmebbs.com +*.myoas.net +*.heytapdownload.com +*.heytapimage.com +*.keke.cn +*.oppopay.com +*.finzfin.com +3.basecamp.com +launchpad.37signals.com +*.hey.com +world.hey.com +citrix.cloud.com +www.cloud.com +ap-s.cloud.com +eu.cloud.com +us.cloud.com +*.citrixworkspacesapi.net +onboarding.cloud.com +onboarding-*.cloud.com +accounts.cloud.com +accounts-internal.cloud.com +*.browser.cloud.com +launch.cloud.com +(yoursubdomain).sf-api.com +(yoursubdomain).sf-api.eu +sf-rp-eu.sharefile.com +(yoursubdomain).sharefile.com +(yoursubdomain).sharefile.eu +sf-rp-us.sharefile.com +secure.sharefile.com +sf-rp.sharefile.com +secure.sharefile.eu +api.sharefile.com +(yoursubdomain).sharefile.com/sf/v3/ +api.sharefile.eu +adm.cloud.com +api.adm.cloud.com +(yoursubdomain).us.iws.cloud.com +(yoursubdomain).ap.iws.cloud.com +(yoursubdomain).eu.iws.cloud.com +(yourIWSsubdomain).cloud.com +*developer.cloud.com +*.tiktok.com +business.tiktok.com +ads.tiktok.com +tiktok.com +careers.tiktok.com +creatormarketplace.tiktok.com +*.tiktokv.com +developers.tiktok.com +circle.logi.com +id.logi.com +accounts.logi.com +*vc.logitech.com +*.streamlabs.com +sync.logitech.com +*.playmaster.gg +partner.logitech.com +*.logitech.com +www.logitech.com +community.logitech.com +*.logitechg.com +www.logitech-partner.com +maintenance.logitech.com +*.jaybirdsport.com +*.ultimateears.com +*.astrogaming.com +*.ultimateearsuniversity.com +*.mysqueezebox.com +*.logitechmusic.com +*.logitechauthorization.com +*.logitech-channel-marketing.com +buy.logitech.com +outage.logitech.com +outagehistory.logitech.com +external.logitech.com +logilife.logitech.com +store.logitech.com.cn +logitech.zendesk.com +*.harmonyremote.com +*.slimdevices.com +support.logi.com +feedback.logitech.com +*.uesmartradio.com +www.logitechstore.com.br +jira.logitech.com +www.logitech.com/my-account +*.myharmony.com +*.streamlabscharity.com +*.melonapp.com +*.oslo.io +*.lucra.live +*.logitech.io +*.wlo.link +*.mevo.com +*.logi.com +logitechgchallenge.com +www.logitechclub.com +*.crossclip.com +alert.logitech.com +*.lukwerks.com +*.cognitiveperformer.com +*.challonge.com +cloud.enjin.io,kovan.cloud.enjin.io,jumpnet.cloud.enjin.io +beam.enjin.io,jumpnet.beam.enjin.io +enjinx.io,enjinx.cn,api.enjinx.io,api.enjinx.cn,*.api.enjinx.io,*.api.enjinx.cn +assets.enjin.io,cdn.enjin.io,cdn.enjin.cn,cdn.enjinx.io,cdn.enjinx.cn +www.figma.com +api.figma.com +cs.money +support.cs.money +wiki.cs.money +3d.cs.money +app.zivver.com +collector.zivver.com +downloads.zivver.com +start.zivvermeet.com +docs.zivver.com +img.zivver.com +app.faraday.io +https://simplepoll.rocks +simplegoals.app +www.aiven.io +console.aiven.io +api.aiven.io +aivencloud.com +help.aiven.io +*.rebelliondefence.com +*.rebelliondefense.com +*.rebellion.dev +*.moochirp.io +*.mooch.rip +www.rebelliondefense.com +app.dropcontact.io +beta-baas.acronis.com +*-api-*.acronis.com +*.acronis.com +account.acronis.com +*.5nine.com +*.devicelock.com +*.acronis.work +https://hackerone.affirm-odin.com +https://dashboard.dev.return.ly +https://TEST-STORE-SUBDOMAIN.dev.return.ly +https://direct-hackerone.affirm-odin.com/ +https://vcn-hackerone.affirm-odin.com/ +console.rockset.com +docs.rockset.com +api.*.rockset.com +rockset.com +https://account.mackeeper.com +https://adblocking.clario.co +https://chat-crm.clario.co +https://chat.clario.co +https://crm.clario.co +https://dcs.clario.co +https://dl.clario.co +https://event.clario.co +https://updater.clario.co +https://updatetracker.clario.co +https://yapi.clario.co +kbill.mackeeper.com +api-ne.mackeeper.com +mkapi.mackeeper.com +*.mackeeper.com +*.finra.org +https://ews.qa.finra.org/* +*.gener8ads.com +*.engelvoelkers.com +authz.engelvoelkers.com/ +api.uphabit.com +web.uphabit.com +*.wellsfargo.com +*.wf.com +*.wellsfargoadvisors.com +*.mworld.com +*.wystar.com +*.advisor-connection.com +*.playstation.net +*.sonyentertainmentnetwork.com +*.api.playstation.com +my.playstation.com +store.playstation.com +social.playstation.com +transact.playstation.com +wallets.api.playstation.com +direct.playstation.com +api.direct.playstation.com +www.trycourier.app +api.trycourier.app +*.ct0.app +api.courier.com +www.courier.com +magisto.com,www.magisto.com +*.magisto.com +staging.magisto.com +applause1.magisto.com +https://www.bitwala.com +https://app.bitwala.com +api.app.bitwala.com +https://www.nuri.com +https://app.nuri.com/ +api.app.nuri.com +*.mi.com +*.xiaomi.com +*.miui.com +*.xiaomiyoupin.com +*.miwifi.com +*.betfair.com +*.paddypower.com +*.betfair.es +*.betfair.it +*.betfair.ro +*.betfair.se +*.paddypower.it +*.skygamingcontent.com +*.skycasino.com +*.sbgcdn.com +*.skybet.com +*.betviewapi.com +*.skypoker.com +*.skyvegas.com +*.skybingo.com +*.sbgcore.com +*.platformservices.io +*.skybetservices.com +*.sbgorigin.com +*.sbgservices.com +*.bonne-terre-data-layer.com +*.skybettingandgaming.com +*.bingoservices.io +*.casinoservices.io +*.msgsvc.io +*.operationstechnology.io +*.securityservices.io +*.skybet.net +*.skybet.co.uk +*.datops.io +*.hestview.com +*.sbgtest.net +*.skybettest.net +*.skybettingandgaming.design +*.skybettingandgaming.info +*.gamingtechnology.io +*.betsharedservices.io +*.plateng.io +www.poddercentral.com +https://www.omnipod.com +https://smile.amazon.* +https://flex.amazon.* +https://logistics.amazon.* +https://org.amazon.* +www.amazon.* +https://primenow.amazon.* +https://pay.amazon.* +https://fresh.amazon.* +https://photos.amazon.* +https://prime.amazon.* +https://music.amazon.com +https://manufacturing.amazon.* +https://freight.amazon.* +https://shopbylook.amazon.* +chat.amazon.com +https://affiliate-program.amazon.com +https://track.amazon.com +https://api.amazon.com +https://manufacturing.amazon.com +https://www.amazon.com/dppui/* +https://www.amazon.com/gp/buy/* +www.amazon.com/cpe/yourpayments/wallet +https://www.amazon.com/amazoncash +apay-us.amazon.com +payments.amazon.* +*.alibaba.com +*.aliexpress.com +*.taobao.com +*.tmall.com +*.aliyun.com +*.alibabacloud.com +*.alibaba-inc.com +*.aliyun-inc.com +www.alibabagroup.com +*.alimama.com +*.Daraz.com +*.aliexpress.ru +*.1688.com +www.bmw.de +www.mini.de +www.bmw-motorrad.de +configure.bmw.de +configure.mini.de +konfigurator.bmw-motorrad.de +api.fortmatic.com +x2.fortmatic.com +auth.magic.link +dashboard.magic.link +api.magic.link +dashboard.fortmatic.com +fortmatic.com +https://hackerone.qulture.rocks/ +staging.every.org +osd.myndr.nl +*.myndr.net +www.myndr.nl +*.myndr.nl +https://cloud.digitalocean.com/ +https://api.digitalocean.com/ +https://marketplace.digitalocean.com/ +https://business.digitalocean.com/ +*.digitalocean.com +*.digitaloceanspaces.com +http://169.254.169.254/ +http://www.glassdoor.com/ +http://api.glassdoor.com +https://help.glassdoor.com/ +login.orionlabs.io +observatory.orionlabs.io +api.orionlabs.io +ota.helium.com +burrow.helium.systems +https://helium-console-dev.herokuapp.com/ +www.picsart.com +*.unibet.com +*.unibet.fr +*.storspiller.com +*.bingo.com +*.mariacasino.com +*.kolikkopelit.com +*.casinohuone.com +*.igame.com +*.vladcazino.ro +unibet.me +maria.casino +*.ottokasino.com +*.kindredext.net +https://www.32red.com +relaxcdn.unibet.com +(*).theendlessweb.com +(*).itsendless.org +(*).endlessgroup.org +*.koho.ca +*.koho.app +api.production.tkn.zone +kyc-events.production.tkn.zone +card-onboarding.production.tkn.zone +homes-and-villas.marriott.com +airandcar.marriott.com +activities.marriott.com +towneplacesuites.marriott.com +springhillsuites.marriott.com +careers.marriott.com +sso.marriott.com +mgs.marriott.com +jobs.marriott.com +passwordchallenge.marriott.com +gateway*.marriott.com +dcfgateway*.marriott.com +marriottfranchisetransactions.marriott.com +lawmanager.marriott.com +www.travelagents.marriott.com +marriott.co.* +all-inclusive.marriott.com +reservations.all-inclusive.marriott.com/ +marrtool.com +cpp.marriott.com +www.marriott.com +www.ritzcarlton.com +eleganthotels.com +apps.ritzcarlton.com +hotel-deals.marriott.com +www.goodrx.com +api.heydoctor.com +*.roblox.com +*.rbx.com +*.ra.roblox.com +mg3.investnext.com +app.investnext.com +altogroup.investnextdemo.co +app.investnextdemo.co +support.nutanix.com +ticket.nutanix.com +my.nutanix.com +jira.nutanix.com +nutanix.com +install.nutanix.com +bootcamp.nutanix.com +productsizer.nutanix.com +gp.nutanix.com +stage-billing.nutanix.com +idp.nutanix.com +cpq.nutanix.com +iot.nutanix.com +frame.nutanix.com +beam.nutanix.com +*.nutanix.com +www.nutanix.dev +testdrive.nutanix.com +www.topcoder.com +api.topcoder.com +arena.topcoder.com +blockchain.topcoder.com +bugzilla.topcoder.com +cmap.topcoder.com +cognitive.topcoder.com +community.topcoder.com +community-app.topcoder.com +connect.topcoder.com +crowdsourcing.topcoder.com +dashboards.topcoder.com +demo.topcoder.com +dev1.topcoder.com +dna.topcoder.com +enterprise.topcoder.com +facedetection.topcoder.com +faceid.topcoder.com +feeds.topcoder.com +forums.topcoder.com +hfgeoloc.topcoder.com +idolondemand.topcoder.com +innovation.topcoder.com +ios.topcoder.com +lauscher.topcoder.com +leaderboards.topcoder.com +members.topcoder.com +morgoth.topcoder.com +namedentity.topcoder.com +pam-wind-dash.topcoder.com +pins-dash.topcoder.com +quantum.topcoder.com +radiological.topcoder.com +ragnar.topcoder.com +scavengerhunt.topcoder.com +software.topcoder.com +solutions.topcoder.com +spacenet.topcoder.com +spacenet2.topcoder.com +status.topcoder.com +studio.topcoder.com +submission-review.topcoder.com +submission-review-api.topcoder.com +success.topcoder.com +tco12.topcoder.com +tco15.topcoder.com +tco16.topcoder.com +tco17.topcoder.com +tco18.topcoder.com +tco19.topcoder.com +textsummarization.topcoder.com +veterans.topcoder.com +vpn.topcoder.com +webhooks.topcoder.com +wordpress.topcoder.com +wordpress-move.topcoder.com +x.topcoder.com +zurich.topcoder.com +accounts.topcoder.com +app.topcoder.com +apps.topcoder.com +challenges.topcoder.com +accounts-auth0.topcoder.com +vanilla.topcoder-dev.com +*.infra.lifeomic.com +*.dev.lifeomic.com +https://apps.wellness.dev.lifeomic.com +https://lifeology.dev.lifeomic.com +apps.dev.lifeomic.com/phc +apps.dev.lifeomic.com/precision-ocr +connect-console.dev.lifeomic.com +apps.dev.skillspring.com +marketplace.dev.lifeomic.com +ga4gh.dev.lifeomic.com +api.dev.lifeomic.com +api.dev.lifeomic.com/graphql +fhir.dev.lifeomic.com +https://prow.k8s.io +https://kubernetes.io +k8s.io +kubernetes-csi.github.io +https://ort-admin.pingone.com/* +https://console-staging.pingone.com/* +https://api-staging.pingone.com/* +https://apps-staging.pingone.com/* +https://ort-authenticator.pingone.com/* +https://ort-desktop.pingone.com/* +*.ucverse.com +*.8x8.com +*.packet8.net +*.easycontactnow.com +*.dxi.eu +accountmanager.8x8.com +*.contactnow.8x8.com +sso.8x8.com +*.jit.si +vcc-*.8x8.com +*.8x8.vc +*.wavecell.com +*.callstats.io +*.8x8e2e.com +*.8x8pilot.com +*.jitsi.net +*.p8t.us +*.8x8.id +*.8x8.uk +*.8x8.co.uk +*.fuze.com +*.fuze.site +*.thinkingphones.com +*.thinkingphones.net +*.adgjmp.net +www.8x8.com +*.sameroom.io +*.mycontactual.com +*.jitsi.org +support.8x8.com +get8x8.com +app.liveplan.com +www.paloalto.com +www.liveplan.com +www.bplans.com +www.mplans.com +mtn.com +Mtn.co.za +Mtn.com.af +Mtn.bj +Mtn.cm +Mtncameroon.net +Mtncongo.net +Mtn.ci +Mtn.com.gh +Areeba.com.gn +Irancell.ir +Lonestarcell.com +Mtnonline.com +Mtn.co.rw +Mtn.sd +Mtn.co.sz +Mtn.co.ug +Mtn.com.ye +Mtnzambia.co.zm +Mtnbusiness.com +Mtnbusiness.com.ng +Mtnblog.co.za +Mtnplay.co.za +Mtnzakhele.co.za +mtnselfcare.co.zm +mtnplay.co.zm +mtngbissau.com +www.mtn.zm +https://www.datastax.com/ +https://downloads.datastax.com +https://docs.datastax.com/ +https://astra.datastax.com +api.znly.co +rpc.znly.co +web.zen.ly +*.nordvpn.com +*.pubg.com +*.pubgesports.com +www.streak.com +api.streak.com +mailfoogae.appspot.com +streaklinks.com +*.line.me +*.line-apps.com +*.line.naver.jp +*.line.biz +app.replyify.com +api.replyify.com +replyify.com +track.replyify.com +blog.replyify.com +my.stripo.email +stripo.email +https://svn.filezilla-project.org/svn/FileZilla3/trunk/src/putty +www.natur.com +api.gmelius.com +gmelius.io +app.lemlist.com +*.key.com +*.keybank.com +*.bolstr.com +*.hellowallet.com +*.laurelroad.com +*.cainbrothers.com +app.overloop.com +*.worklytics.co +*.allegro.pl.allegrosandbox.pl +www.topechelon.com +bigbiller.topechelon.com +bb3api.topechelon.com +https://coda.io/* +https://coda.io/signup/email +codahosted.io +codacontent.io +https://airflow-prod.coda.io/* +https://data.coda.io/* +https://head.coda.io/* +https://infra.coda.io/* +https://airflow-prod.ops.coda.io/* +https://shiny.ops.coda.io/* +https://staging.coda.io/* +https://user-profile-prod.coda.io/* +https://*.coda.io/* +https://user-profile-test.coda.io/* +https://ao-docs.appspot.com/api/explorer +booth.pm +sketch.pixiv.net +sensei.pixiv.net +accounts.pixiv.net +www.pixiv.net +hub.vroid.com +*.fanbox.cc +vroid.com +payment.pixiv.net +neoket.net +www.amitree.com +www.forescout.com +datapod-2-ingest.Acceptance.ForescoutCloud.net +datapod-2-query.Acceptance.ForescoutCloud.net +datapod-1-ingest.Production.ForescoutCloud.net +datapod-1-query.Production.ForescoutCloud.net +mgmtpod-1-dashboard.Production.ForescoutCloud.net +mgmtpod-1.Production.ForescoutCloud.net +logstash-props.devicecloud.acceptance.forescoutcloud.net +datapod-1-100-druid-ingest.development.forescoutcloud.net +datapod-1-100-druid-query.development.forescoutcloud.net +datapod-1-100-druid-ingest.Testing.ForescoutCloud.net +a360f0bcc63ca11ea92550aeac091f3d-1101372245.us-east-1.elb.amazonaws.com +datapod-1-druid-ingest.production.forescoutcloud.net +datapod-1-100-druid-query.production.forescoutcloud.net +datapod-2-druid-ingest.production.forescoutcloud.net +https://telemetry-polling.devicecloud.acceptance.forescoutcloud.net/v1/upload +https://telemetry-polling.devicecloud.acceptance.forescoutcloud.net/v1/polling +https://telemetry-polling.devicecloud.acceptance.forescoutcloud.net/v1/package +logstash-props.devicecloud.production.forescoutcloud.net/api/v1/properties +backend-api.devicecloud.production.forescoutcloud.net/api/v1/settings +datapod-1-druid-ingest.production.forescoutcloud.net/v1/upload +mgmtpod-1.production.forescoutcloud.net/oauth/token +datapod-1-druid-query.production.forescoutcloud.net/v2/query/groupToGroup +datapod-1-druid-query.production.forescoutcloud.net/v2/query/firstReportTimeEntry +datapod-1-druid-query.production.forescoutcloud.net/v2/query/ipList +datapod-1-druid-query.production.forescoutcloud.net/v3/matrixOverview +datapod-1-druid-query.production.forescoutcloud.net/v3/query/overlappingZones +datapod-1-druid-query.production.forescoutcloud.net/v1/query/agg +datapod-1-druid-query.production.forescoutcloud.net/v1/polling +datapod-1-druid-query.production.forescoutcloud.net/v2/query/overlappingGroups +datapod-1-druid-query.production.forescoutcloud.net/v2/matrixOverview +datapod-1-druid-query.production.forescoutcloud.net/v3/query/zoneToZone +datapod-1-druid-query.production.forescoutcloud.net/v2/deleteStatus +datapod-1-druid-query.production.forescoutcloud.net/v2/query/ips/bySrc +datapod-1-druid-query.production.forescoutcloud.net/v2/service-list +datapod-1-druid-query.production.forescoutcloud.net/v2/query/ips/byDst/details +datapod-1-druid-query.production.forescoutcloud.net/v2/services +agatha.eyesightx.testing.forescoutcloud.net +app.eyesightx.testing.forescoutcloud.net +risk-api.eyesightx.testing.forescoutcloud.net +mgmt-sensors.eyesightx.testing.forescoutcloud.net +obs-sensors.eyesightx.testing.forescoutcloud.net +pulsar.eyesightx.testing.forescoutcloud.net +iris-testing-us-east-1-nlb-4df4bbde6f6e2bbb.elb.us-east-1.amazonaws.com +updates.forescout.com +streaming.iris.acceptance.forescoutcloud.net +app.iris.acceptance.forescoutcloud.net +mgmt-sensors.iris.acceptance.forescoutcloud.net +obs-sensors.iris.acceptance.forescoutcloud.net +streaming-api.iris.acceptance.forescoutcloud.net +aebddc74953f248bc8455665b0f7d47b-78af959a11e5d0c1.elb.us-east-1.amazonaws.com +streaming.iris.production.forescoutcloud.net +app.iris.production.forescoutcloud.net +mgmt-sensors.iris.production.forescoutcloud.net +obs-sensors.iris.production.forescoutcloud.net +streaming-api.iris.production.forescoutcloud.net +ab2b0c50cdc7b445391f99d4957850c5-cd4ccfdb37dfafad.elb.us-east-1.amazonaws.com +streaming-gw.iris.production.forescoutcloud.net +community.forescout.com +silentdefense-training.forescout.com +*equifax.com +*equifax.com.ar +*equifax.com.mx +*equifax.com.pr +*equifax.com.tw +*equifax.ca +*equifax.com.au +*equifax.cl +*equifax.co.cr +*equifax.ec +*equifax.sv +*equifax.hn +*equifax.co.in +*equifax.co.nz +*equifax.com.py +*equifax.pe +*equifax.pt +*equifax.ru +*equifax.es +*equifax.co.uk +www.equifax.com +*.kartpay.com +https://chain.link/ +*.smartcontract.com +www.priceline.com +secure.rezserver.com +reservations.rezserver.com +cruises.priceline.com +api.rezserver.com +admin.rezserver.com +www.bookingholdings.com +*.livestream.com +www.livestream.com +*.new.livestream.com +donations.livestream.com +*.cryptography.io +*.pyopenssl.org +*.capitalone.com +*.paribus.co +*.capitalone360.com +*.wikibuy.com +*.capitalone.ca +*.capitalone.co.uk +*.capitalonebank.com +*.bluetarp.com +*.unitedincome.com +*.usejewel.com +*.luma.co.uk +*.capitalonecareers.co.uk +*.capitalonecards.com +*.theunioncard.com +*.teamstercardnow.com +*.capitaloneshopping.com +app.smartsheet.com +api.smartsheet.com/2.0 +admin.smartsheet.com +help.smartsheet.com +developers.smartsheet.com +*api.trustpilot.com +*authenticate.trustpilot.com +*consumer-auth.trustpilot.com +*invitations-api.trustpilot.com +*b2b.trustpilot.com +*www.trustpilot.com +*locale.trustpilot.com +*widget.trustpilot.com +*jobs.trustpilot.com +*blog.trustpilot.com +*signup.business.trustpilot.com +*emailsignature.trustpilot.com +*share.trustpilot.com +*business.trustpilot.com +*legal.trustpilot.com +*ipo.trustpilot.com +api.lob.com +www.lob.com +dashboard.lob.com +address-autocomplete.lob.com +arcade.lob.com +dora.lob.com +lob.com +partners.lob.com +pizza-planet.lob.com +redshift.lob.com +sftp.lob.com +signal.lob.com +vpn.lob.com +woody.lob.com +usps-sftp.lob.com +lob-assets.com +blog.lob.com +docs.lob.com +mock.lob.com +*.tube8.com +app.starlingbank.com +oauth.starlingbank.com +www.starlingbank.com +https://*.creditkarma.com +https://accounts.creditkarma.com +https://www.creditkarma.ca +https://api.creditkarma.com +https://help.creditkarma.com +https://blog.creditkarma.com/ +https://www.creditkarma.com/savings +https://support.creditkarma.ca/ +vault.omise.co +api.omise.co +dashboard.omise.co +link.omise.co +offsite.omise.co +dashboard2.omise.co +www.omise.co +linksplus-dashboard.omise.co +*.ford.com +*.lincoln.com +*.quicklane.com +*.motorcraft.com +*.omnicraftautoparts.com +hyatt.com +www.hyatt.com +world.hyatt.com +assets.hyatt.com +newsroom.images.hyatt.com +salesportal.hyatt.com +meetings.hyatt.com +ebsext.oft.hyatt.com +mobileapp.hyatt.com +plannerrequest.hyatt.com +public.hyatt.com +roominglist.hyatt.com +soaext.oft.hyatt.com +sso.oft.hyatt.com +upsell.hyatt.com +www.hyattconnect.com +jira.hyattdev.com +confluence.hyattdev.com +scapegoat.hyatt.com +www.cfptime.org +*.grammarly.io +*.grammarlyaws.com +*.grammarly.com +grammarly.ai +*.ratelimited.me +ratelimited.me +api.ratelimited.me +fdbox.net +*.fanduel.com +sportsbook.fanduel.com +fanduel.design +*.smule.com +*.flickr.com +www.casper.com +bedpost.casper.com +operator.casper.tools +casper.com/admin +https://matomo.cloud/ +www.paypal-*.com +*.xoom.com +*.paypal.com +*.braintreegateway.com +*.paydiant.com +*.venmo.com +paypalobjects.com +paypal.me +py.pl +*.braintreepayments.com +*.braintree-api.com +*.braintree.tools +prequal.swiftfinancial.com +partner.swiftfinancial.com +decision.swiftfinancial.com +pigeon.swiftfinancial.com +scrutiny.swiftfinancial.com +www.swiftcapital.com +www.loanbuilder.com +www.swiftfinancial.com +api.swiftfinancial.com +my.swiftfinancial.com +api.loanbuilder.com +my.loanbuilder.com +loanbuilder.com +swiftfinancial.com +swiftcapital.com +*.paypalcorp.com +*.hyperwallet.com +*.paylution.com +jenkins.eslint.org +https://chaturbate.com +*.highwebmedia.com +m.chaturbate.com +blog.chaturbate.com +*.securegatewayaccess.com +https://billingsupport.chaturbate.com +https://secure.chaturbate.com +*.mmcdn.com +testnet.bitmex.com +*.bitmex.com +*.duckduckgo.com +mariadb.org +staging.airtable.com +*.staging-airtableblocks.com +*.staging.airtable.com +api-staging.airtable.com +app.shipt.com +api.shipt.com +admin.shipt.com +shop.shipt.com +staging-api.shipt.com +staging-shop.shipt.com +staging-app.shipt.com +staging-admin.shipt.com +staging-shoppingcart.shipt.com +shoppingcart.shipt.com +www.shipt.com +*.shipt.com +www.redtube.com +www.redtubepremium.com +*.arkadiyt.com +*.liberapay.com +*.liberapay.org +*.goldmansachs.com +*.gs.com +*.goldman.com +*.marcus.com +*.honestdollar.com +*.marcus.co.uk +research.gs.com +*.gsam.com +*.gsselect.com +*.gs-mosaic.qa.gs.com +*.gs-mosaic.gs.com +*.qaglobal-liquidity.gs.com +*.global-liquidity.gs.com +developer.gs.com +goldmansachsindices.com +marquee.gs.com +*.ayco.com +www.rocaton.com +*.gspublishing.com +*.gs.de +*.unitedcp.com +*.goldmanpfm.com +*.finlife.com +*.finlifepartners.com +*.claritymoney.com +www.dota2.com +support.steampowered.com +partner.steampowered.com +store.steampowered.com +www.valvesoftware.com +api.steampowered.com +partner.steamgames.com +steamcommunity.com +www.teamfortress.com +www.counter-strike.net +playartifact.com +help.steampowered.com +developer.valvesoftware.com +storefront.steampowered.com +wiki.teamfortress.com +www.crypto.com +https://crypto.com/exchange +app.mona.co +https://auth.crypto.com/ +https://merchant.crypto.com +pay.crypto.com +js.crypto.com +https://crypto.com/defi/ +crypto.org +https://testnet-croeseid-4.crypto.org +tax.crypto.com +https://crypto.com/nft +*.newrelic.com +infrastructure.newrelic.com +*.infrastructure.newrelic.com +*.infrastructure-data.newrelic.com +synthetics.newrelic.com +alerts.newrelic.com +docs.newrelic.com +support.newrelic.com +discuss.newrelic.com +blog.newrelic.com +learn.newrelic.com +*.blog.newrelic.com +insights.newrelic.com +insights.eu.newrelic.com +infrastructure.eu.newrelic.com +synthetics.eu.newrelic.com +rpm.newrelic.com/accounts/*/mobile +rpm.eu.newrelic.com/accounts/*/mobile +alerts.eu.newrelic.com +*.eu.newrelic.com +login.newrelic.com +rpm.newrelic.com/accounts/*/browser +rpm.eu.newrelic.com/accounts/*/browser +developer.newrelic.com +rpm.newrelic.com +one.newrelic.com +*.nr-data.net +*.nr-ops.net +https://bounty-node.rsk.co +*.deliveroo-data.net +*.deliveroo-data.io +*.deliveroo-data-test.io +*.deliveroo.* +*.deliveroo-streams.net +www.jamieweb.net +ipv6.jamieweb.net +ipv4.jamieweb.net +jamiewebgbelqfno.onion +jamie3vkiwibfiwucd6vxijskbhpjdyajmzeor4mc4i7yopvpo4p7cyd.onion +jamieweb.net +ldn01.jamieweb.net +nyc01.jamieweb.net +acme-validation.jamieweb.net +vhx.tv +embed.vhx.tv +api.vhx.tv +*.vhx.tv +app.upserve.com +hq.breadcrumb.com +cards.swipely.com +api.breadcrumb.com +mossy.breadcrumb.com +payments.breadcrumb.com +reports.breadcrumb.com +pos.swipely.com +payments.upserve.com +orders.upserve.com +d2evh2mef3r450.cloudfront.net +swipely-merchant-assets.s3.amazonaws.com +inventory.upserve.com +hq-api.upserve.com +hq.upserve.com +https://645892349820.vulnerbug.com +teamhelp.upserve.com +*.upserve.com +production.plaid.com +dashboard.plaid.com +cdn.plaid.com +my.plaid.com +secure.quovo.com +app.quovo.com +secure.plaid.com +demo.plaid.com +plaid.com +*.vanillaforums.com +*.vanillacommunities.com +*.vanillastaging.com +*.vanilladevelopment.com +*.vanillacommunity.com +platform.thecoalition.com +api.thecoalition.com +coalitioninc.com +*.crowdstrike.com +www.crowdstrike.org +falcon-sandbox.com +hybrid-analysis.com +crowdstrike.de +crowdstrike.com.au +crowdstrike.co.uk +crowdstrike.fr +crowdstrike.jp +*.humio.com +crowdstrike.com.br +*.securecircle.com +https://www.showmax.com +https://secure.showmax.com +https://api.showmax.com +vpn.*.platfoo.com +bastion.*.platfoo.com +https://stories.showmax.com +https://securitytxt.org/ +https://edoverflow.com/ +https://bugbountyguide.com/ +www.lahitapiola.fi +www.tapiola.fi +verkkopalvelu.tapiola.fi +yrityspalvelu.tapiola.fi +secure.lahitapiola.fi +myynti.lahitapiolarahoitus.fi +ext-gw.lahitapiola.fi +lisasijoitus.lahitapiola.fi +verovelvollisuustiedot.lahitapiola.fi +sijoitusvakuutus.lahitapiola.fi +asiointi.lahitapiola.fi +api.lahitapiola.fi +privatetarget-2-secure.zigzag +*.lahitapiolarahoitus.fi +*.lahitapiola.fi +*.tapiola.fi +privatetarget-1-www.zigzag +*.semrush.com +*.semrush.net +*.sellzone.com +*.berush.com +secure.semrushchina.cn +*.semrushchina.cn +*.seoquake.com +*.hr-semrush.com +*.sellerly.com +*.seoab.io +*.scatec.io +*.prowly.com +events.semrush.com +workflows.semrush.com +investors.semrush.com +engage.semrush.com +infogram.com +bitwarden.com +api.bitwarden.com +identity.bitwarden.com +vault.bitwarden.com +help.bitwarden.com +unikrn.com +auctionbot.unikrn.com +news.unikrn.com +crm.unikrn.com +jet-api.unikrn.com +connekt-api.unikrn.com +auth.unikrn.com +api-w.unikrnb2b.com +api.unikrn.com +affiliates.unikrn.com +moviecontentfilter.com +www.moviecontentfilter.com +briefe.io +www.briefe.io +delight.im +www.delight.im +*.myteksi.com +*.myteksi.net +*.grab.com +p.grabtaxi.com +gamma.grab.co +drive.grab.co +manage.grab.co +jira.grab.com +wiki.grab.com +api.grabpay.com +*.grabpay.com +xtramile.grabpay.com +*.grabtaxi.com +*.grab.co +grab.careers +mos.grabpay.com +https://parrotlinux.org +www.bumble.com +bma.bumble.com +badoo.com +eu1.badoo.com +us1.badoo.com +corp.badoo.com +m.badoo.com +meu1.badoo.com +mus1.badoo.com +hotornot.com +bma.badoo.com +badoocdn.com +translate.badoo.com +ccardseu1.badoo.com +ccardsus1.badoo.com +chatdate.app +assets.spotify.com +*.spotify.com +api.spotify.com +*.spotify.net +*.spotifyforbrands.com +backstage.io +api.prod.cuv-prod.app +wg.g.cuv-prod.app +underwriter.partner.cuvva.com +*.cuv-prod.app +ops.cuvva.com +www.cuvva.com +ws1.dashlane.com +www.dashlane.com +console.dashlane.com +app.dashlane.com +logs.dashlane.com +api.dashlane.com +hosted.weblate.org +*.wordpress.org +api.wordpress.org +*.buddypress.org,bbpress.org,profiles.wordpress.org +*.wordcamp.org +planet.wordpress.org +doaction.org +codex.wordpress.org,codex.bbpress.org,codex.buddypress.org +mercantile.wordpress.org +lists.wordpress.org +wordpressfoundation.org +irclogs.wordpress.org +*.wordpress.net +munin-*.wordpress.org +gutenberg.run +socialclub.rockstargames.com +prod.ros.rockstargames.com +support.rockstargames.com +*.rockstargames.com +lifeinvader.com +rockstarnorth.com +*.lyst.com +cdna.lystit.com +mobileapi.lystit.com +*.lystit.com +*.lyst.co +www.youporn.com +www.youpornpremium.com +appsecfa.tfaforms.net +app.formassembly.com +typeahead.formassembly.com +www.formassembly.com +try.discourse.org +*.quora.com +*.robinhood.com +*.robinhood.net +*.rhinternal.net +portswigger.net +forum.portswigger.net +https://enterprise-demo.portswigger.net/ +www.starbucksreserve.com +gift.starbucks.co.jp +login.starbucks.co.jp +www.starbucks.co.jp +www.starbucks.com.cn +www.starbucks.de +www.starbucks.fr +www.starbucks.co.uk +www.starbucks.com.br +www.starbucks.ca +www.starbucks.com +app.starbucks.com +www.starbucks.co.kr +card.starbucks.com.sg +www.starbucks.com.sg +cart.starbucks.co.jp +openapi.starbucks.com +secureui.starbucks.com +*.blockchain.com +www.blockchain.info +api.blockchain.info +ws.blockchain.info +brave.com +basicattentiontoken.org +creators.basicattentiontoken.org +search.brave.com +talk.brave.com +account.brave.com +www.yelp.com +m.yelp.com +biz.yelp.com +www.yelpreservations.com +auto-api.yelp.com +mobile-api.yelp.com +api.yelp.com +biz-app.yelp.com +www.yelp-support.com +blog.yelp.com +restaurants.yelp.com +yelp.nowait.com +www.yelpwifi.com +app.yelpwifi.com +sandbox.open-xchange.com +harvestapp.com +forecastapp.com +id.getharvest.com +getharvest.com +https://updates.nextcloud.com +https://customerupdates.nextcloud.com +https://download.nextcloud.com +https://help.nextcloud.com +https://usercontent.apps.nextcloud.com +https://projects.nextcloud.com +https://lookup.nextcloud.com +https://knowledge.nextcloud.com +https://surveyserver.nextcloud.com +https://static.apps.nextcloud.com +https://apps.nextcloud.com/ +https://docs.nextcloud.com +https://crm.nextcloud.com +https://support.nextcloud.com +https://scan.nextcloud.com/ +https://lists.nextcloud.com +https://portal.nextcloud.com +https://push-notifications.nextcloud.com +https://auth.nextcloud.com +https://logs.nextcloud.com +https://stats.nextcloud.com +https://nextcloud.com +https://pushfeed.nextcloud.com +https://newsletter.nextcloud.com +*.secnews.gr +www.pornhub.com +mobile.pornhub.com +api.pornhub.com +ht.pornhub.com +www.pornhubpremium.com +www.pornmd.com +www.modelhub.com +www.thumbzilla.com +bitaccess.com +https://moneybird.com +https://moneybirdstorage.com +GitHub.com +api.github.com +gist.github.com +classroom.github.com +*.githubapp.com +*.github.net +education.github.com +lab.github.com +jobs.github.com +semmle.net +semmle.com +*.githubusercontent.com +npmjs.com +npmjs.org +www.mapbox.com +https://docs.mapbox.com/api/ +api.mapbox.com +customers.gitlab.com +registry.gitlab.com +gitlab.com +*.zomato.com +winecellar.zomato.com +*.zdev.net +*.zomans.com +*.hyperpure.com +*.runnr.in +www.algolia.com +*.algolia.net +*.algolianet.com +cashier.binary.com +crypto-cashier.binary.com +secure-dfadmin.binary.com +*.binaryws.com +*.deriv.com +app.deriv.com +smarttrader.deriv.com +cashier.deriv.com +*.deriv.cloud +webtrader.binary.com +binary.bot +tradingview.binary.com +charts.binary.com +*.binary.com +try.globaleaks.org +www.codeigniter.com +*.maximum.nl +werkenbijdefensie.nl +werkenbijderet.nl +www.werkenbijbakertilly.nl +mijnkombijdepolitie.nl +doorstromen.mijnkombijdepolitie.nl +acme-challenge.nl +no-reply.cloud +wp-mail.nl +maximum-status.com +preprod.nl +qatest.nl +rudderplatform.com +humanchemistry.evonik.com +www2.werkenbijdefensie.nl +nossl.nl +ruddercms.com +ruddercms.nl +dropr.nl +devmaximum.com +www.coursera.org +www.zendesk.com +developer.zendesk.com +h1-your-domain.zendesk.com +apps.zendesk.com +app.smooch.io +api.smooch.io +smooch.io +zopim.com +www.udemy.com +yourcompany.udemy.com +your-store.myshopify.com +partners.shopify.com +accounts.shopify.com +shop.app +shopify.plus +arrive-server.shopifycloud.com +*.shopify.com +exchangemarketplace.com +*.shopifykloud.com +*.shopifycloud.com +linkpop.com +shopifyinbox.com +accounts.snapchat.com +app.snapchat.com +*.sc-core.net +business.snapchat.com +store.snapchat.com +kit.snapchat.com +snappublisher.snapchat.com +geofilters.snapchat.com +ads.snapchat.com +create.snapchat.com +my.snapchat.com +businesshelp.snapchat.com +www.bitmoji.com +www.bitstrips.com +scan.snapchat.com +spectacles.com +map.snapchat.com +story.snapchat.com +*.ubnt.com +community.ui.com +*.ui.com +account.ui.com +fw-update.ubnt.com +rma.ui.com +design.ui.com +uisp.com +unifi.ui.com +careers.ui.com +ispdesign.ui.com +store.ui.com +ir.ui.com +help.ui.com +blog.ui.com +training.ui.com +dev-training.ui.com +marketplace.magento.com +magentocommerce.com +repo.magento.com +magento.com +u.magento.com +imagine.magento.com +magentolive.com +account.magento.com +accounts.magento.cloud +*.acrobat.com +*.adobe.io +*.adobeaemcloud.com +*.adobecqms.net +*.bizible.com +*.marketo.com +*.mixamo.com +*.omniture.com +*.phonegap.com +*.tubemogul.com +*.typekit.com +account.adobe.com +accounts.adobe.com +acrobat.adobe.com +acrobatoauth.adobe.com +adminconsole.adobe.com +adobeid.services.adobe.com +adobelogin.com +adobestock.com +assets.adobe.com +auth.services.adobe.com +behance.net +campaign.adobe.com +captivateprime.adobe.com +cbconnection.adobe.com +cloud.acrobat.com +coldfusion.adobe.com +commerce.adobe.com +community.adobe.com +create.adobe.com +creative.adobe.com +creativecloud.adobe.com +documentcloud.adobe.com +documents.adobe.com +edex.adobe.com +exchange.adobe.com +experience.adobe.com +experiencecloud.adobe.com +fonts.adobe.com +gps.echosign.com +helpx.adobe.com +licenses.adobe.com +licensing.adobe.com +lightroom.adobe.com +marketing-assets.adobe.com +marketing.adobe.com +mobilemarketing.adobe.com +partners.adobe.com +photoshop.com +platform.adobe.com +portfolio.adobe.com +secure.echosign.com +shop.adobe.com +spark.adobe.com +status.adobe.com +stock.adobe.com +substance3d.com +theblog.adobe.com +xd.adobe.com +*.adobe.com +*.scene7.com +*.tt.omtrdc.net +*.adobeconnect.com +*.testdrive.workfront.com +*.proofhq.com +accounts.frame.io +app.frame.io +api.frame.io +api-v2.frame.io +components.frame.io +stream.frame.io +updates.frame.io +workflow.frame.io +developer.frame.io +applications.frame.io +socket.frame.io +www.airbnb.com +next.airbnb.com +api.airbnb.com +support-api.airbnb.com +assets.airbnb.com +m.airbnb.com +omgpro.airbnb.com +one.airbnb.com +open.airbnb.com +callbacks.airbnb.com +*.airbnb.com +*.airbnbcitizen.com +*.atairbnb.com +*.withairbnb.com +*.byairbnb.com +*.muscache.com +*.airbnb-aws.com +*.luxuryretreats.com +luckeyhomes.com +luckey.fr +luckey.app +luckey.in +demo.urbandoor.com +provider.demo.urbandoor.com +admin.demo.urbandoor.com +*.hoteltonight-test.com +luckey.partners +www.dropbox.com +paper.dropbox.com +showcase.dropbox.com +app.hellosign.com +api.hellosign.com +api.helloworks.com +portal.helloworks.com +app.hellofax.com +api.hellofax.com +dropbox.com/passwords +dropboxforum.com +www.vimeo.com +player.vimeo.com +api.vimeo.com +*.cloud.vimeo.com +vimeopro.com +vimeo.com/ondemand +vimeo.com/api +*.vimeo.com +checkout.vimeo.com +vimeo.com/create +vimeo.magisto.com +*.informatica.com +*.informaticacloud.com +app.greenhouse.io +boards.greenhouse.io +api.greenhouse.io +onboarding.greenhouse.io +support.greenhouse.io +jss.greenhouse.io +www.greenhouse.io +*.twitter.com +*.vine.co +*.periscope.tv +*.pscp.tv +*.twimg.com +gnip.com +niche.co +snappytv.com +twitterflightschool.com +*.urbandictionary.com +*.urbandictionary.net +*.urbandictionary.biz +urbandictionary.github.io +av.urbandictionary.biz +*.urbandictionary.org +*.ud.wtf +*.udimg.com +*.urbandictionary.blog +*.urbanup.com +help.urbandictionary.com +*.urbandictionary.store +dash.cloudflare.com +cloudflare.com/apps/ +cloudflareworkers.com +*.teams.cloudflare.com +api.cloudflare.com +*.cloudflare.com +github.com/cloudflare +api.tumblr.com +safe.tumblr.com +secure.tumblr.com +assets.tumblr.com +embed.tumblr.com +*.tumblr.com +www.tumblr.com +t.umblr.com +*.srvcs.tumblr.com +wordpress.com +akismet.com +mailpoet.com +my.pressable.com +simplenote.com +simperium.com +intensedebate.com +happy.tools +www.irccloud.com +api.irccloud.com +*.irccloud-cdn.com +*.irccloud.com +irccloud.com +irc.irccloud.com +team-irc.irccloud.com +blog.irccloud.com +coinbase.com +*.cbhq.net +pro.coinbase.com +custody.coinbase.com +commerce.coinbase.com +prime.coinbase.com +paradex.io +institutional.coinbase.com +api.coinbase.com +api.custody.coinbase.com +slack.com +api.slack.com +status.slack.com +slackb.com +app.slack.com +edgeapi.slack.com +slackatwork.com +slack-redir.net +slack-imgs.com +spaces.pm +data.mail.yahoo.com +le.yahooapis.com +onepush.query.yahoo.com +proddata.xobni.yahoo.com +apis.mail.yahoo.com +yimg.com +https://hackerone.com +https://api.hackerone.com +https://www.hackerone.com +https://hackerone-us-west-2-production-attachments.s3-us-west-2.amazonaws.com/ +*.vpn.hackerone.net +https://app.pullrequest.com +https://reviewer.pullrequest.com +https://errors.hackerone.net +https://*.hackerone-ext-content.com +https://*.hackerone-user-content.com/ +https://ctf.hacker101.com +api.logsnitch.com +console.logsnitch.com +flashpaper.logsnitch.com +logsnitch.com +mta-sts.logsnitch.com +mta-sts.mail.logsnitch.com +support.logsnitch.com +www.logsnitch.com +*.av.ru +*.azbukavkusa.ru +jobazbuka.ru +api.thnks.com +app.thnks.com +www.earny.co +api.earny.com +www.earny.com +www.ozon.ru +id.ozon.ru +job.ozon.ru +rghost.net +*.companyhub.com +localizestaging.com +api.localizestaging.com +app.localizestaging.com +cdn.localizestaging.com +api.imaginecurve.com +vpn.imaginecurve.com +curve.com +curve.app +*.hackyholidays.h1ctf.com +www.drive2.ru +api.drive2.ru +*.d-cd.net +*.drive2.ru +*.txmblr.com +app.copper.com +www.copper.com +*.spell.run +https://github.com/Evolveum/midpoint +postmates.com +fleet.postmates.com +partner.postmates.com +raster-static.postmates.com +buyer-prod.postmates.com +about.postmates.com +support.postmates.com +sandbox.opentech.fund +www.opentech.fund +apply.opentech.fund +www.fig.co +*.ycombinator.com +www.workatastartup.com +www.startupschool.org +blog.ycombinator.com +conference.startupschool.org +www.ycombinator.com +https://*.cobinhood.com +https://github.com/GSA/datagov-deploy +https://github.com/GSA/data.gov +https://manage.data.gov +https://vote.gov +https://18f.gsa.gov +app.files.com +your-assigned-subdomain.files.com +www.files.com +app.legalrobot.com +www.legalrobot.com +www.legalrobot-test.com +app.legalrobot-test.com +api.kiwi.ki +mobile.kiwi.ki +portal.kiwi.ki +ok.ru +*.ok.ru +tamtam.chat +ok.me +apiok.ru +*.vk.com +*.vk.me +*.vk.cc +*.vk.link +id.vk.com +api.enter.health +login.enter.health +provider.enter.health +certauth.adfsi.gsa.gov +certauth.adfss.gsa.gov +e04bmm-secauth6.ent.ds.gsa.gov +e04bmm-secauth7.ent.ds.gsa.gov +e04bmm-secauth8.ent.ds.gsa.gov +e04bmm-secauth9.ent.ds.gsa.gov +e04tcm-secauth6.ent.ds.gsa.gov +e04tcm-secauth7.ent.ds.gsa.gov +e04tcm-secauth8.ent.ds.gsa.gov +e04tcm-secauth9.ent.ds.gsa.gov +e07r7m-secauth6.ent.ds.gsa.gov +e07r7m-secauth7.ent.ds.gsa.gov +e07r7m-secauth8.ent.ds.gsa.gov +e07r7m-secauth9.ent.ds.gsa.gov +e04tcm-authdev3.ent.ds.gsa.gov +e04tcm-authdev4.ent.ds.gsa.gov +r05-voipedge.gsa.gov +lab-bm.anywhere.gsa.gov +finhrapps.anywhere.gsa.gov +tc-finhrapps.anywhere.gsa.gov +bm-finhrapps.anywhere.gsa.gov +access.epam.com +cloud.epam.com +anywhere.epam.com +api.recarga.com +www.recargapay.com.br/* +secure.recarga.com/* +www.lifeandretirement.aig.com +www-400.aig.com.hk/AIUEJB/b2b/Login.jsp +api.zpc.zebra.com +mgmt.zpc.zebra.com +minio.zpc.zebra.com +nl.zpc.zebra.com +register-device.zpc.zebra.com +zb-device.zpc.zebra.com +zsbp.zpc.zebra.com +zsbp-device.zpc.zebra.com +zsbportal.zebra.com +cag.zpc.zebra.com +cag-device.zpc.zebra.com +collect.zpc.zebra.com +cvs.zpc.zebra.com +cvs-device.zpc.zebra.com +help.zpc.zebra.com +leopard.zpc.zebra.com +leopard-device.zpc.zebra.com +lion.zpc.zebra.com +lion-device.zpc.zebra.com +tiger.zpc.zebra.com +tiger-device.zpc.zebra.com +tjx.zpc.zebra.com +tjx-device.zpc.zebra.com +walmart.zpc.zebra.com +walmart-device.zpc.zebra.com +walmart-maint.zpc.zebra.com +walmart-maint-device.zpc.zebra.com +zcorebidi-health.zpc.zebra.com +zsec-a.zpc.zebra.com +zsec-a-device.zpc.zebra.com +zsec-b.zpc.zebra.com +zsec-b-device.zpc.zebra.com +avs.zpc.zebra.com +avs-health.zpc.zebra.com +spx-load.zebra.engineering +emea-fedex.zebra.engineering +spx-cluster-4-qpid.zebra.engineering +spx-cluster-3-esp.zebra.engineering +cmm01.sl.zebra.com +mww-k8s.zebra.engineering +mwepen.zebramwe.com +ip-10-255-32-20.us-west-2.compute.internal +ip-10-255-33-159.us-west-2.compute.internal +ip-10-255-39-245.us-west-2.compute.internal +ip-10-255-40-159.us-west-2.compute.internal +ip-10-255-40-173.us-west-2.compute.internal +ip-10-255-40-230.us-west-2.compute.internal +ip-10-255-40-234.us-west-2.compute.internal +ip-10-255-41-22.us-west-2.compute.internal +ip-10-255-42-111.us-west-2.compute.internal +ip-10-255-42-117.us-west-2.compute.internal +ip-10-255-42-127.us-west-2.compute.internal +ip-10-255-42-206.us-west-2.compute.internal +ops.zebrasports.com +ip-10-255-42-9.us-west-2.compute.internal +zlsfiletransfer.zebra.com +psion.la +abco.fetchcore-cloud.com +accenture.fetchcore-cloud.com +accenture-hih.fetchcore-cloud.com +aggity.fetchcore-cloud.com +airbus.fetchcore-cloud.com +ajautomation.fetchcore-cloud.com +arrow.fetchcore-cloud.com +arrow-asia.fetchcore-cloud.com +arrow-hongkong.fetchcore-cloud.com +arrow-rt.fetchcore-cloud.com +atlastube-harrow.fetchcore-cloud.com +austinlighthouse.fetchcore-cloud.com +axon.fetchcore-cloud.com +bluemorph.fetchcore-cloud.com +boreal-technologies.fetchcore-cloud.com +braasco.fetchcore-cloud.com +brightmachines-kingfisher.fetchcore-cloud.com +brightstar-corp.fetchcore-cloud.com +buildwithrobots.fetchcore-cloud.com +buildwithrobots-1002.fetchcore-cloud.com +buildwithrobots-2.fetchcore-cloud.com +bwr-1000.fetchcore-cloud.com +bwr-1001.fetchcore-cloud.com +bwr-1002.fetchcore-cloud.com +cepheid.fetchcore-cloud.com +choctaw-nation.fetchcore-cloud.com +cisco-iot.fetchcore-cloud.com +cjlogistics.fetchcore-cloud.com +cobham.fetchcore-cloud.com +cybercleansystems.fetchcore-cloud.com +dangot.fetchcore-cloud.com +dhl.fetchcore-cloud.com +dhl-livermore-lam.fetchcore-cloud.com +dhl-tracy-cart.fetchcore-cloud.com +diligentrobots-2.fetchcore-cloud.com +diligentrobots-prod.fetchcore-cloud.com +disinfectech.fetchcore-cloud.com +dsclogistics.fetchcore-cloud.com +dspautomation.fetchcore-cloud.com +emergingwf.fetchcore-cloud.com +flex.fetchcore-cloud.com +fortna.fetchcore-cloud.com +gaitech.fetchcore-cloud.com +garmin.fetchcore-cloud.com +ge-ap1.fetchcore-cloud.com +ge-ap3.fetchcore-cloud.com +ge-ap4.fetchcore-cloud.com +ge-appliances.fetchcore-cloud.com +ge-camden.fetchcore-cloud.com +ge-camden-2.fetchcore-cloud.com +ge-riverridge.fetchcore-cloud.com +ge-riverridge-2.fetchcore-cloud.com +ge-roper.fetchcore-cloud.com +ge-selmer.fetchcore-cloud.com +ge-slc.fetchcore-cloud.com +geodis-hixson.fetchcore-cloud.com +geodis-logistics.fetchcore-cloud.com +globalindustrial.fetchcore-cloud.com +grainger.fetchcore-cloud.com +grainger-montana.fetchcore-cloud.com +greyorange.fetchcore-cloud.com +hans-schourup.fetchcore-cloud.com +hi-northropgrumman.fetchcore-cloud.com +honeywell-intelligrated.fetchcore-cloud.com +honeywell-sim.fetchcore-cloud.com +huslab.fetchcore-cloud.com +ibcs.fetchcore-cloud.com +im.fetchcore-cloud.com +im2.fetchcore-cloud.com +im3.fetchcore-cloud.com +im5.fetchcore-cloud.com +inconso.fetchcore-cloud.com +intex-k.fetchcore-cloud.com +inventive.fetchcore-cloud.com +john-deere.fetchcore-cloud.com +kennametal.fetchcore-cloud.com +kingmfg.fetchcore-cloud.com +kuehne-nagel.fetchcore-cloud.com +laubner.fetchcore-cloud.com +lystech.fetchcore-cloud.com +macgregor.fetchcore-cloud.com +maersk-ga.fetchcore-cloud.com +maersk-redlands-fulfillment.fetchcore-cloud.com +markssupply.fetchcore-cloud.com +mecomb.fetchcore-cloud.com +motionindustries.fetchcore-cloud.com +ncrcorp.fetchcore-cloud.com +neffpower.fetchcore-cloud.com +nitco.fetchcore-cloud.com +nkcaust.fetchcore-cloud.com +olympus-controls.fetchcore-cloud.com +paiindustries.fetchcore-cloud.com +piedmontnational.fetchcore-cloud.com +piedmontnational-montana.fetchcore-cloud.com +piedmontnational-oembase.fetchcore-cloud.com +piedmontnational-pilot.fetchcore-cloud.com +pitneybowes.fetchcore-cloud.com +randa.fetchcore-cloud.com +renovotec.fetchcore-cloud.com +richemont-dfw.fetchcore-cloud.com +rsi.fetchcore-cloud.com +rubyhas.fetchcore-cloud.com +sap-pilot.fetchcore-cloud.com +sap-walldorf.fetchcore-cloud.com +schneider-electric.fetchcore-cloud.com +sdilabs.fetchcore-cloud.com +sealanddesign.fetchcore-cloud.com +sealingdevices.fetchcore-cloud.com +ses-prismagraphic.fetchcore-cloud.com +shasthafoods.fetchcore-cloud.com +shoppasmaterialhandling.fetchcore-cloud.com +shorr.fetchcore-cloud.com +sick-mn.fetchcore-cloud.com +sickusa.fetchcore-cloud.com +sielift.fetchcore-cloud.com +softeon.fetchcore-cloud.com +spica.fetchcore-cloud.com +spscompanies.fetchcore-cloud.com +ssi-integration.fetchcore-cloud.com +staylinked.fetchcore-cloud.com +storage-solutions.fetchcore-cloud.com +storageequipmentsystems.fetchcore-cloud.com +syncreon-netherlands.fetchcore-cloud.com +total-technologies.fetchcore-cloud.com +tritechrobotics.fetchcore-cloud.com +tropical.fetchcore-cloud.com +twinoaks.fetchcore-cloud.com +u-sluno.fetchcore-cloud.com +u-sluno-2.fetchcore-cloud.com +vargo.fetchcore-cloud.com +vargo-integration.fetchcore-cloud.com +vargo-sim.fetchcore-cloud.com +vecna-integration.fetchcore-cloud.com +verizon.fetchcore-cloud.com +viioni.fetchcore-cloud.com +viioni-crownpaints-uk.fetchcore-cloud.com +viioni-nhs.fetchcore-cloud.com +wartsila.fetchcore-cloud.com +waytekwire.fetchcore-cloud.com +zebra.fetchcore-cloud.com +zebra-fulfillment.fetchcore-cloud.com +zebra-integration.fetchcore-cloud.com +zebra-sd.fetchcore-cloud.com +zebra1-integration.fetchcore-cloud.com +zebrabd.fetchcore-cloud.com +zebraheerenveen.fetchcore-cloud.com +zordi.fetchcore-cloud.com +fs.viq.zebra.com +portal.uvtrace.com +com.zebra.asdalockerreturn +jenkins.ssppdeployp.zebra.engineering. +ui.ssppcorep.zebra.engineering. +ads.ess2corep.zebra.engineering. +aggregation-api.ess2dlcorep.zebra.engineering. +baseline-analytic-api.ess2dlcorep.zebra.engineering. +data-capture-api.ess2dlcorep.zebra.engineering. +data-catalog-api.ess2dlcorep.zebra.engineering. +device-details-api.ess2dlcorep.zebra.engineering. +device-https.ess2corep.zebra.engineering. +emc-http-endpoint.ess2corep.zebra.engineering. +es-gcf-auth-p.zebra.engineering. +jumphost.es-s2-core-p-1.zebra.engineering. +location-api.ess2dlcorep.zebra.engineering. +raw-api.ess2dlcorep.zebra.engineering. +sfdc-support-portal-api.ess2dlcorep.zebra.engineering. +tenant-api.ess2dlcorep.zebra.engineering. +wm-api.ess2dlcorep.zebra.engineering. +wm-private-api.ess2dlcorep.zebra.engineering. +sss2buildd.zebra.engineering +ess2corep.zebra.engineering +ess2dlcorep.zebra.engineering +ssppcontrolp.zebra.engineering +ssppcorep.zebra.engineering +pp.zebra.com +accounts.walgreens.antuit.ai +accounts.wba.esp.antuit.ai +aivm.walgreens.antuit.ai +aivm-proxy.walgreens.antuit.ai +api.walgreens.antuit.ai +sftp.walgreens.antuit.ai +www.walgreens.antuit.ai +accounts.elc.esp.antuit.ai +accounts.elcforecast.antuit.ai +accounts.flowersfoods.antuit.ai +accounts.ffd.esp.antuit.ai +minio-prod.flowersfoods.antuit.ai +minio-prod.ffd.esp.antuit.ai +api.flowersfoods.antuit.ai +api.ffd.esp.antuit.ai +flowersfoods.antuit.ai +ffd.esp.antuit.ai +www.flowersfoods.antuit.ai +sftp.flowersfoods.antuit.com +www.ffd.esp.antuit.ai +accounts.gap.antuit.ai +aivm.gap.antuit.ai +aivm-proxy.gap.antuit.ai +platform.gap.antuit.ai +www.gap.antuit.ai +accounts.gap.esp.antuit.ai +accounts.generalmills.antuit.ai +accounts.gmi.esp.antuit.ai +www.generalmills.antuit.ai +api.generalmills.antuit.ai +generalmills.antuit.ai +ams.philips.antuit.ai +api-platform.philips.antuit.ai +platform.philips.antuit.ai +accounts.philips.antuit.ai +accounts.phg.esp.antuit.ai +api.philips.antuit.ai +philips.antuit.ai +aivm.philips.antuit.ai +accounts.rackroom.antuit.ai +accounts.rck.esp.antuit.ai +api.rackroom.antuit.ai +1077665-rackvpn-dr.reflexisinc.co.uk +1077665-rackvpn-pr.reflexisinc.co.uk +aafes.reflexisinc.com +activation.reflexisinc.co.uk +activation.reflexisinc.com +adusa.reflexisinc.com +ahold.reflexisinc.com +americansignature.reflexisinc.com +andromeda.reflexisinc.com +aptdixons.reflexisinc.co.uk +auth.reflexisinc.com +bancoppel.reflexisinc.com +bankofamerica.reflexisinc.com +bbyppmobile.reflexisinc.com +bbysbmobile.reflexisinc.com +bcf.reflexisinc.com +bindawood.reflexisinc.co.uk +blh.reflexisinc.com +bp.reflexisinc.co.uk +bpgermany.reflexissystems.de +bps.reflexisinc.com +cencosud.reflexisinc.com +chicos.reflexisinc.com +csaar.reflexisinc.com +cvs.reflexisinc.com +cvsapi.reflexisinc.com +cvsba.reflexisinc.com +cvscoram.reflexisinc.com +cvsdc.reflexisinc.com +cvsltc.reflexisinc.com +cvsltcba.reflexisinc.com +das.scheduling.hmchina.cn +das.scheduling.hmgroup.com +davidjones.reflexisinc.com +dgn.reflexisinc.com +dj.reflexisinc.co.uk +dxnspayroll.reflexisinc.co.uk +egr.reflexisinc.co.uk +elcuk.reflexisinc.co.uk +elrosado.reflexisinc.com +eurogarages.reflexisinc.com +eyemartexpress.reflexisinc.com +faceauthal.reflexisinc.com +faceauthau.reflexisinc.com +faceauthlon3.reflexisinc.co.uk +faceauthlon5.reflexisinc.co.uk +faceauthmb.reflexisinc.com +farmacorp.reflexisinc.com +fs.reflexisinc.com +fs2.reflexisinc.com +ftp.reflexisinc.co.uk +ftp2.reflexisinc.com +ftpasi.reflexisinc.com +fxss.reflexisinc.com +gamestop.reflexisinc.com +gcp.rflxdocker.reflexisinc.co.uk +glp.reflexisinc.com +hdpda.reflexisinc.com +heb.reflexisinc.com +iam.reflexisinc.com +iam01.iam.reflexisinc.com +iir.reflexisinc.co.uk +iki.reflexisinc.co.uk +jpmc.reflexisinc.com +jpmctablet.reflexisinc.com +kennesaw-vpn.reflexisinc.com +knlaap.reflexisinc.com +knlaarons.reflexisinc.com +knlasi.reflexisinc.com +knlazoba.reflexisinc.com +knlbatplus.reflexisinc.com +knlbby.reflexisinc.com +knlbbycan.reflexisinc.com +knlbbymobile.reflexisinc.com +knlbbyppmobile.reflexisinc.com +knlbelk.reflexisinc.com +knlbelkdr.reflexisinc.com +knlbjs.reflexisinc.com +knlbmr.reflexisinc.co.uk +knlbnc.reflexisinc.com +knlbsi.reflexisinc.com +knlbsirtm.reflexisinc.com +knlchicos.reflexisinc.com +knlcl02st.reflexisinc.com +knlcl85pr.scheduling.hmchina.cn +knlcluster01.reflexisinc.com +knlcluster02.reflexisinc.com +knlcluster03.reflexisinc.com +knlcluster07.reflexisinc.com +knlcluster08.reflexisinc.com +knlcluster09.reflexisinc.com +knlcluster10.reflexisinc.com +knlcluster11.reflexisinc.com +knlcluster12.reflexisinc.com +knlcluster15.reflexisinc.com +knlcluster16.reflexisinc.com +knlcluster18.reflexisinc.com +knlcluster19.reflexisinc.com +knlcluster20.reflexisinc.com +knlcluster21.reflexisinc.com +knlcluster22.reflexisinc.com +knlcluster23.reflexisinc.com +knlcluster24.reflexisinc.com +knlcluster51.reflexisinc.co.uk +knlcluster52.reflexisinc.co.uk +knlcluster53.scheduling.hmgroup.com +knlcluster54.reflexisinc.co.uk +knlcluster70.scheduling.hmgroup.com +knlcluster75.reflexissystems.de +knlcluster76.reflexissystems.de +knlcluster78.reflexissystems.de +knlcluster85.scheduling.hmchina.cn +knlcoop.reflexissystems.de +knlcoopuk.reflexisinc.co.uk +knlcoppel.reflexisinc.com +knlcuf.reflexisinc.com +knlcufrtm.reflexisinc.com +knldcsg.reflexisinc.com +knldiscounttire.reflexisinc.com +knldxns.reflexisinc.co.uk +knlelsuper.reflexisinc.com +knlfalabella.reflexisinc.com +knlfmb.reflexisinc.com +knlfmc.reflexisinc.com +knlgate.reflexisinc.com +knlge.reflexisinc.com +knlgestiondeturnos.reflexisinc.com +knlgowireless.reflexisinc.com +knlhdmex.reflexisinc.com +knlhmppru.scheduling.hmgroup.com +knljcp.reflexisinc.com +knljlp.reflexisinc.co.uk +knlkohls.reflexisinc.com +knlloves.reflexisinc.com +knllowes.reflexisinc.com +knlmcdde.reflexissystems.de +knlmichaels.reflexisinc.com +knlmorrisons.reflexisinc.co.uk +knlodpactivitycalendar.reflexisinc.com +knlofficedepot.reflexisinc.com +knlpromart.reflexisinc.com +knlqck4.reflexisinc.com +knlrewe.reflexissystems.de +knlrockler.reflexisinc.com +knlrrs.reflexisinc.com +knlsallybeauty.reflexisinc.com +knlsfc.reflexisinc.co.uk +knlsgh.reflexisinc.com +knlsheetz.reflexisinc.com +knlsiman.reflexisinc.com +knlsmu.reflexisinc.com +knlsod.reflexisinc.com +knlstaples.reflexisinc.com +knltailoredbrands.reflexisinc.com +knltesco.reflexisinc.co.uk +knltescoce.reflexisinc.co.uk +knltjx.reflexisinc.com +knltottus.reflexisinc.com +knlupc.reflexisinc.com +knlvsm.reflexisinc.com +knlwalgreens.reflexisinc.com +knlwalrtm.reflexisinc.com +knlwawa.reflexisinc.com +knlwestmarine.reflexisinc.com +livingspaces.reflexisinc.com +lonmail01.reflexisinc.co.uk +lonmail05.reflexisinc.co.uk +mailhost.reflexisinc.com +mailhost01.reflexisinc.com +mailhostal.appointment.reflexisinc.com +mailhostau.reflexisinc.com +mailhostdo.reflexissystems.de +mailhostlon3.appointment.reflexisinc.co.uk +mailhostlon3.reflexisinc.co.uk +mailhostlon5.appointment.reflexisinc.co.uk +mailhostlon5.reflexisinc.co.uk +mailhostso.reflexisinc.com +mands.reflexisinc.co.uk +mapco.reflexisinc.com +maverik.reflexisinc.com +maxima.reflexisinc.co.uk +mcddetrg.reflexisinc.co.uk +mcdeu.reflexisinc.co.uk +mcdpl.reflexisinc.co.uk +mcduk.reflexisinc.co.uk +mcdukpsdr.reflexisinc.co.uk +md.reflexisinc.com +migrationrwspantry.reflexisinc.com +mitre10.reflexisinc.com +mobility.reflexisinc.com +morrisons.reflexisinc.co.uk +mwcl02pp.reflexisinc.com +mwcl02st.reflexisinc.com +mwcl20ba.reflexisinc.com +mwcl21ppkl.reflexisinc.com +mwcl52ppkl.reflexisinc.co.uk +mwcl85pr.scheduling.hmchina.cn +mwcluster01.reflexisinc.com +mwcluster02.reflexisinc.com +mwcluster03.reflexisinc.com +mwcluster04.reflexisinc.com +mwcluster07.reflexisinc.com +mwcluster08.reflexisinc.com +mwcluster09.reflexisinc.com +mwcluster09dr.reflexisinc.com +mwcluster10.reflexisinc.com +mwcluster11.reflexisinc.com +mwcluster12.reflexisinc.com +mwcluster15.reflexisinc.com +mwcluster16.reflexisinc.com +mwcluster19.reflexisinc.com +mwcluster20.reflexisinc.com +mwcluster21.reflexisinc.com +mwcluster22.reflexisinc.com +mwcluster23.reflexisinc.com +mwcluster24.reflexisinc.com +mwcluster51.reflexisinc.co.uk +mwcluster52.reflexisinc.co.uk +mwcluster53.scheduling.hmgroup.com +mwcluster54.reflexisinc.co.uk +mwcluster70.scheduling.hmgroup.com +mwcluster75.reflexissystems.de +mwcluster76.reflexissystems.de +mwcluster78.reflexissystems.de +mwcluster85.scheduling.hmchina.cn +mwclusterslc01.reflexisinc.com +mwclusterslc02.reflexisinc.com +mwhdpdm.reflexisinc.com +myportal.reflexisinc.com +myworkaap.reflexisinc.com +myworkaarons.reflexisinc.com +myworkasi.reflexisinc.com +myworkazoba.reflexisinc.com +myworkbatplus.reflexisinc.com +myworkbby.reflexisinc.com +myworkbbycan.reflexisinc.com +myworkbbymobile.reflexisinc.com +myworkbelk.reflexisinc.com +myworkbelkdr.reflexisinc.com +myworkbjs.reflexisinc.com +myworkbmr.reflexisinc.co.uk +myworkbnc.reflexisinc.com +myworkbsi.reflexisinc.com +myworkchicos.reflexisinc.com +myworkcoop.reflexissystems.de +myworkcoopuk.reflexisinc.co.uk +myworkcoppel.reflexisinc.com +myworkcuf.reflexisinc.com +myworkcvs.reflexisinc.com +myworkdcsg.reflexisinc.com +myworkdiscounttire.reflexisinc.com +myworkdxns.reflexisinc.co.uk +myworkelsuper.reflexisinc.com +myworkfalabella.reflexisinc.com +myworkfmb.reflexisinc.com +myworkfmc.reflexisinc.com +myworkganderoutdoors.reflexisinc.com +myworkgate.reflexisinc.com +myworkge.reflexisinc.com +myworkgestiondeturnos.reflexisinc.com +myworkgowireless.reflexisinc.com +myworkhdmex.reflexisinc.com +myworkhmpr.scheduling.hmchina.cn +myworkhmpr.scheduling.hmgroup.com +myworkhmprru.scheduling.hmgroup.com +myworkjcp.reflexisinc.com +myworkjlp.reflexisinc.co.uk +myworkkohls.reflexisinc.com +myworkkroger.reflexisinc.com +myworkloves.reflexisinc.com +myworklowes.reflexisinc.com +myworkmcdde.reflexissystems.de +myworkmichaels.reflexisinc.com +myworkmorrisons.reflexisinc.co.uk +myworkpromart.reflexisinc.com +myworkrewe.reflexissystems.de +myworkrockler.reflexisinc.com +myworkrrs.reflexisinc.com +myworksallybeauty.reflexisinc.com +myworksfc.reflexisinc.co.uk +myworksgh.reflexisinc.com +myworksheetz.reflexisinc.com +myworksiman.reflexisinc.com +myworksmu.reflexisinc.com +myworksod.reflexisinc.com +myworkstaples.reflexisinc.com +myworktailoredbrands.reflexisinc.com +myworktesco.reflexisinc.co.uk +myworktescoce.reflexisinc.co.uk +myworktjx.reflexisinc.com +myworktottus.reflexisinc.com +myworktractorsupply.reflexisinc.com +myworkupc.reflexisinc.com +myworkvsm.reflexisinc.com +myworkwalgreens.reflexisinc.com +myworkwalrtm.reflexisinc.com +myworkwawa.reflexisinc.com +myworkwestmarine.reflexisinc.com +oakley.reflexisinc.com +obiprapp01.aws.reflexisinc.co.uk +obiprapp02.aws.reflexisinc.co.uk +observium.reflexisinc.com +odpactivitycalendar.reflexisinc.com +odpscheduler.reflexisinc.com +oxxo.reflexisinc.com +password.reflexisinc.com +pearlevision.reflexisinc.com +peoplesystems.reflexissystems.de +petretailbrands.reflexisinc.com +pr.scheduling.hmchina.cn +pr.scheduling.hmgroup.com +primax.reflexisinc.com +prru.scheduling.hmgroup.com +psschedule.reflexisinc.co.uk +publicstorage.reflexisinc.com +qs.reflexisinc.com +questa.reflexisinc.co.uk +quickchek.reflexisinc.com +quickchekupg1.reflexisinc.com +rapidrtm.reflexisinc.com +ReflexisKennesawFW1.reflexisinc.com +rflxbankofamerica.reflexisinc.com +rflx-bosmd-202.reflexisinc.com +rflxjpmc.reflexisinc.com +rflxqstar.reflexisinc.com +rflxrslon5sftp01.reflexisinc.co.uk +rfxqlkpr01.reflexisinc.com +rslonsftp.reflexisinc.co.uk +rue21.reflexisinc.com +rwsaap.reflexisinc.com +rwsazoba.reflexisinc.com +rwsbelk.reflexisinc.com +rwsbelkdr.reflexisinc.com +rwsbmr.reflexisinc.co.uk +rwsbsi.reflexisinc.com +rwscoppel.reflexisinc.com +rwscuf.reflexisinc.com +rwsdiscounttire.reflexisinc.com +rwsdxns.reflexisinc.co.uk +rwsfacereco.reflexisinc.com +rwsgestiondeturnos.reflexisinc.com +rwsgowireless.reflexisinc.com +rwshmpr.scheduling.hmchina.cn +rwshmpr.scheduling.hmgroup.com +rwshmprru.scheduling.hmgroup.com +rwsjlp.reflexisinc.co.uk +rwsloves.reflexisinc.com +rwslvs.reflexisinc.com +rwsmcdde.reflexissystems.de +rwsmobility.reflexisinc.com +rwsofficedepot.reflexisinc.com +rwsqck4.reflexisinc.com +rwssallybeauty.reflexisinc.com +rwssfc.reflexisinc.co.uk +rwssmu.reflexisinc.com +rwssonarqube.reflexisinc.com +rwstailoredbrands.reflexisinc.com +rwsupc.reflexisinc.com +rwsupgrade.reflexisinc.com +rwswalgreens.reflexisinc.com +rwswawa.reflexisinc.com +saas.reflexisinc.com +saasadmin.reflexisinc.com +saasagent.reflexisinc.com +saasauagent.reflexisinc.com +saaseuw2agent.reflexisinc.co.uk +saaslon3agent.reflexisinc.co.uk +saaslon5agent.reflexisinc.co.uk +saaspsagent.reflexissystems.de +saassoagent.reflexisinc.com +sephora.reflexisinc.com +sftp.reflexisinc.com +sftp2.reflexisinc.com +sftpaafes.reflexisinc.com +sftpaap.reflexisinc.com +sftpaarons.reflexisinc.com +sftpadusa.reflexisinc.com +www.travelguard.com +www-1.aig.com +www.myretirementmanager.com +tunnistus.lahitapiola.fi +app.futuresimple.com +api.getbase.com +h1-your-domain.zendesk.com/sell +app.pullrequest.com +reviewer.pullrequest.com +ctf.hacker101.com +hackerone-us-west-2-production-attachments.s3-us-west-2.amazonaws.com +*.oanda.com +*.oanda.jp +*.tms.pl +*.tmsbrokers.com +*.investmentuniversity.pl +a5s.hackerone-ext-content.com +b5s.hackerone-ext-content.com +hackerone-ext-content.com +hackathon-photos.hackerone-user-content.com +cover-photos.hackerone-user-content.com +hackathon-photos-us-east-2.hackerone-user-content.com +profile-photos.hackerone-user-content.com +hackerone-user-content.com +profile-photos-us-east-2.hackerone-user-content.com +cover-photos-us-east-2.hackerone-user-content.com +apie.gsa.gov +staging.apie.gsa.gov +examinator.epam.com +training.epam.com +www.picsart.io +api.picsart.io +payment-connectors.vendhq.com +instacart.careers +https://contact.krisp.ai +https://url5145.krisp.ai +www.vfis.com +www.glatfelters.com +https://www.aiglife.co.uk/insurance/CBS +https://www.aiglife.co.uk/insurance/sbs +https://www.aiglife.co.uk/insurance/directline/lifeinsurance/ +https://www.aiglife.co.uk/Insurance/natwest/ProductSelection +https://www.aiglife.co.uk/insurance/YBS +https://www.aiglife.co.uk/insurance/churchill/lifeinsurance/ +https://www.aiglife.co.uk/Insurance/rbs/ProductSelection +https://www.aiglife.co.uk/insurance/ulsterbank +test.gsa.gov +heyfiesta.com +blendr.com +CIO.GOV +CAO.GOV +CFO.GOV +CITIZENSCIENCE.GOV +CONSUMERACTION.GOV +CONTRACTDIRECTORY.GOV +FEDROOMS.GOV +FIRSTGOV.GOV +FPC.GOV +FPDS.GOV +FPKI.GOV +FPKI-LAB.GOV +FSD.GOV +US.GOV +VOTE.GOV +*.CAO.GOV +*.CFO.GOV +*.CITIZENSCIENCE.GOV +*.CONSUMERACTION.GOV +*.CONTRACTDIRECTORY.GOV +*.FEDROOMS.GOV +*.FIRSTGOV.GOV +*.FPC.GOV +*.FPDS.GOV +*.FPKI.GOV +*.FPKI-LAB.GOV +*.FSD.GOV +*.US.GOV +*.VOTE.GOV +ACCESSIBILITY.GOV +*.ACCESSIBILITY.GOV +BUSINESSUSA.GOV +*.BUSINESSUSA.GOV +mcm.fas.gsa.gov +cdo.gov +digital.gov +digitalgov.gov +ecpic.gov +esrs.gov +faca.gov +fai.gov +sftool.gov +fbf.gov +idmanagement.gov +login.gov +reginfo.gov +rocis.gov +search.gov +section508.gov +buyamerican.gov +*.buyamerican.gov +cloud.enjin.io,goerli.cloud.enjin.io,jumpnet.cloud.enjin.io +USAGOV.GOV +USSM.GOV +*.IDENTITYSANDBOX.GOV +*.SBST.GOV +*.USAGOV.GOV +*.USSM.GOV +IDENTITYSANDBOX.GOV +sbst.gov +*.nuinvest.com.br +*.investnews.com.br +*.era.com +werkenbijdnb.nl +games2gether.com +community.twopointcounty.com +community.companyofheroes.com +*.costcotravel.com +*.costcotravel.ca +www.personalcreations.com +www.simplytoimpress.com +https://www.photoaffections.com/ +https://www.gifts.com/ +https://www.cafepress.com/ +https://www.canvasworld.com/ +https://www.mycustomcase.com/ +*.guilded.gg +www.priceline.com* +*.mil +*.adlnet.gov +*.aftac.gov +*.altusandc.gov +*.businessdefense.gov +*.cmts.gov +*.cnss.gov +*.ctoc.gov +*.cttso.gov +*.dc3on.gov +*.defense.gov +*.fehrm.gov +*.fvap.gov +*.hive.gov +*.iad.gov +*.ioss.gov +*.itc.gov +*.iwtsd.gov +*.jccs.gov +*.mojavedata.gov +*.mtmc.gov +*.mypay.gov +*.nationalresourcedirectory.gov +*.nbib.gov +*.nrd.gov +*.nro.gov +*.nrojr.gov +*.nsa.gov +*.nsep.gov +*.oea.gov +*.oldcc.gov +*.tak.gov +*.tswg.gov +*.usandc.gov +*.af.edu +*.afit.edu +*.armyuniversity.edu +*.armywarcollege.edu +*.cdse.edu +*.dau.edu +*.dcita.edu +*.dlielc.edu +*.dliflc.edu +*.dodea.edu +*.ndu.edu +*.nps.edu +*.usafa.edu +*.uscga.edu +*.usma.edu +*.usmcu.edu +*.usmma.edu +*.usna.edu +*.usnwc.edu +*.usuhs.edu +*.westpoint.edu +18F.GOV +*.18F.GOV +www.aig.sg +www.aig.com.br +https://www-264.aig.com +www-402.aigdirect.com +www.americanhome.co.jp +www.aigportal.de +https://travel.aig.co.jp +*.panther.com +mtnloaded.co.za +mtn-sa.com +yellomtn.com +mtn-ssd.com +mtngroup.com +mtnonlineservices.com +mascom.co.bw +upk.mtn.com +ebs.mtn.com +wc.mtn.com +ofr.mtn.com +oddc.mtn.com +grc-aacg.mtn.com +oam.mtn.com +grc-ccg.mtn.com +ascp.mtn.com +soa.mtn.com +mtnglobalconnect.com +mtnrewards.com +mtncareersonline.com +mtnbusiness.net +int.mtnbusiness.net +mtn-ic.com +mtngame.net +www.mtnbanking.com +mtnspptylimited.net +mtnholdings.org +mtnholdingsptylimited.biz +mtnchampionship.com +mtnplayonline.com +mtnptylimited.com +mtn-weca.com +mtnsecure.com +mtnns.net +mtn.mobi +mtn-investor.com +mtnbusiness.com +move2mtn.com +mtnhostedservices.com +mtnhostedservices.net +mtnonlineservices.net +mtnhostedservices.mobi +mtnonlineservices.mobi +mtnlibmusic.com +www.mtn.com +mtngb.com +mtn.wiki +usermtn.com +mtninternet.com +mtnmobiletv.com +mtnniger.com +mtnuktopup.com +mtnonlinepromo.com +mtnmoney.com +mtnpromocard.com +mtnfinancialservices.com +mtnzakhele.tel +mtntopup.com +mtnmmo.com +mtnholdings.com +mtnbirthdays.com +mtnupgrade.mobi +mtnselfserviceonline.com +mtnconnect.com +mtndownloads.com +mtnfrontrow.com +promobymtn.com +mtnbusiness.tel +mtnmobilemoney.us +mtnappstore.com +mtnmail.org +mtnanytimetopup.com +mtnsms.net +mtn-global.com +mtnpromobonus.com +mtnrates.com +mtnprojectfamewestafrica.com +mtncsms.com +mtnzakhele.net +mtnusatopup.com +mtni.net +mtninsurance.com +mtnmobilemoney.net +mtnns.com +mtnvoicemail.com +mtn.hosting +mtn.network +mtnprojectfame.com +mtnglobaltopup.com +mtnlite.com +mtnplay-ssd.com +mymtnapps.com +mtnpaid.com +mtnmusiconline.com +mtn.tel +mtnglobalrecharge.com +mtnpromoloaded.com +mtnbusiness.mobi +mtneasy.com +mtn-global.net +mtnpays.com +mtnfinancialsolutions.net +mtncallertunes.com +mtnhelloworld.com +mtnpulse.com +mtnadvertising.com +mtnsurprisepromo.com +mtnmobilemassage.com +mtnzakhele.com +mtn.host +mtnxmasoffer.com +mtnwebtransfer.com +mtnpreview.com +mtnayoba.com +mtnpins.com +mtnfreepromo.com +mtnbanking.com +mtntelecom.com +mtninsure.com +mtn-ns.net +mtnmail.tel +mtnyellomail.com +mtnghonlineservices.mobi +mtnfastmail.com +mtn.software +mtnonlineplay.com +mtnonlineloaded.com +mtnmena.com +mtncompass.mobi +mtnbussiness.com +mtnsp.mobi +mtnnconnectstore.com +mtn50.com +mtnpulse.tel +mtnholdingsptyltd.com +mtn131.com +mtnmobilecity.com +mtn-eschool.com +mtnmail.mobi +mtnmobilemoney.com +mtncloud.com +mtnmobility.net +mtnptylimited.net +mtnfull.com +mymtn-promo.com +mtnngprs.com +mtnrecharge.com +mtnbonus.com +mtninternational.net +mtnapps.net +mtnholdings.net +mtnddns.net +mtnmobileoffice.com +mtnholdingsptylimited.com +mtneurotopup.com +mtnholdingsptylimited.net +mtnplay.net +mtnconnectng.net +mtnholdingsptyltd.net +mtnatwork.com +mtnglobalconnect.net +mtndeveloper.com +yelloworld.com +mtnglobaltopup.net +mtncalls.com +mtnbanking.net +mtnhomeland.com +mtnconectng.net +mtn.net +mtnsoccer.com +yellobroadband.com +yellotalk.com +mtnoffer.com +mtnringtones.com +mymobilemoneyng.com +mtnrank.com +yellomonitoring.ir +mtnfantasyleague.com +yellobroadband.net +yelloafrica.com +mtnoverseastopup.com +mtngaming.com +hotmtnpromo.com +mtnsp.com +mtnfinancialsolutions.com +mtnplayasyougo.mobi +mtneuropeantopup.com +mtnepresence.com +mtnairborn.com +mtn-universal-topup.com +mtnonlineoffer.com +mtnhelloworld.net +mtnwireless.net +mtndownload.com +mtnpromosite.com +mtnglobalservices.com +mtnhelloworld.mobi +novafone.com.lr +areeba.com.gh +jolie.ir +achom.ir +worldcom.co.bw +equitygroup.africa +imarikafoundation.org +tpskenya.co.ke +krysandchris.co.ke +ms-df.com +aimco.co.ke +vipresecurity.co.bw +bambonline.co.bw +bomaid.co.bw +redire.co.bw +simbani.co.bw +bhp.org.bw +seza.co.bw +faulucareers.co.ke +sharehub.co.ke +equity-group.org +silobreaks.co.ke +irancel.ir +mtnsouthafricatopup.com +mtnsouthafrica.net +mtnspotlight.com +mtnmailsync.com +mtn.so +mtnss.com +mtn.fail +mtnseasonoffer.com +mtn.digital +mtneasy.net +mtn.global +mtn.business +mtn.media +mtn.wtf +mtnrechargelink.com +mtnretail.com +mtntopup.net +mtngo.durban +mtngo.capetown +mtngo.net +mtngo.joburg +mtngo.mtn +mtngroup.tel +mtngroupltd.net +mtngrouplimited.com +mtngrouplimited.net +lonestarcell.org +yellolearn.co.bw +mtngh.com +www.usertesting.com/* +store.rockstargames.com +p6analytics.mtn.com +eppm.mtn.com +bi-ebs.mtn.com +epm.mtn.com +fs-prdfus.mtn.com +uni.mtn.com +ecap.mtn.com +isupplier.mtn.com +*.fidelity.com +www-264.aig.com +www.aiglife.co.uk/insurance/CBS +www.aiglife.co.uk/insurance/sbs +www.aiglife.co.uk/insurance/directline/lifeinsurance/ +www.aiglife.co.uk/Insurance/natwest/ProductSelection +www.aiglife.co.uk/insurance/YBS +travel.aig.co.jp +www.aiglife.co.uk/insurance/churchill/lifeinsurance/ +www.aiglife.co.uk/Insurance/rbs/ProductSelection +www.aiglife.co.uk/insurance/ulsterbank +*jdisonline.com +*johndeere.com +*wirtgen-group.com +*deere.com +*bluerivertechnology.com +*bearflagrobotics.com +*agrisync.com +*johndeerecloud.com +*starfirenetwork.com +*johndeeretechinfo.com +*.nubank.com.br +*.nu.com.mx +*.nu.com.co +*.nu.com.ar +*.spinpay.com.br +*.olivia.ai +*.cognitect.com +*.datomic.com +*.easynvest.com.br +*.plataformatec.com +*.plataformatec.com.br +*.nuinternational.com +*.investidores.nu +*.somoszetta.org.br +n45ht.or.id +ctf.n45ht.or.id +api.n45ht.or.id +xssr.n45ht.or.id +web.snapchat.com +*.prod.brazil.tkn.zone +*.production.tkn.zone +token.com +monolith.xyz +*.gitlab.net +*.gitlab.org +*.gitlap.com +about.gitlab.com +docs.gitlab.com +design.gitlab.com +advisories.gitlab.com +*.sidefx.com +sftpae.reflexisinc.com +sftpahold.reflexisinc.com +sftpasi.reflexisinc.com +sftpazobae.reflexisinc.com +sftpbancoppel.reflexisinc.com +sftpbankofamerica.reflexisinc.com +sftpbanncoppel.reflexisinc.com +sftpbatplus.reflexisinc.com +sftpbby.reflexisinc.com +sftpbbycan.reflexisinc.com +sftpbelk.reflexisinc.com +sftpbind.reflexisinc.co.uk +ookla.com +pcmag.com +mashable.com +askmen.com +*.lab.epam.com +extremetech.com +offers.com +retailmenot.com +techbargains.com +blackfriday.com +theblackfriday.com +dealsofamerica.com +ign.com +howlongtobeat.com +humblebundle.com +speedtest.net +downdetector.com +toolbox.com +spiceworks.com +community.spiceworks.com +ekahau.com +everydayhealth.com +whattoexpect.com +medpagetoday.com +healthecareers.com +castleconnolly.com +babycenter.com +migraineagain.com +diabetesdaily.com +dailyom.com +primeinc.org +campaigner.com +smtp.com +ipvanish.com +uk.pcmag.com +computershopper.com +geek.com +bestblackfriday.com +insidecrm.com +itmanagement.com +itsecurity.com +voip-news.com +retailmenot.fr +ma-reduc.com +poulpeo.com +line2.com +icontact.com +kickbox.com +vipre.com +inspiredelearning.com +safesendsoftware.com +myvipre.com +threattrack.com +mailanyone.net +inspiredlms.com +api.joinpogo.com +*.trellix.com +*.skyhighsecurity.com +select.lgoitech.com +*.anywhere.re +*.mapcity.com +*.dicom.cl +chaodeudas.cl +*.ansoniacreditdata.com +*.talx.com +*.i2verify.com +*.kount.net +*.hiretech.com +*.wageverify.com +*.kount.com +*.accountscore.com +*.accountscore.co.uk +*.accountscore.net +*.employersedge.com +*.employersedge.net +*.datacredito.com +*.datacredito.com.do +*.datacredito.info +*.healthefx.net +*.healthefx.us +*.healthefxforms.us +*.hcltechsw.com +online.*.skybingo.com +*.trustnota.com +*.leafnow.com +www.medicine.com +www.question.com +www.woolshed.com +*.matic.network +*.polygon.technology +assets.enjin.io,cdn.enjin.io,*.cdn.enjin.io,*.cdn.enjin.cn,cdn.enjin.cn,cdn.enjinx.io,cdn.enjinx.cn,enjinusercontent.com,*.enjinusercontent.com +*.flexport.com +*.transmissionapp.com +*.cornershopapp.com/* +*.superpal.com/* +*.cornershop.io/* +*.superpal.io/* +www.trendyol.com +m.trendyol.com +www.dolap.com +*.projects.epam.com +*.sheingsp.com +*jdisonsite.com +h1-*your-own-instance*.cloud.mattermost.com +select.logitech.com +https://clario.co +https://api.account.clario.co +https://inapp.clario.co +https://static-cdn.clario.co +https://webapi.clario.co +https://kbill.mackeeper.com +https://api-ne.mackeeper.com +https://mkapi.mackeeper.com +https://mackeeper.com +luxurybrands.marriott.com +milux.marriott.com +us.forescout.cloud +uk.forescout.cloud +de.forescout.cloud +www.crowdstrike.com +*.preempt.com +*.preemptsecurity.com +*.myinsights.io +kartaview.org +redditforbusiness.com +www.kraden.com +wipe.kraden.com +bullsheet.me +*.mars.com +*.marschocolate.com +*.mms.com +*.pedigree.com +*.twix.com +*.orbitgum.com +*.dovechocolate.com +*.extragum.com +*.whiskas.com +*.royalcanin.com +*.skittles.com +*.royal-canin.com +*.bluepearlvet.com +*.banfield.com +*.vcahospitals.com +*.mountsinai.org +*.mssm.edu +*.stoppain.org +*.nyee2020.com +*.healthandhealingny.org +*.bethisraelny.org +*.thehealthcenterhudsonyards.com +*.thechep.org +*.nyeesurgnet.com +*.mountsinaiconnect.org +*.dubinbreastcenter.com +*.arnholdinstitute.org +*.wtcexams.org +*.stlukeshospitalnyc.org +*.sinaidowntown.net +*.sarcoidosis.org +*.medicalconciergenyc.com +*.healthandhealingny.com +*.carelink.mountsinaiconnect.org +*.usmgny.org +*.slrortho.com +*.nycepilepsyteam.com +*.cccsymposium.org +*.msonsitehealth.org +*.mountsinaiheartnp.org +*.healthbytesnyc.com +*.mountsinaidoctors.org +*.wanyol.com +*.fossil.com +shard.wwwfeo.fossil.com.edgekey.net +m.fossil.co.jp +m.fossil.co.uk +m.fossil.de +store.emporioarmaniwatches.com +www.fossil.ch +www.fossil.co.jp +www.fossil.co.kr +www.fossil.co.uk +www.fossil.co.za +www.fossil.com.au +www.fossil.de +www.fossil.es +www.fossil.fr +www.fossil.hk +www.fossil.in +www.fossil.it +www.fossil.nl +www.fossilaustralia.com.au +www.fossilcanada.ca +www.fossilchina.cn +www.fossilglobal.com +www.fossilnorway.no +www.fossilsingapore.com.sg +www.fossilsweden.se +*.michele.com +*.misfit.com +*.skagen.com +www.skagenbrand.de +www.skagenglobal.com +www.skagenwatch.co.uk +www.watchstation.co.uk +*.watchstation.com +*.zodiacwatches.com +dev.shopkatchin.com +jp.misfit.com +m.skagen.de +prod.shopkatchin.com +www.111watches.com +www.fossil.be +www.fossilfoundation.org +www.skagen-japan.com +www.watchstation.de +www.watchstation.fr +www.fossil.co.id +notification.billing.appservices.mendix.com/ +www.jaybirdsport.com +www.ultimateears.com +www.astrogaming.com +picsart.io +wealth.emaplan.com +www.getincentive.com +api.getincentive.com +home.getincentive.com +ext-equifax.cl +mail.ext-equifax.cl +http://checksw.com +*.eu.floqast.app +api-eu.floqast.app +*.floqast.app +hilton.com +hilton.io +hilton.com.tr +hiltonbusinessonline.com +hiltonhawaiianvillage.jp +hiltonjapan.co.jp +hiltonmanage.com +hiltonlocalbiz.com +*.hilton.com +*.hilton.io +*.hilton.com.tr +*.hiltonbusinessonline.com +*.hiltonjapan.co.jp +*.hiltonmanage.com +*.paystackintegrations.com +nigerialogos.com +decodefintech.com +*.apnic.net +*.apnic.foundation +*.isif.asia +*.seedalliance.net +*.apidt.org +orbit.apnic.net +ftp.apnic.net +stats.labs.apnic.net +aso.apnic.net +nori.apnic.net +rsync.apnic.net +registry-testbed.apnic.net +rpki.apnic.net +submission.apnic.net +*.okx.com +https://www.okx.com/docs-v5/en/#market-maker-program +https://www.okx.com/docs/en/ +*.lacity.org +*.lacity.gov +https://*.fastly.com/ +https://manage.fastly.com/ +api.fastly.com +*.signalsciences.com +*.fanout.io +https://docs.fastly.com/ +*.indriver.com +*.indriverapp.com +*.indrive.com +*.grindr.io +*.grindr.com +*.grindr.mobi +*.dev.grindr.io +skinport.com +app.skinport.com +api.skinport.com +skinport.com/blog/ +miro.com/app +miro.com +api.miro.com +miro.com/blog +*.abb.com +*.abb +*.tnb.com +*.abb.com.tr +*.abb.com.cn +*.baldor.com +*.cylon.com +www.malwarebytes.com +my.malwarebytes.com +cloud.malwarebytes.com +oneview.malwarebytes.com +*.mwbsys.com +*.mb-cosmos.com +*.mbamupdates.com +*.cloud.malwarebytes.com +*.malwarebytes.com +*.mwb-threatintel.com +forums.malwarebytes.com +blog.malwarebytes.com +support.malwarebytes.com +canadagoose.com +service.canadagoose.com +api.canadagoose.com +www.svb.com +www.svbconnect.com +https://connect.svb.com/ +https://lendx.svb.com/ +https://sandbox.api.svb.com/v1/fx/deals +https://svbbpm.svbconnect.com/suite/sites/GCO-Dashboard +https://svbbpm.svbconnect.com/suite/sites/portico-client-onboarding +https://api.svb.com/ +https://openbanking.svb.com/open-banking/v3.1/ +developer.svb.com +https://www.cipherbio.com/ +https://staking.xdefi.io/ +https://app.xdefi.io +online.s-pankki.fi +https://www.s-pankki.fi +https://crosskey.io/stores/s-pankki/apis +mobile.s-pankki.fi +https://www.s-kaupat.fi/ +https://extranet.s-pankki.fi/ +https://tunnistus.s-ryhma.fi +https://digili.s-cloud.fi/ +https://www.prisma.fi +www.kiwi.com +*.kiwi.com +*.skypicker.com +auth.skypicker.com +tequila.kiwi.com +www.kiwi.com/stories +jobs.kiwi.com +www.stanford.edu +bi.stanford.edu +accessories.stanford.edu +win.stanford.edu +cardinalprintcenter.stanford.edu +*.sahr.stanford.edu +ecm.stanford.edu +fasa.stanford.edu +secureportal.stanford.edu +regadmin.stanford.edu +ice.stanford.edu +iron.stanford.edu +campusmap.stanford.edu +code.stanford.edu +accounts.stanford.edu +authority.stanford.edu +idp.stanford.edu +login.stanford.edu +mydevices.stanford.edu +spdb.stanford.edu +sponsorship.stanford.edu +stanfordwho.stanford.edu +stanfordyou.stanford.edu +vault.stanford.edu +who.stanford.edu +workgroup.stanford.edu +netdb.stanford.edu +mailman.stanford.edu +portal.kkr.com +*.kkr.com +kkr.com +www.fskkradvisor.com +www.kkrfunds.com +*.kkr.cloud +www.kkrreit.com +www.kkresg.com +connect.8x8.com +sms.8x8.com +platform.8x8pilot.com +uc.8x8pilot.com +sso.8x8pilot.com +work-staging.8x8.com +user-profile-staging.8x8.com +*.8x8staging.com +platform.8x8.com +*.chalet.8x8.com +work.8x8.com +user-profile.8x8.com +voapi.8x8.com +*.superbet.ro +*.superbet.rs +moonpay.com +*.moonpaycloud.com +hypermint.com +*.hypermint.com +*.moonpay.com +*.AMERICA.GOV +*.DEVTESTFAN1.GOV +*.FAN.GOV +*.FSGB.GOV +*.IAWG.GOV +*.IBWC.GOV +*.OSAC.GOV +*.PEPFAR.GOV +*.PREPRODFAN.GOV +*.SECURITYTESTFAN.GOV +*.STATE.GOV +*.SUPPORTFAN.GOV +*.USCONSULATE.GOV +*.USDOSCLOUD.GOV +*.USEMBASSY.GOV +*.USMISSION.GOV +*.ELGUARDIA.NET +*.REWARDSFORJUSTICE.NET +*.onezerobank.com +https://www.engelvoelkers.com/ +https://login.engelvoelkers.com/* +https://www.engelvoelkers.com/search/* +https://www.engelvoelkers.com/owner-app/login/* +https://www.engelvoelkers.com/owner-app/agent/login/* +https://filewave.engelvoelkers.com/* +https://t-box.engelvoelkers.com/* +https://www.engelvoelkers.com/de/immobilie-bewerten/* +https://www.engelvoelkers.com/de-de/immobilie-verkaufen/* +https://master-data-service.engelvoelkers.com/* +https://leadhub.engelvoelkers.com/* +https://engelvoelkers.tech/* +*.boredapeyachtclub.com +*.yuga.com +*.yugalabs.io +*.otherside.xyz +*.meebits.app +*.cryptopunks.app +*.mdvmm.xyz +https://dookeydash.com/ +www.hotels.com +www.expedia.com +www.expediapartnercentral.com +www.vrbo.com +www.hotwire.com +www.hotwirepartnercentral.com +www.orbitz.com +www.ebookers.com +www.ebookers.fi +www.mrjet.se +www.expediapartnersolutions.com +www.carrentals.com +www.wotif.com +www.cheaptickets.com +www.lastminute.co.nz +www.lastminute.com.au +www.travelocity.com +www.travelocity.ca +www.expediacruises.com +www.expediaagents.com +www.abritel.fr +www.bookabach.co.nz +www.fewo-direkt.de +www.stayz.com.au +www.expediagroup.com +www.flights.com +*.expedia.com +*.hotwire.com +*.orbitz.com +*.hotels.com +*.homeaway.com +*.cheaptickets.com +*.travelocity.com +*.wotif.com +*.cruiseshipcenters.com +*.lastminute.com.au +*.carrentals.com +*.expediapartnercentral.com +*.abritel.fr +*.bookabach.co.nz +*.fewo-direkt.de +*.stayz.com.au +*.expediagroup.com +*.egadvertising.com +*.flights.com +*.hoteles.com +*.hoteis.com +*.vrbo.com +*.hotwirepartnercentral.com +*.ebookers.com +*.mrjet.se +*.expediapartnersolutions.com +*.ean.com +*.lastminute.co.nz +*.travelocity.ca +*.expediaagents.com +china.airasiago.com +thailand.airasiago.com +www.cruiseshipcenters.com/api/searchcenter +magiceden.io +coralcube.io +eng.magiceden.io +eng.magiceden.dev +*.varonis.com +blog.varonis.fr +blog.varonis.de +blog.varonis.br +blog.varonis.ru +blog.varonis.es +app.varonis.io/login +*.varonis.io +zerobounce.in +api.zerobounce.in +zerobounce.net +*.goteleport.com +*.gravitational.com +*.teleport.dev +teleport.sh +*.teleportinfra.sh +get.gravitational.io +h1-your-domain.teleport.sh +platform.teleport.sh +cloud.gravitational.io +*.gravitational.co +*.gravitational.io +www.divvyhomes.com +sso.shoplazza.com +myaccount.shoplazza.com +*.myshoplaza.com/openapi +*.myshoplaza.com/admin +partners.shoplazza.com +*.avalara.com +*.avalara.net +*.avalara.io +*.papercrane.io +*.inposia.com +*.netleglobal.com +*.crowdreason.com +*.track1099.com +*.3ce.com +*.davosalestax.com +*.ttrus.com +*.impendulo.com +*.intuit.com +*.turbotax.com +*.mint.com +*.quickbooks.com +*.mailchimp.com +resmed.com +resupply.resmed.com +myair.resmed.com +airview.resmed.com +onlinestore.resmed.com +account.resmed.com +u-sleep.umbian.com +Narval-easy.resmed.eu +careers.resmed.com +shop.resmed.com +resmed.co.uk +resmed.mx +resmed.com.br +resmed.lat +resmed.com.au +resmed.co.in +resmed.co.id +resmed.sg +resmed.hk +resmed.ph +resmed.vn +resmed.de +resmed.fr +resmed.nl +resmed.no +resmed.pt +resmed.dk +resmed.ch +resmed.la +resmed.com.cn +myair.resmed.eu +airview.resmed.eu +onlinestore.resmedchina.cn +resmedshop.de +resmed.es +resmed.jp +resmed-healthcare.de +http://provider.propellerhealth.biz +http://patient.propellerhealth.biz +https://propellerhealth.com +test.deribit.com +insights.deribit.com +pb.deribit.com +*.deribit.com +tools.deribit.com +metrics.deribit.com +abercrombie.com +hollisterco.com +app.strongdm.com +api.strongdm.com +*.sdm.network +www.strongdm.com +*.rivian.com +*.rivianservices.com +app.monarchmoney.com +www.monarchmoney.com +*.allegion.com +www.specadsystems.com +www.isonas.com +www.krytonitelock.com +www.republicdoor.com +www.schlage.com +www.fireglass.com +*.yonomi.co +www.trelock.com +www.simons-voss.com +www.interflex.de +www.gainsboroughhardware.com.au +www.fshlocking.com.au +www.allegion.co.uk +www.cisa.com +brio.com.au +brionz.com +briouk.com +briousa.com +www.bricard.com +www.axasecurity.com +www.ausloc.com +*.allegionengage.com +*.isonaspureaccesscloud.com +*.my-mobilekey.com +www.yonomi.com +www.interflex.com +www.normbau.de +https://www.poloniex.com +https://api.poloniex.com +https://m.poloniex.com +https://api2.poloniex.com +https://public.poloniex.com +read.amazon.com +alexaanswers.amazon.com +blueprints.amazon.com +creator.amazon.com +amazon.com/hz/mycd/* +a4k.amazon.com +developer.amazon.com/apps-and-games/* +developer.amazon.com/alexa/* +alexa.amazon.com +skills-store.amazon.com +www.amazon.com/photos/* +api.amazonalexa.com/* +https://www.amazon.com/luna/* +https://luna.amazon.com/* +https://knox.beta.blendlabs.com/ +royal.checksw.com +*.snch.org +*.southnassau.org +*.royalcanin.edu.pl +*.individualis.com +*.misregalosroyalcanin.es +*.moncse-royalcanin-siege.com +*.monespaceeleveur.fr +*.monespacetoiletteur.com +*.monespaceveto.com +*.myroyalcanin.gr +*.myroyalcanin.hu +*.myroyalcanin.ro +*.plataformaurinary.com +*.rcpracownik.pl +*.royalcanin.be +*.royalcanin.co.uk +*.royalcanin.cz +*.royalcanin.es +*.royalcanin.fr +*.royalcanin.it +*.royalcanin.nl +*.royalcanin.pl +*.royalcanin.pt +*.royalcanin.ro +*.royalcanin.sk +*.royalcaninconcorsi.it +*.royalcanin-pethealthday.com +*.royalcanin-vouchers.com +*.teile-deine-erfahrung-mit-royal-canin.com +*.tradetermsrc.com +*.wikichat.fr +*.wikichien.fr +*.eukanubasportingdog.com +*.royalcanin.ca +*.royalcaninfoodfinder.com +*.bibliotecarc.cl +*.coroapremiada.com.br +*.findroyalcanin.com +*.jornadasroyalcanin.com.ar +*.miroyalcanin.cl +*.miroyalcanin.com.ar +*.mivetshop.com.ar +*.royal-canin.co.za +*.royalcaninproductbook.com +*.royalcaninrewards.co.za +*.shoproyalcanin.com +*.vetschoice.co.za +*.tokensvc.com +blog.token.com +1337.or.id +nusastory.com +https://portfolio.metamask.io +*.emakina.group +*.emakina.com +*.emakina.ch +*.emakina.fr +*.emakina.us +business.linkedin.com +*.circle.com +*.cybavo.com +Tenable.cs +Tenable.asm +redeem.footballmanager.com +playhyenas.com +api.sandbox.gemini.com +docs.sandbox.gemini.com +exchange.sandbox.gemini.com +mobile.exchange.sandbox.gemini.com +mobile.sandbox.gemini.com +sandbox.gemini.com +static.sandbox.gemini.com +*.bandcamp.com +isitbandcampfriday.com +*.bcbits.com +*.amplitude-game.com +*.audicagame.com +*.dancecentral.com +*.dropmix.com +ps3-meta.rockband.com +www.rockband4.com +*.rockbandvr.com +*.singspacegame.com +*.harmonixmusic.com +*.hmxservices.com +*.hmxwebservices.com +fallguys.com +fortnite.com +hmxservices.com +harmonixmusic.com +www.data.gov +webhooks-api-experimental.codefi.network +http://portfolio.metamask.io +https://metamask-sdk-socket.metafi.codefi.network/ +jdisonline.com +johndeere.com +wirtgen-group.com +deere.com +bluerivertechnology.com +bearflagrobotics.com +johndeerecloud.com +starfirenetwork.com +johndeeretechinfo.com +jdisonsite.com +staging-sandbox.spark.ai +sandbox.spark.ai +spark.ai +staging.spark.ai +app.spark.ai +www.allpartsstore.com +allpartsstore.com +parts.deere.africa +deere.africa +kreiselelectric.com +sparkai.co +hagiegear.com +www.hagie.com +agrisync.com +johndeere.archivea.com +https://www.liteblue.usps.gov +hackerone-m1rtuq8orz.hbstaging.website +www.corebridgefinancial.com +*.corebridgefinancial.com +*.aig.co.jp +www.cropriskservices.com +cg.cropriskservices.com/CustomerGateway/Login?returnUrl=%2fCustomerGateway +services.aig.co.il +www.aig.co.il +sales.aig.co.il +www-1008.aig.com +www.rapidcover.ie +www-417.aig.ie +*.aig.ie +www.vfisu.com +www.vfisal.com +www.iafcf.org +https://app.spiketrap.io +https://www.spiketrap.io +customers.mattermost.com +*.electionintegrity.ohio.gov +cio.gov +cao.gov +cfo.gov +challenge.gov +citizenscience.gov +code.gov +consumeraction.gov +contractdirectory.gov +fedrooms.gov +firstgov.gov +fpc.gov +fpds.gov +fpki.gov +fpki-lab.gov +fsd.gov +us.gov +usagov.gov +ussm.gov +vote.gov +*.cao.gov +*.cfo.gov +*.citizenscience.gov +*.consumeraction.gov +*.contractdirectory.gov +*.data.gov +*.fai.gov +*.fedrooms.gov +*.firstgov.gov +www.fmi.gov +*.fpc.gov +*.fpds.gov +*.fpki.gov +*.fpki-lab.gov +*.fsd.gov +*.gsaadvantage.gov +*.identitysandbox.gov +*.idmanagement.gov +*.reginfo.gov +*.rocis.gov +*.sbst.gov +*.section508.gov +*.sftool.gov +*.us.gov +*.usa.gov +*.usagov.gov +*.ussm.gov +*.vote.gov +sam.gov +18f.gov +*.18f.gov +accessibility.gov +*.accessibility.gov +acquisition.gov +businessusa.gov +*.businessusa.gov +buyaccessible.gov +*.cloud.gov +http://fleet.gsa.gov/aiedecision/ +http://drivethru.gsa.gov/vfe.htm +http://smartpaybi.fas.gsa.gov/boe/bi/ +alpha2.sam.gov +pcscotus.gov +*.pcscotus.gov +saferfederalworkforce.gov +fascc.gsa.gov) +portal.forms.gov +submission.forms.gov +sign.forms.gov +api.forms.gov +portal-dev.forms.gov +submission-dev.forms.gov +sign-dev.forms.gov +api-dev.forms.gov +portal-test.forms.gov +submission-test.forms.gov +sign-test.forms.gov +api-test.forms.gov +beta.ocrtitlevi.gsa.gov +http://finance.ocfo.gsa.gov/defaultexternal/ +http://fmitservices-external.gsa.gov/paymentsearch +http://financeweb.gsa.gov/vendorpayment +http://finance.ocfo.gsa.gov/webvendors +http://extportal.pbs.gsa.gov/eoa +identitysandbox.gov +sbrc.gov +*.services.netlify.com +*.services-prod.nsvcs.net +internal.netlify.com +*.infra-prod.nsvcs.net +*.ops.netlify.com +netlify-cdp-loader.netlify.app +*.onegraph.com +screenshot-proxy.netlify.app +netlify-rum.netlify.app +list-v2--netlify-plugins.netlify.app +internal-docs.netlify.com +supportal.netlify.app +www.netlifycms.org +http://(yoursubdomain).sharefile.com/sf/v3/ +(youriwssubdomain).cloud.com +effecthouse.tiktok.com +partner.tiktokshop.com +shop.tiktok.com +live-backstage.tiktok.com +www.logitechg.com +www.logitech.com.cn +*.getmeetio.com +meetiobook.com +www.logicool.co.jp +logitechg.com.cn +gaming.logicool.co.jp +beta-cloud.acronis.com +www.superdrug.com +www.kruidvat.nl +www.kruidvat.be +www.iciparisxl.nl +www.iciparisxl.be +www.iciparisxl.lu +www.theperfumeshop.com +app.kruidvat.nl +app.kruidvat.be +app.iciparisxl.nl +app.iciparisxl.be +app.iciparisxl.lu +app.superdrug.com +api.superdrug.com +apptps.theperfumeshop.com +www.marionnaud.at +app.marionnaud.at +www.marionnaud.ch +app.marionnaud.ch +www.marionnaud.cz +app.marionnaud.cz +www.marionnaud.hu +app.marionnaud.hu +app.marionnaud.it +www.marionnaud.it +www.marionnaud.ro +app.marionnaud.ro +app.marionnaud.sk +www.marionnaud.sk +www10.pns.hk +api.pns.hk +www.pns.hk +mapi.moneyback.com.hk +www.moneyback.com.hk +mapi-sim.fortress.com.hk +www.fortress.com.hk +www10.watsons.com.tw +www.watsons.com.tw +api.watsons.com.tw +www10.watsons.com.sg +www.watsons.com.sg +api.watsons.com.sg +www10.watsons.com.ph +api.watsons.com.ph +www.watsons.com.ph +api.watsons.com.my +www.watsons.com.my +www10.watsons.com.my +www.watsons.com.hk +www10.watsons.com.hk +api.watsons.com.hk +www.watsons.co.th +www20.watsons.co.th +www10.watsons.co.th +www10.watsons.co.id +api.watsons.co.id +www.watsons.co.id +api-mcom.parknshop.com +api.watsons.co.th +https://www.kruidvat.nl/blog/ +https://www.kruidvat.be/blog/ +www.superdrugmobile.com +https://www.iciparisxl.nl/blog/ +https://www.iciparisxl.be/blog/ +https://www.iciparisxl.lu/blog/ +https://www.superdrug.com/blog/ +https://www.theperfumeshop.com/ie/blog/ +https://www.theperfumeshop.com/blog/ +https://apptps.theperfumeshop.com/ie/blog/ +https://apptps.theperfumeshop.com/blog/ +https://www.marionnaud.at/m-life/ +https://www.marionnaud.at/blog/ +https://www.marionnaud.ch/blog/ +https://www.marionnaud.ch/m-life/ +https://www.marionnaud.cz/blog/ +https://www.marionnaud.cz/m-life/ +https://www.marionnaud.hu/m-life/ +https://www.marionnaud.hu/blog/ +https://www.marionnaud.it/m-life/ +https://www.marionnaud.it/blog/ +https://www.marionnaud.ro/m-life/ +https://www.marionnaud.ro/blog/ +https://www.marionnaud.sk/m-life/ +https://www.marionnaud.sk/blog/ +https://www.kruidvat.nl/persoonlijk +https://wallet.polygon.technology/ +https://sentinel.matic.network/ +https://bridge-explorer.polygon.technology/ +https://bridge-api-node.matic.network +https://bridge-api.matic.network +https://burn.polygon.technology/ +https://mapper.polygon.technology/ +https://watchgod.polygon.technology/ +https://open-api.polygon.technology/ +https://faucet.polygon.technology/ +https://mnt.matic.network +https://multisig-wallet.polygon.technology/ +*.api.matic.network +https://insuletid.com/ +prod.omnipodapps.com +prod-internal.omnipodapps.com +prod.omnipodcloud.com +prod-device.omnipodcloud.com +eu-prod-internal.omnipodapps.com +eu-prod.omnipodapps.com +eu-prod-device.omnipodcloud.com +eu-prod.omnipodcloud.com +aprms.insulet.com +eu-aprms.omnipodapps.com +smile.amazon.* +flex.amazon.* +logistics.amazon.* +org.amazon.* +primenow.amazon.* +pay.amazon.* +fresh.amazon.* +photos.amazon.* +prime.amazon.* +music.amazon.com +manufacturing.amazon.* +freight.amazon.* +shopbylook.amazon.* +affiliate-program.amazon.com +track.amazon.com +api.amazon.com +manufacturing.amazon.com +http://www.amazon.com/cpe/yourpayments/wallet +https://www.amazonpay.in/* +https://www.amazon.in/wealth/* +https://amazonpay.amazon.in/* +cloud.digitalocean.com +api.digitalocean.com +marketplace.digitalocean.com +do.co +hacktoberfest.com +www.digitalocean.com +hackathon-tracker.digitalocean.com +https://www.glassdoor.com/* +https://api.glassdoor.com/* +https://help.glassdoor.com/* +*.highrolling.nu +reservations.all-inclusive.marriott.com +https://gatewaydsapdev2.marriott.com/ +https://dcfgatewaytst1.marriott.com/ +https://gatewaydsaptst1.marriott.com/ +mi.bookmarriott.com +https://gatewaydsaptst2.marriott.com/ +www.ritzcarlton.com/ +*uat.marriott.com +clean.marriott.com +http://www.shopmarriott.com +giftcards.marriott.com +go.topcoder.com +prow.k8s.io +kubernetes.io +*.8x8cloud.net +MoMo-App01.mtn.com.af +MoMo-App02.mtn.com.af +MoMo-staging.mtn.com.af +MoMo-Reporting.mtn.com.af +gh-pr-db01.mtngh.root.net +gh-pr-db02.mtngh.root.net +AC2-myMTN-DB01.mtngh.root.net +AC2-myMTN-DB02.mtngh.root.net +gh-pr-rpt01.mtn.com.gh +ac1-mymtn-app01.mtngh.root.net +AC1-myMTN-APP02.mtngh.root.net +ac1-mymtn-stg.mtngh.root.net +ac1-mymtn-rpt01.mtngh.root.net +AC1-myMTN-RPTDB.mtngh.root.net +AC1-myMTN-APP03.mtngh.root.net +ac2-mymtn-app01.mtngh.root.net +ac2-mymtn-app02.mtngh.root.net +AC2-myMTN-APP03.mtngh.root.net +ac2-mymtn-rpt01.mtngh.root.net +ac2-mymtn-db-01.mtngh.root.net +ac2-mymtn-db-02.mtngh.root.net +ac1-mymtn-db-01.mtngh.root.net +ac1-mymtn-db-02.mtngh.root.net +AC2-myMTN-APP05.mtngh.root.net +AC2-myMTN-APP04.mtngh.root.net +NLAMYARVA01.mtn.co.za +NLAMYARVA02.mtn.co.za +FLAMYARVS01.mtn.co.za +FLAMYARVS02.mtn.co.za +NLAMYARVU01.mtn.co.za +FLAMYARVD01.mtn.co.za +FLAMYARVB01.mtn.co.za +FLAMYARVB02.mtn.co.za +FLAMYARVS09.mtn.co.za +FLAMYARVS10.mtn.co.za +FLAMYARVT01.mtn.co.za +NLDMYARVA01.mtn.co.za +NLDMYARVA02.mtn.co.za +FLDMYARVB01.mtn.co.za +FLDMYARVB02.mtn.co.za +comic.pixiv.net +dic.pixiv.net +novel.pixiv.net +cysiv.com +app.command.cysiv.com +CALLCENTER-JOBS.CO +HOURLY-JOBS.NET +HOURLYJOBSONLINE.COM +HOURLYJOBSTODAY.COM +JOBAL.IN +JOBALIE.COM +JOBALIGN.COM +JOBALIGN.INFO +JOBALIGN.NET +JOBALINE-DATA.COM +JOBALINE.CO +JOBALINE.COM +JOBALINE.INFO +JOBALINE.NET +JOBALINECI.COM +jobalinedemo.com +jobalinesandbox.com +JOBALINESTAGING.COM +WAREHOUSE-JOB.US +welcomeclient.com +wotcprocessor.com +wotcprocessor.info +wotcprocessor.net +wotcprocessor.org +efficeintforms.com +efficienthire.com +efficienthire.info +efficienthire.net +efficienthire.org +efficientwotc.com +efhire.com +efwotc.com +EHXFORMS.COM +ehxhr.com +help.equifax.com +ntcusa.com +wotctech.com +wotcprocessor.us +nationaltaxcredit.com +github.com +BE-THE-AMERICAN-DREAM.US +BE-THE-AMERICAN-DREAM.ORG +BE-THE-AMERICAN-DREAM.net +BE-THE-AMERICAN-DREAM.COM +www.getaroom.com +press.priceline.com +http://api.smartsheet.com/2.0 +book.cheapcaribbean.com +holidays-au.fijiairways.com +holidays-fj.fijiairways.com +holidays-hk.fijiairways.com +holidays-sg.fijiairways.com +holidays-us.fijiairways.com +images2.triseptsolutions.com +res.marivalresidences.globalbookingsolutions.com +res.nowresorts.com +res.sunscaperesorts.com +res.treasureisland.globalbookingsolutions.com +res.vacations.buschgardens.com +res.vacations.sesameplace.com +vacations.hotelcasavelas.com +vacations.loscabos.grandvelas.com +vacations.travelimpressions.com +vacations.velasvallarta.com +www.blueskytours.com +www.cheapcaribbean.com +www.globalhotelchoices.com +www.marktravel.com +www.triseptsolutions.com +blueskytours.globalbookingsolutions.com +booking.cheapcaribbean.com +booking.beachbound.com +book.beachbound.com +book.extraholidaysvacations.com +booking.amrcollection.com/premium/groupindex.html?idgruppo=9437&dcgruppo=1151&linguaint=eng&id_stile=18303 +holidays-nz.fijiairways.com +res.breathlessresorts.com +res.dreamsresorts.com +res.en.travelbrandsagent.com +res.funjet.com +res.marival.globalbookingsolutions.com +res.secretsresorts.com +res.skyteam.com +res.vacations.discoverycove.com +res.vacations.seaworld.com +vacations.universalstudioshollywood.com +vacations.us.palladiumhotelgroup.com +vacations.vallarta.grandvelas.com +www.funjet.com +www.universalorlandovacations.com +www.wynnvacations.com +www.amrcollection.com +www.beachbound.com +book.applevacations.com +book.booktandl.com +login.en.travelbrandsagent.com +login.fr.travelbrandsagent.com +login.www.vaxvacationaccess.com +media.triseptsolutions.com +new.www.vaxvacationaccess.com +res.blueskytours.globalbookingsolutions.com +res.fr.travelbrandsagent.com +res.southwestvacations.com +res.universalorlandovacations.com +res.vacations.united.com +res.vacations.universalstudioshollywood.com +res.zoetryresorts.com +reservations.wynnvacations.com +rezagent.triseptsolutions.com +shop.wyndhamvacationownership.trisept.travel +vacations.grandclass.grandvelas.com +vacations.outrigger.com +vacations.rivieramaya.grandvelas.com +www.triseptapi.com +www.triseptdemo.com +vacations.united.com +www.applevacations.com +com.fanduel.android.live +*racing.fanduel.com +tvg.com +4njbets.tvgnetwork.com +www.tvg.com +b2b.tvgnetwork.com +ia.tvg.com +login-4ngbets.us.betfair.com +login.pabets.tvg.com +login-ia.tvg.com +login.tvg.com +m.4njbets.tvg.com +mobile-prod.tvg.com +pabets.tvg.com +promos.tvg.com +service.tvg.com +us.tvg.com +www.4njbets.com +casper.com +legacy.casper.com/admin +legacy.casper.com +https://rocket.chat/ +https://cloud.rocket.chat/ +https://github.com/rsksmart/rsk-powhsm/ +manage.blockscore.com +api.blockscore.com +*.reposify.com +*.grab-sure.com +gifts.grab.com +com.blendr.mobile +www.alvosec.com +dns.alvosec.com +cloud.alvosec.com +mail.alvosec.com +proton-api.alvosec.com +*.yelp.com +*.yelp-support.com +*.yelpwifi.com +yelptop100.com +werken.belastingdienst.nl +ca.store.ui.com +me.store.ui.com +wiki.ui.com +contributor.stock.adobe.com +www.hoteltonight.com +t.co +http://github.com/cloudflare +dash.teams.cloudflare.com +one.dash.cloudflare.com +*.cloudflarepartners.com +*.coinbase.com +www.quip.com +*.quip.com +hackerone.com +api.hackerone.com +www.hackerone.com +errors.hackerone.net +*.Mckesson.com +*.mckesson.* +https://www.*mongodb.com/* +mongodb.live/* +adlnet.gov +aftac.gov +altusandc.gov +businessdefense.gov +cmts.gov +cnss.gov +ctoc.gov +cttso.gov +dc3on.gov +defense.gov +fehrm.gov +fvap.gov +iad.gov +ioss.gov +itc.gov +iwtsd.gov +jccs.gov +mojavedata.gov +mtmc.gov +mypay.gov +nationalresourcedirectory.gov +nbib.gov +nrd.gov +nro.gov +nrojr.gov +nsa.gov +nsep.gov +oea.gov +oldcc.gov +tak.gov +tswg.gov +usandc.gov +af.edu +afit.edu +armyuniversity.edu +armywarcollege.edu +cdse.edu +dau.edu +dcita.edu +dlielc.edu +dliflc.edu +dodea.edu +ndu.edu +nps.edu +usafa.edu +uscga.edu +usma.edu +usmcu.edu +usmma.edu +usna.edu +usnwc.edu +usuhs.edu +westpoint.edu +www.marionnaud.fr +app.marionnaud.fr +www.watsons.com.tr +app.watsons.com.tr +blog.watsons.com.tr +preprod1.grindr.com +node.e2ro.com/* +api-user.e2ro.com/* +www.saaslio.com +app.saaslio.com +demo.saaslio.com +https://staking-api.polygon.technology/ +app.raisable.org +api.raisable.org +*.merck.com +*.msd.com +http://dashboard.returnly.com/ +https://TEST-STORE-SUBDOMAIN.returnly.com/ +injob.indriver.com +super-services.indriverapp.com +intercity-*.eu-east-1.indriverapp.com +priority.eu-east-1.indriverapp.com +profile-api.eu-east-1.indriverapp.com +watchdocs.indriverapp.com +messenger.eu-east-1.indriverapp.com +ab-platform-api.eu-east-1.indriverapp.com +truck-api.eu-east-1.indriverapp.com +new-order.eu-east-1.indriverapp.com +file-storage-front.eu-east-1.indriverapp.com +https://payroll.razorpay.com +https://x.razorpay.com/ +terra-*.indriverapp.com +sigmacare.com +mealtracker.com +soneto.net +careanyware.com +pro.opensea.io +idp.int.identitysandbox.gov +idp.staging.login.gov +secure.login.gov +node1.pivcac.staging.login.gov +node1.pivcac.prod.login.gov +www.opn.ooo +*.superbet.com +*.banfieldassets.com +*.banfieldexchange.com +*.banfieldfoundation.com +*.banfieldpetexpress.com +www.fidelityworkplace.com +www.myfidelitysolutions.com +https://connect.lumiradx.com/api/uk/router/v8.1/ +https://connect.lumiradx.com/api/uk/reports/v8.1/ +https://connect.lumiradx.com/api/uk/quantumsync/v8.1/ +https://connect.lumiradx.com/api/uk/consult/v8.1/ +https://connect.lumiradx.com/api/uk/connectmanager/v8.1/ +https://ringtune.mtn.co.za/ +https://dep.mtn.co.za/ +https://www.mtn.co.za/home/help/content/mtn-chat +https://www.mtn.co.za/Pages/esim.aspx +http://nlaolsrvq02.mtn.co.za:8006/rest/atg/v1/device/MTNSite +https://ringtune.mtn.co.za +https://www.mtn.co.za/home/pulse/ +https://www.evod.co.za +http://gamerplus.mtn.co.za +https://www.mtn.co.za/shop/deals/devices +https://portals-preprod.mtn.co.za:443 +https://www.mtn.co.za/shop/upgrades/ +https://www.mtn.co.za/gobozza +https://www.mtn.co.za/home/ +https://digitalpartners.mtn.co.za/ +https://www.mtn.co.za/insurance/ +https://www.mtn.co.za/insurance/claims +https://www.mtn.co.za/insurance/device-cover/ +https://nofunds.mtn.co.za/ +https://econnect-preprod.mtn.co.za/business/employee-connect +https://www.mtn.co.za/business/self-service/login +https://www.mtn.co.za/shop/deals/devices/prepaid +https://www.mtn.co.za/business/ebu-prepaid/agent +https://www.mtn.co.za/business/shop/login +https://mtnapp.mtn.co.za +https://mtnid-preprod.mtn.co.za:443 +www.mtn.co.za/business/ebu-prepaid/agent +www.mtn.co.za/business/shop/login +www.mtnbusiness.co.za/ +www.mtn.co.za/home/blackfriday/perl/io +www.mtnbusiness.co.za/en/Pages/MSTeams-Direct-Routing.aspx/43331 +https://portalsso.mtn.co.za +https://www.mtn.co.za/recharge/ +https://mycontract.mtn.co.za/landing/landing +https://www.mtn.co.za/shop/new/ +https://www.mtn.co.za/shop/addlines/ +https://play.mtn.co.za +https://www.mtnbusiness.co.za/ +https://www.mtn.co.za/home/blackfriday/perl/io +https://www.mtnbusiness.co.za/en/Pages/MSTeams-Direct-Routing.aspx/43331 +https://portalsso.mtn.co.za/ +maxcldapp.net +nicetryapril.na1.echosignsandbox.com +*.windstreamsmallbusiness.com +*broadviewnet.com +https://www.windstream.com/gokinetic +we.windstream.com +https://www.windstream.com +*.cartus.com +https://collaborazioni.lumiradx.com/ +https://parcerias.lumiradx.com/ +https://jira-quantum.lumiradx.com/ +https://wiki-quantum.lumiradx.com/ +https://jama.lumiradx.com/ +https://av.lumiradx.com/era/webconsole/ +https://connect.lumiradx.com/factory +https://investors.lumiradx.com/ +8x8.force.com +manage.fastly.com +docs.fastly.com +http://skinport.com/blog/ +http://miro.com/app +http://miro.com/blog +connect.svb.com +lendx.svb.com +https://svbbpm.svbconnect.com/suite/sites/gco-dashboard +api.svb.com +www.cipherbio.com +staking.xdefi.io +app.xdefi.io +www.s-pankki.fi +www.s-kaupat.fi +extranet.s-pankki.fi +tunnistus.s-ryhma.fi +digili.s-cloud.fi +www.prisma.fi +http://www.kiwi.com/stories +www.engelvoelkers.com +dookeydash.com +http://www.cruiseshipcenters.com/api/searchcenter +http://app.varonis.io/login +narval-easy.resmed.eu +provider.propellerhealth.biz +patient.propellerhealth.biz +propellerhealth.com +www.poloniex.com +api.poloniex.com +m.poloniex.com +api2.poloniex.com +public.poloniex.com +knox.beta.blendlabs.com +checksw.com +www.windstream.com +www.photoaffections.com +www.gifts.com +www.cafepress.com +www.canvasworld.com +www.mycustomcase.com +portfolio.metamask.io +dashboard.razorpay.com +api.razorpay.com +checkout.razorpay.com +invoices.razorpay.com +payroll.razorpay.com +x.razorpay.com +http://ro.co/pharmacy +http://ro.co/mind +http://ro.co/derm +http://ro.co/spermkit +botstore.automationanywhere.com +southfields-v2.s02.t00-csglobal.a2develop.com +tenable.cs +tenable.asm +krisp.ai +account.krisp.ai +api.krisp.ai +teams.krisp.ai +download.krisp.ai +analytics.krisp.ai +upld.krisp.ai +whatsnew.krisp.ai +help.krisp.ai +help-jp.krisp.ai +jobs.krisp.ai +resources.krisp.ai +contact.krisp.ai +url5145.krisp.ai +judge.me +shop.judge.me +woocommerce-adapter.judge.me +bigcommerce-adapter.judge.me +cache.judge.me +www.evernote.com +http://www.jfrog.com/confluence +http://www.jfrog.com/jira +www.xvideos.com +www.xvideos.red +www.xnxx.com +gold.xnxx.com +www.trafficfactory.com +main.trafficfactory.biz +iv.usps.com +id.usps.com +gateway.usps.com +reg.usps.com +pi.usps.com +retail-pi.usps.com +store.usps.com +internationalclaims.usps.com +ncoa.usps.gov +moversguide.usps.com +http://special.usps.com/testkits +www.liteblue.usps.gov +http://www.aiglife.co.uk/insurance/cbs +http://www.aiglife.co.uk/insurance/sbs +http://www.aiglife.co.uk/insurance/directline/lifeinsurance/ +http://www.aiglife.co.uk/insurance/natwest/productselection +http://www.aiglife.co.uk/insurance/ybs +http://www.aiglife.co.uk/insurance/churchill/lifeinsurance/ +http://www.aiglife.co.uk/insurance/rbs/productselection +http://www.aiglife.co.uk/insurance/ulsterbank +http://cg.cropriskservices.com/customergateway/login?returnurl=%2fcustomergateway +collaborazioni.lumiradx.com +parcerias.lumiradx.com +jira-quantum.lumiradx.com +wiki-quantum.lumiradx.com +jama.lumiradx.com +www.lumiradx.com +investors.lumiradx.com +app.spiketrap.io +www.spiketrap.io +http://member-qa.chime.com/users/sign_in +http://member-qa.chime.com/enroll/#/account +prod-cloud.hookupdating.mobi +prod-realtime.hookupdating.mobi +cdn.hookupdating.mobi +console.huddatingapp.com +demo.openmage.org +http://bitso.com/alpha +http://o0pv3l7chl.execute-api.us-east-1.amazonaws.com/dev +notification.billing.appservices.mendix.com +core.yoti.com +api.yoti.com +ccloud.yoti.com +code.yoti.com +www.yotisign.com +frankd.yoti.com +http://www.logitech.com/my-account +simplepoll.rocks +hackerone.affirm-odin.com +direct-hackerone.affirm-odin.com +vcn-hackerone.affirm-odin.com +account.mackeeper.com +clario.co +api.account.clario.co +adblocking.clario.co +chat-crm.clario.co +chat.clario.co +crm.clario.co +dcs.clario.co +dl.clario.co +event.clario.co +inapp.clario.co +static-cdn.clario.co +updater.clario.co +updatetracker.clario.co +webapi.clario.co +yapi.clario.co +mackeeper.com +www.bitwala.com +app.bitwala.com +www.nuri.com +app.nuri.com +wallet.polygon.technology +staking-api.polygon.technology +bridge-explorer.polygon.technology +bridge-api.matic.network +burn.polygon.technology +mapper.polygon.technology +watchgod.polygon.technology +open-api.polygon.technology +faucet.polygon.technology +insuletid.com +www.omnipod.com +169.254.169.254 +www.32red.com +apps.wellness.dev.lifeomic.com +lifeology.dev.lifeomic.com +http://apps.dev.lifeomic.com/phc +http://apps.dev.lifeomic.com/precision-ocr +http://api.dev.lifeomic.com/graphql +mtn.co.za +mtn.com.af +mtn.bj +mtn.cm +mtncameroon.net +mtncongo.net +mtn.ci +mtn.com.gh +irancell.ir +lonestarcell.com +mtnonline.com +mtn.co.rw +mtn.sd +mtn.co.sz +mtn.co.ug +mtnzambia.co.zm +mtnbusiness.com.ng +mtnblog.co.za +mtnplay.co.za +mtnzakhele.co.za +momo-app01.mtn.com.af +momo-app02.mtn.com.af +momo-staging.mtn.com.af +momo-reporting.mtn.com.af +ac2-mymtn-db01.mtngh.root.net +ac2-mymtn-db02.mtngh.root.net +ac1-mymtn-app02.mtngh.root.net +ac1-mymtn-rptdb.mtngh.root.net +ac1-mymtn-app03.mtngh.root.net +ac2-mymtn-app03.mtngh.root.net +ac2-mymtn-app05.mtngh.root.net +ac2-mymtn-app04.mtngh.root.net +nlamyarva01.mtn.co.za +nlamyarva02.mtn.co.za +flamyarvs01.mtn.co.za +flamyarvs02.mtn.co.za +nlamyarvu01.mtn.co.za +flamyarvd01.mtn.co.za +flamyarvb01.mtn.co.za +flamyarvb02.mtn.co.za +flamyarvs09.mtn.co.za +flamyarvs10.mtn.co.za +flamyarvt01.mtn.co.za +nldmyarva01.mtn.co.za +nldmyarva02.mtn.co.za +fldmyarvb01.mtn.co.za +fldmyarvb02.mtn.co.za +ringtune.mtn.co.za +dep.mtn.co.za +https://www.mtn.co.za/pages/esim.aspx +www.evod.co.za +gamerplus.mtn.co.za +digitalpartners.mtn.co.za +nofunds.mtn.co.za +mtnapp.mtn.co.za +http://www.mtn.co.za/business/ebu-prepaid/agent +http://www.mtn.co.za/business/shop/login +www.mtnbusiness.co.za +http://www.mtn.co.za/home/blackfriday/perl/io +http://www.mtnbusiness.co.za/en/pages/msteams-direct-routing.aspx/43331 +portalsso.mtn.co.za +play.mtn.co.za +www.datastax.com +downloads.datastax.com +docs.datastax.com +astra.datastax.com +https://svn.filezilla-project.org/svn/filezilla3/trunk/src/putty +datapod-2-ingest.acceptance.forescoutcloud.net +datapod-2-query.acceptance.forescoutcloud.net +datapod-1-ingest.production.forescoutcloud.net +datapod-1-query.production.forescoutcloud.net +mgmtpod-1-dashboard.production.forescoutcloud.net +mgmtpod-1.production.forescoutcloud.net +datapod-1-100-druid-ingest.testing.forescoutcloud.net +http://logstash-props.devicecloud.production.forescoutcloud.net/api/v1/properties +http://backend-api.devicecloud.production.forescoutcloud.net/api/v1/settings +http://datapod-1-druid-ingest.production.forescoutcloud.net/v1/upload +http://mgmtpod-1.production.forescoutcloud.net/oauth/token +http://datapod-1-druid-query.production.forescoutcloud.net/v2/query/grouptogroup +http://datapod-1-druid-query.production.forescoutcloud.net/v2/query/firstreporttimeentry +http://datapod-1-druid-query.production.forescoutcloud.net/v2/query/iplist +http://datapod-1-druid-query.production.forescoutcloud.net/v3/matrixoverview +http://datapod-1-druid-query.production.forescoutcloud.net/v3/query/overlappingzones +http://datapod-1-druid-query.production.forescoutcloud.net/v1/query/agg +http://datapod-1-druid-query.production.forescoutcloud.net/v1/polling +http://datapod-1-druid-query.production.forescoutcloud.net/v2/query/overlappinggroups +http://datapod-1-druid-query.production.forescoutcloud.net/v2/matrixoverview +http://datapod-1-druid-query.production.forescoutcloud.net/v3/query/zonetozone +http://datapod-1-druid-query.production.forescoutcloud.net/v2/deletestatus +http://datapod-1-druid-query.production.forescoutcloud.net/v2/query/ips/bysrc +http://datapod-1-druid-query.production.forescoutcloud.net/v2/service-list +http://datapod-1-druid-query.production.forescoutcloud.net/v2/query/ips/bydst/details +http://datapod-1-druid-query.production.forescoutcloud.net/v2/services +chain.link +accounts.creditkarma.com +www.creditkarma.ca +api.creditkarma.com +help.creditkarma.com +blog.creditkarma.com +support.creditkarma.ca +http://legacy.casper.com/admin +matomo.cloud +chaturbate.com +billingsupport.chaturbate.com +secure.chaturbate.com +rocket.chat +cloud.rocket.chat +auth.crypto.com +merchant.crypto.com +testnet-croeseid-4.crypto.org +bounty-node.rsk.co +securitytxt.org +edoverflow.com +bugbountyguide.com +parrotlinux.org +help.nextcloud.com +usercontent.apps.nextcloud.com +projects.nextcloud.com +lookup.nextcloud.com +knowledge.nextcloud.com +surveyserver.nextcloud.com +static.apps.nextcloud.com +apps.nextcloud.com +updates.nextcloud.com +docs.nextcloud.com +crm.nextcloud.com +support.nextcloud.com +scan.nextcloud.com +lists.nextcloud.com +portal.nextcloud.com +push-notifications.nextcloud.com +customerupdates.nextcloud.com +auth.nextcloud.com +logs.nextcloud.com +stats.nextcloud.com +nextcloud.com +download.nextcloud.com +pushfeed.nextcloud.com +newsletter.nextcloud.com +moneybird.com +moneybirdstorage.com +http://h1-your-domain.zendesk.com/sell +http://vimeo.com/ondemand +http://vimeo.com/api +http://vimeo.com/create +www.gojek.com +portal.gosend.id +gocorp.gojek.com +gofood.co.id +gosend.id +go-tix.id +https://github.com/evolveum/midpoint +https://hq.upserve.com +https://github.com/gsa/datagov-deploy +https://github.com/gsa/data.gov +manage.data.gov +18f.gsa.gov +processaccess.kkr.com +https://8x8.vc/xmpp-websocket +https://webrtc.8x8.com/ +banfieldexchange.com +banfieldfoundation.org +marsbettertogetherfund.org +banfield.us +express.8x8.com +www.six-group.com +api.sonantic.io +app.sonantic.io +label-studio-public.sonantic.io +heardle.app +waf.cumulusfire.net +apigw.foliofn.com +api.foliofn.com +formant.dev.bearflagrobotics.com +gitlab.bearflagrobotics.com +gitlab.prod.bearflagrobotics.com +hvc.bearflagrobotics.com +www.bearflagrobotics.com +hb-backend-public.dev.bearflagrobotics.com +securitytrails.com +http://nlaolsrvq02.mtn.co.za:8006/rest/atg/v1/device/mtnsite +https://www.mtnbusiness.co.za/en/pages/msteams-direct-routing.aspx/43331 +https://1app.mtn.co.za +https://mtnmomoagent.mtn.co.za/ +https://www.mtn.co.za/home/help/content/bill-and-payments +https://www.mtn.co.za/insurance/portal +http://gamerplus.mtn.co.za/ +https://www.evod.co.za/ +blog.playcanvas.com +code.playcanvas.com +developer.playcanvas.com +forum.playcanvas.com +launch.playcanvas.com +login.playcanvas.com +msg.playcanvas.com +playcanvas.com +relay.playcanvas.com +rt.playcanvas.com +store.playcanvas.com +playcanv.as +hackerone.live +matrix.redditspace.com +hv-mtl.com +lifetouch.com +jcpportraits.com +prestigeportraits.com +preschoolsmiles.com +shutterfly.com +www.borrowlenses.com +tinyprints.com +snapfish.com +snapfish.de +snapfish.fr +snapfish.ie +snapfish.it +snapfish.co.uk +snapfish.com.au +snapfish.co.nz +photo.walgreens.com +http://www.cvs.com/photo/ +www.spoonflower.com +admin.spoonflower.com +staging.spoonflower.com +https://www.creditkarma.com/reviews/ +alpha.api.praxispad.de +apple.api.praxispad.de +kundenservice.api.praxispad.de +produktion.api.praxispad.de/ +referenzkunden.api.praxispad.de +teststellung.api.praxispad.de +vertrieb.api.praxispad.de +app.medifox-therapie.de/ +www.planopunkt.com +zentra.co +blog.spoonflower.com +api.grofers.com +api2.grofers.com +blinkit.com +addons.allizom.org +accounts.firefox.com +bugzilla.mozilla.org +developer.mozilla.org +profiler.firefox.com +vpn.mozilla.org +relay.firefox.com +monitor.firefox.com +hubs.mozilla.com +uploads-prod.reticulum.io +api.profiler.firefox.com +hello.dev.myhubs.net +www.mozilla.org +phabricator.services.mozilla.com +zodia.studio +wallet.oasis.io +status.oasis.io +http://emerald.oasis.dev +http://grpc.oasis.dev +http://rosetta.oasis.dev/api/mainnet +http://sapphire.oasis.io +web.grindr.com +corporate.abercrombie.com +zebratradeinprogram.com +marketo.com +traum-ferienwohnungen.de +preprod.oyorooms.ms +http://patron.oyo.com/blog/in +contile.services.mozilla.com +merino.services.mozilla.com +firefox.settings.services.mozilla.com +api.agrisync.com +app.agrisync.com +crm-connector.agrisync.com +cs-admin.agrisync.com +dc-service.agrisync.com +dev-api.agrisync.com +dev-app.agrisync.com +dev-crm-connector.agrisync.com +dev-cs-admin.agrisync.com +dev-dc-service.agrisync.com +dev-diagnostics.agrisync.com +dev-ms-vendors1.agrisync.com +dev-ss-dashboard.agrisync.com +dev-vhb.agrisync.com +dev-vnd.agrisync.com +dev-web.agrisync.com +diagnostics.agrisync.com +feedback.agrisync.com +help.agrisync.com +idt.agrisync.com +links.help.agrisync.com +ms-vendors1.agrisync.com +ms-voicehub.agrisync.com +np-idt.agrisync.com +np-zeus.agrisync.com +stage-api.agrisync.com +stage-app.agrisync.com +stage-crm-connector.agrisync.com +stage-cs-admin.agrisync.com +stage-dc-service.agrisync.com +stage-diagnostics.agrisync.com +stage-ms-vendors1.agrisync.com +stage-vhb.agrisync.com +stage-vnd.agrisync.com +stage-web.agrisync.com +status.agrisync.com +vhb.agrisync.com +vnd.agrisync.com +www.agrisync.com +zeus.agrisync.com +api.ukrn.io +auth-adm.ukrn.io +auth.ukrn.io +c.ukrn.io +casino.ukrn.io +crm.ukrn.io +feed.ukrn.io +m.ukrn.io +noti.ukrn.io +quest.ukrn.io +socket.ukrn.io +sysops.ukrn.io +trader.ukrn.io +trans.ukrn.io +u.ukrn.io +utils.ukrn.io +virtual.ukrn.io +cashier-r.unikrn.com +cashier-w.unikrn.com +cashier.unikrn.com +help.unikrn.com +promotions.unikrn.com +unikrn.ly +static.unkrn.com +aus5.mozilla.org +mondelezinternational.com +www.cadbury.com.au +amea.mondelezinternational.com +ar.mondelezinternational.com +au.mondelezinternational.com +br.mondelezinternational.com +cn.mondelezinternational.com +eu.mondelezinternational.com +gdpr-readiness-kit.mondelezinternational.com +http://in.mondelezinternational.com/home +id.mondelezinternational.com +in.mondelezinternational.com +ir.mondelezinternational.com +jp.mondelezinternational.com +mx.mondelezinternational.com +my.mondelezinternational.com +negotiations.mondelezinternational.com +ng.mondelezinternational.com +ph.mondelezinternational.com +ru.mondelezinternational.com +th.mondelezinternational.com +tr.mondelezinternational.com +trendreport.mondelezinternational.com +ua.mondelezinternational.com +vn.mondelezinternational.com +za.mondelezinternational.com +cadbury.co.uk +cookbook.cadbury.co.uk +fun.cadbury.co.uk +hideandfind.cadbury.co.uk +jubilee.cadbury.co.uk +makeit.cadbury.co.uk +makeityours.cadbury.co.uk +qr.easter.cadbury.co.uk +register.cadbury.co.uk +services.cadbury.co.uk +survey.cadbury.co.uk +worldwidehide-manutd.cadbury.co.uk +worldwidehide.cadbury.co.uk +donutmuffin.milka.de +edeka.milka.de +kaufland.milka.de +milka.de +mmmax.milka.de +mueller.milka.de +rewe.milka.de +services.milka.de +www.milka.de +de.oreo.eu +delivery.oreo.eu +fr.oreo.eu +nl.oreo.eu +oreo.eu +playwithoreo.oreo.eu +shop.oreo.eu +tournezlaroue.fr.oreo.eu +5ka.alpengold.me +alpengold.me +kz.alpengold.me +magnit.alpengold.me +perekrestok.alpengold.me +uz.alpengold.me +x5.alpengold.me +awaywins.cadburyfc.com +cadburyfc.com +captain.cadburyfc.com +matchandwin.cadburyfc.com +superstriker.cadburyfc.com +ticketing.cadburyfc.com +winaday.cadburyfc.com +co.oreo-la.com +ec.oreo-la.com +gt.oreo-la.com +oreo-la.com +pa.oreo-la.com +pe.oreo-la.com +rd.oreo-la.com +xn--80abwto.xn--p1ai +xn--80agpnh5a.xn--80abwto.xn--p1ai +xn--80ajpngj0i.xn--80abwto.xn--p1ai +xn--d1ababplg1ak.xn--80abwto.xn--p1ai +xn--e1aaatbxcjcll.xn--80abwto.xn--p1ai +xn--h1abcjhbnel.xn--80abwto.xn--p1ai +xn--l1adbbf.xn--80abwto.xn--p1ai +cocoalife.org +de.cocoalife.org +es.cocoalife.org +fr.cocoalife.org +pt.cocoalife.org +fcmilka.de +gold.fcmilka.de +star.fcmilka.de +tippspiel.fcmilka.de +www.gold.fcmilka.de +cadbury.ie +store.worldwidehide.cadbury.ie +womensfootball.cadbury.ie +worldwidehide.cadbury.ie +agencywire.mdlzapps.com +contactus.mdlzapps.com +http://secure-na1.mdlzapps.com/collectionadmin +winaday-cadburyfc-netstg.mdlzapps.com +game.milka.bg +go.milka.bg +milka.bg +potursinejnostta.milka.bg +5ka.milka.ru +magnit.milka.ru +milka.ru +promo.milka.ru +blog.perfectsnacks.com +dev.perfectsnacks.com +perfectsnacks.com +wholesale.perfectsnacks.com +fr.philadelphia.be +nl.philadelphia.be +philadelphia.be +taste.philadelphia.be +belvita.com.au +woolworths.belvita.com.au +www.belvita.com.au +cadbury.co.nz +hiddenegg.cadbury.co.nz +mothersday.cadbury.co.nz +bot.cadburygifting.in +cadburygifting.in +www.cadburygifting.in +choclairs.com +goldenticket.choclairs.com +rewards.choclairs.com +deliciousdisplay.co.uk +loyalty.deliciousdisplay.co.uk +www.deliciousdisplay.co.uk +bontasenzasegreti.fattorieosella.it +fattorieosella.it +missionebonta.fattorieosella.it +gratistesten.lu-original.de +lu-original.de +www.gratis-testen.lu-original.de +175ans.lu.fr +lu.fr +preuvesdamour.lu.fr +milka.at +mmmax.milka.at +zartstattzwider.milka.at +detoutcoeuraveclesbleus.milka.fr +miamourembourse.milka.fr +milka.fr +cautatandretea.milka.ro +milka.ro +tandretea.milka.ro +110birthday.oreo.com +oreo.com +magnit.oreo.ru +oreo.ru +x5.oreo.ru +cashback.philadelphia-professional.de +order-service.philadelphia-professional.de +philadelphia-professional.de +de.philadelphia.ch +fr.philadelphia.ch +philadelphia.ch +fruitfight.sourpatchkids.com +sourpatchkids.com +cadbury.com.au +worldwidehunt.cadbury.com.au +chipsahoyart.prizelogic.com +meijeroreo110.prizelogic.com +nabiscobiggame.prizelogic.com +resultsonline.rssl.com +rssl.com +services-mw.rssl.com +health-pro.snackmindful.com +snackmindful.com +www.snackmindful.com +admin.tettrungthu.vn +cdn.tettrungthu.vn +tettrungthu.vn +lenta.vkusnobonus.ru +referal.vkusnobonus.ru +vkusnobonus.ru +belvita.life +lenta.belvita.life +belvitabreakfast.com +www.belvitabreakfast.com +cadbury.co.za +worldwidehide.cadbury.co.za +bot.cadbury.com.my +www.zip.cadbury.com.my +fr.clifbar.ca +www.clifbar.ca +annual-report.clifbar.com +www.clifbar.com +philadelphia.co.nl +taste.philadelphia.co.nl +fr.cotedor.be +nl.cotedor.be +dirtkitchensnacks.com +www.dirtkitchensnacks.com +enjoylifefoods.com +www.enjoylifefoods.com +mondelez-nabiscominions.promo.eprize.com +mondelez.promo.eprize.com +freia.no +services.freia.no +goutezlavictoire.ca +or.goutezlavictoire.ca +apolo.hellojoy.es +catalogo.hellojoy.es +loteriadelicje.pl +www.loteriadelicje.pl +klubbkakan.marabou.se +marabou.se +mdlzfoodservice.com +www.mdlzfoodservice.com +cloud.mdlzinsights.com +mdlzinsights.com +gewinnspiel.mikado.tv +mikado.tv +milka.be +www.milka.be +milka.com +shop.milka.com +milka.cz +soutez.milka.cz +milka.sk +sutaz.milka.sk +oreo.co.uk +store.oreo.co.uk +batman.oreo.com.br +www.oreo.com.br +orosaiwa.it +qr.orosaiwa.it +fuehl-dich-gut.philadelphia.de +philadelphia.de +desayunadisfrutando.philadelphia.es +philadelphia.es +dimomentoinmomento.philadelphia.it +philadelphia.it +pequenosalmocos.philadelphia.pt +philadelphia.pt +philadelphiaprofessional.co.uk +www1.philadelphiaprofessional.co.uk +ritzcrackers.com +www.ritzcrackers.com +shopforbournvita.com +www.shopforbournvita.com +ricettacercasi.sottilette.it +sottilette.it +stimorol.ch +win-v6.stimorol.ch +sigamoscompartiendo.suchard.es +suchard.es +gold.tasteglory.ca +tasteglory.ca +toblerone.co.uk +www.toblerone.co.uk +fr.v6-labs.ch +v6-labs.ch +xn--80agpnh5a.xn--90aiakgkqi1l.xn--p1ai +xn--90aiakgkqi1l.xn--p1ai +84.254.8.25 +7days.com +5starnothingcoin.com +5ka-mdlz.ru +162.117.253.211 +86.110.245.26 +86.110.242.75 +40.112.91.212 +anevetessport.hu +back2school-gewinnspiel.at +barni.org +barniadventures.com +barnipromo.ro +base-mondelez-ag.fr +basketballgamingpromotion.com +bassettsvitamins.co.uk +beldent.com.ar +beldent.com.uy +belvita.eu +belvita.pl +belvitapromo.ro +bg.barniworld.com +biskuatacademy.com +bolachasprince.pt +bournville.in +boxofjoy.gr +brumikobjavitel.sk +brumikobjevitel.cz +cadbury.one +cadbury5stardonothinglegends.com +cadburycelebrationsgifting.com +cadburycelebrationsmyfirstrakhi.com +cadburycricket.in +cadburycustomer.com.au +cadburydonateyourkit.co.nz +cadburyfavourites.co.nz +cadburyfavourites.com +cadburygems.in +cadburygiftsdirect.co.uk +cadburyperktakeitlight.com +cadburypurpleheart.in +cadburyworld.co.uk +cadouritandre.ro +cafollowyourart.com +candybarencasa.com +capaofruit.com +caramilk.ca +caramilksalted.ca +caramilkseldemer.ca +cerealitas.com.ar +cheeseanything.com +cheesecakeperfect.ro +chipita.com +chipsahoy.es +chipsahoy.pt +ciasteczkowe.pl +clight.com.mx +clorets.jp +cloretsthailand.com +cotedor-chocolat.fr +cotedor.com +cotedor.it +cotedor.nl +cotedorgifts.com +createatreat.com +ct-hopp.interlogservices.com +ct-hopp.interlogsolutions.net +dairylea.co.uk +declaratiedetandrete.ro +dentyne.com +dessertscorner.com +digitalaccelerator-mdlz.com +diji-touch.com +dirolplay.com +discoverteddy.com +egyedimilka.hu +ejackson.co.uk +enjoylifefoods.sharepoint.com +experienciashalls.pt +fattorieosella.com +fidorka.cz +figaro.cz +figaro.sk +fineti.com +first.com.tr +fontaneda.es +fonzies.it +freiahjemmekonditori.no +freiasjokoladetester.no +fundraising.co.nz +fundraising.com.au +ganacontridentyhalls.es +gemscashback.com +generasitiger.com +gethalls.ca +gethalls.com +giveandgo.com +goodthins.com +gourmetfood.com.au +greenandblacks.co.uk +gustaredetop.ro +gustulcalatoriei.ro +halls.jp +halls.win +hallsbreathofthailand.com +hallsdarkcherry.com +hallsminiscameo.com +harmony.info +haztudiadelicioso.com +holidayoreorecipes.com +hollywood-chewinggum.fr +http://cadburychocobakesshop.in/cadburychocobakes/231403 +http://cadburyfusefit.in/cadburyfuse/223405 +http://mobilapresentkort.se/marabougram +http://shopfororeo.com/in/oreo/231505 +http://triscuit.connecting-food.com/en/triscuit/original +http://wbbsgfx.com/tagroller +indd.adobe.com +ingoodcompany.eco +jello.com.mx +jeubelin.com +jeuhollywood.fr +jocca.it +kimberleysbakeshoppe.com +lacta.com.br +lacta.gr +learnwithbournvita.com +leo.be +lescollationsdete.ca +letschatsnacks.com +liga.nl +lilaliebtgruen.at +lojamondelez.com.br +loteriamilka.pl +loteriasan.pl +lu.be +lu.nl +luprince.be +luprince.nl +madbury.in +makeitcadbury.co.uk +marabou.dk +marabou.fi +marabougram.se +maraboupremium.dk +maraboupremium.fi +maraboupremium.se +masonstbakehouse.com +mavieencouleurs.fr +mdlzcollaboration.com +mdlzcusthelp.ca +mdlzcusthelp.com +mdlzfreerackpromo.com +mdlzmysales.com +mdlznutritionscience.com +mdlzvendtray.com +meinebackkreation.de +mezclaydisfruta.com.ar +mibodegamondelez.pe +mikado.com +milka-promo.bg +milka-promo.com.ua +milka.ba +milka.cl +milka.com.pl +milka.com.tr +milka.es +milka.hr +milka.hu +milka.it +milka.nl +milka.rs +milka.ua +milkacrema-pruebagratis.es +milkamagicaleaster.be +milkaslovenija.com +milkatiregala.it +miracelwhip-mayo.de +miracelwhip.de +mitiendamondelez.com +mlflow.infra.uat.mdlz-matilda-predictive.com +molto.gr +mondelez-foodservice.co.uk +mondelezcanadafoodservice.ca +mondelezdeutschlandprofessional.de +mondelezfoodservice.com.mx +mondelezfoodsolutions.com.br +mondelezgrowthprogram.com +mondelezinternationalfoodservice.com +mondelezinternationalnutritionscience.com +mondelezkinhdo.com +mondelezpro.fr +mozartkugel.at +mwtr.com +nabiscodunksweepstakes.com +nabiscoxbox.com +nientaltrochebonta.it +nocoe.live-website.com +noiloiyeume.luvietnam.com +notjustacadburyad.com +nu-tavlar-vi.se +nussbeisser.pl +nutavlarvi.se +nyerjakedvenceiddel.hu +nyerjakekszekkel.hu +nyerjamilkaval.hu +oboy.fi +oboy.no +oboy.se +opavia.info +opavia180.com +oplatky-kolonada.cz +oplatky-kolonada.sk +oreo.at +oreo.com.ar +oreo.com.uy +oreo.gr +oreo.promo +oreo.pt +oreo110.ca +oreoacademy.es +oreobirthday.oreo.my +oreocookie.jp +oreodzienojca.pl +oreoitalia.it +oreomuhely.hu +oreoplay.in +oreoplaypack.in +oreopromociones.es +oreorecipes.com +pepitos.com.ar +philadelphia-professional.it +philadelphia.cl +philadelphia.co.uk +philadelphia.com.mx +philadelphia.dk +philadelphia.fi +philadelphia.fr +philadelphia.gr +philadelphia.ie +philadelphia.no +philadelphia.ro +philadelphia.se +philly.com.au +phillytisgefsis.gr +playpadwebar.com +premiumcrackers.jp +pressplaywithoreo.com +princedelu.fr +princepolo.pl +principe.es +promofield.pe +promoterrabusi.com.ar +promotion.pascall.co.nz +ramadanpromo.tang.in +readmytwirl.com +realrewardscafe.com +recaldent-gum.com +recetasconpremio.es +resipiraya.cadburyoreo.com.my +returns.kent.com.tr +ritzcrackers.jp +royalcontigo.com +salesapps.cloud.mdlz.net +salesapps.mdlz.com +servicesalimentairesmondelezcanada.ca +shopforcadburydairymilk.in +shopforcadburysilk.com +sjokoladehus.no +slowreleasecarbs.com +smartlabel.mondelez.info +snackfutures.com +snackworks.ca +snackworks.com +sobremesasroyal.pt +solucionesmondelez.com +spinspan.gr +sportszelet.hu +stimorol.be +stimorol.nl +suchard.at +suchard.bg +svogeshokoladi.bg +tang.com.ar +tang.com.br +tang.com.mx +tang.com.uy +tangonampromo.com +tangparatodos.com +tatesbakeshop.com +tbd.com +theworthycrumb.com +tiendamondelez.com.ar +toblerone.ch +toblerone.fr +togetherwefan.com +tojaskeresojatek.hu +trebor.co.uk +trident.com.mx +tridentfestivais.pt +tridentgum.com +tridentpromo.eu +triscuit.com +triunfo.pt +tuc.be +tuc.eu +tuc.fun +tuc.nl +tuctime.it +tusituc.ro +twobite.ca +unclewallys.com +vajickobrani.cz +vitasnellabakery.it +vyhrajscoop.cz +vykotulanesibalstvo.sk +vykutalenarostarna.cz +wheatthins.com +wielkanocneszukajki.pl +www.backtoschool-gewinnspiel.at +www.cadburygoodluckgirls.in +www.clifbar.be +www.clifbar.co.nz +www.clifbar.co.uk +www.clifbar.com.au +www.clifbar.de +www.clifbar.es +www.clifbar.fi +www.clifbar.fr +www.clifbar.nl +www.clifbar.pt +www.clifbar.se +www.dorminyeremenyjatek.hu +www.fattorioesella.com +www.fc-milka.de +www.foodservice-snacks-desserts.com +www.fuehl-dich-gut.philadelphia.at +www.ippayments.com.au +www.lunafest.org +www.mannkitayyari.in +www.mdlzsalessolutions.com +www.nabiscobiggame.com +www.oreothailand.com +www.qr-codes.royal.eu +youdeserveaflakemoment.com +ziz.be +www.sokos.fi +api.sokos.fi +web.tide.co +api.tide.co +login.tide.co +app.tide.co +api.tideplatform.in +www.tide.co +cdgcitizen.com +www.greenandblacks.co.uk +ring.com/* +api.ring.com/* +fw.ring.com/* +app.ring.com/* +admin.ring.com/* +nw.ring.com/* +oauth.ring.com/* +billing.ring.com/* +prd-ring-web-us.prd.rings.solutions +*.immedia-semi.com/* +*.blinkforhome.com/* +cdgfossil.com +fossilcare.com +fossilcrm.com +fossilgroup.com +linkplatforms.com +misfitwearable.com +smartwatchstations.com +aqtooling.com +aquiris.com.br +aquiris.studio +aquiristech.com +ballistic.com +ballistic.com.br +buckingfuggy.com +hc2services.com +hc2tooling.com +horizonchase.com.br +horizonchase.com +horizonchaseturbo.com +playwonderbox.com.br +playwonderbox.com +wonderboxapi.com +wonderboxdev.com +docs.zebra.com +downloads.zebra.com +blogs.zebra.com +brand.zebra.com +connect.zebra.com +creative.zebra.com +design.zebra.com +domore.zebra.com +global.zebra.com +greece.zebra.com +hcm.zebra.com +http://dev-developer.zebra.com +http://dev-partnercentral.zebra.com/ +http://dev-partnerportal.zebra.com/ +http://developer.zebra.com +http://pi.zebra.com +http://qa-chimera.zebra.com +http://qa-developer.zebra.com +http://qa-docs.zebra.com +http://qa-downloads.zebra.com +http://qa-medialibrary.zebra.com +http://qa-proximity.zebra.com +http://qa-signup.zebra.com +http://qa-www.zebra.com +http://solutionspathway.zebra.com +http://stage-chimera.zebra.com +http://stage-developer.zebra.com +http://stage-docs.zebra.com +http://stage-downloads.zebra.com +http://stage-proximity.zebra.com +http://stage-signup.zebra.com +http://test-creative.zebra.com/ +http://test-design.zebra.com/ +http://test-greece.zebra.com/ +http://test-hr.zebra.com/ +http://test-learning.zebra.com/ +http://test-learningportal.zebra.com/ +http://www.aag.zebra.com/ +http://www.brand.zebra.com/ +http://www.global.zebra.com/ +supportcommunity.zebra.com +zsbsupport.zebra.com +stage-www.zebra.com +test-api.zebra.com +test-marketing-api.zebra.com +takeback.zebra.com +docs.launchdarkly.com +circolocorecords.com/ +www.wildwoodcasino.net +snowplowanalytics.com +next.snowplowanalytics.com +console.snowplowanalytics.com +try.snowplowanalytics.com +docs.snowplow.io +snowplow.io +iglucentral.com +poplindata.com +cloud8.8x8.com +https://vpoconfig.tools.prod.appriss.com +www.wearehackerone.com +mta-sts.wearehackerone.com +oauth.deriv.com +api.deriv.com +fossil.com.vn +geminiadvisory.io +hatching.io +tria.ge +kolesa.kz +m.kolesa.kz +api.kolesa.kz +app.kolesa.kz +id.kolesa.kz +getpocket.com +cloud.coinbase.com +app.debtbook.com +sources.debtbook.com +uat.debtbook.com +www.mercadolibre.cl +api.mercadolibre.com +api.mercadopago.com +www.mercadolibre.com.ar +www.mercadolibre.com.co +www.mercadolibre.com.mx +www.mercadolibre.com.pe +www.mercadolibre.com.uy +www.mercadolivre.com.br +www.mercadopago.cl +www.mercadopago.com.ar +www.mercadopago.com.br +www.mercadopago.com.co +www.mercadopago.com.mx +www.mercadopago.com.pe +www.mercadopago.com.uy +brightree.net/ +capturingreality.com +location.services.mozilla.com +staking-uat.codefi.network +admin.shopify.com +cpaglobal.ru +authorconnect-webofscience.com +authorconnectwebofscience.com +authorconnectwebofscience-list.com +compumark.app +compumark.asia +compumark.at +compumark.biz +compumark.blog +compu-mark.ca +compumark.cc +compumark.cf +compumark.ch +compumark.club +compumark.co +compumark.co.in +compumark.co.kr +compu-mark.com +compumark.com +compumark.com.au +compumark.com.br +compumark.com.cn +compumark.com.es +compumark.co.nz +compumark.co.uk +compumark.cz +compumark.de +compumark.dev +compumark.dk +compumark.es +compumark.eu +compumark.fr +compumark.ga +compumark.gay +compumark.gq +compumark.in +compumark.info +compumark.it +compumark.jp +compumark.kr +compumark-markmonitor.biz +compumark-markmonitor.com +compumark-markmonitor.co.uk +compumark-markmonitor.info +compumark-markmonitor.net +compumark-markmonitor.org +compumark.me +compumark.net +compumark.org +compumark.page +compumark.pl +compumark.pro +compumark.ru +compumarks.com +compumark.se +compumark.tech +compumark.top +compumark.uk +compumark.us +compumark.xxx +compumark.xyz +computer-central.com +consultingdrg.com +consultingdrgroup.com +corporate-intelligence.com +corporateintelligence.com +corporate-intelligence.net +corporateintelligence.net +corporate-intelligence.org +corporateintelligence.org +cpagolbal.com +cpa-inproma.biz +cpainproma.biz +cpa-inproma.com +cpainproma.com +cpainproma.co.uk +cpa-inproma.info +cpainproma.info +cpa-inproma.net +cpainproma.net +cpa-inproma.org +cpainproma.org +cpainproma.uk +cpa-inprostart.biz +cpainprostart.biz +cpa-inprostart.com +cpainprostart.com +cpainprostart.co.uk +cpa-inprostart.info +cpainprostart.info +cpa-inprostart.net +cpainprostart.net +cpa-inprostart.org +cpainprostart.org +cpainprostart.uk +cpa-inprotech.biz +cpainprotech.biz +cpa-inprotech.com +cpainprotech.com +cpainprotech.co.uk +cpa-inprotech.eu +cpa-inprotech.info +cpainprotech.info +cpa-inprotech.net +cpainprotech.net +cpa-inprotech.org +cpainprotech.org +cpainprotech.org.uk +cpainprotech.uk +cpaintellevate.com +cpa-memostart.biz +cpamemostart.biz +cpa-memostart.com +cpamemostart.com +cpamemostart.co.uk +cpa-memostart.info +cpamemostart.info +cpa-memostart.net +cpamemostart.net +cpa-memostart.org +cpamemostart.org +cpamemostart.org.uk +cpamemostart.uk +cpa-memotech.biz +cpamemotech.biz +cpa-memotech.com +cpamemotech.com +cpamemotech.co.uk +cpa-memotech.eu +cpa-memotech.info +cpamemotech.info +cpa-memotech.net +cpamemotech.net +cpa-memotech.org +cpamemotech.org +cpamemotech.uk +cpa-memotech.us +derwent.app +derwent.at +derwent.be +derwent.biz +derwent.blog +derwent.cc +derwent.cf +derwent.ch +derwent.club +derwent.co +derwent.co.in +derwent.co.kr +derwent.com +derwent.com.mx +derwent.co.uk +derwent.co.za +derwent.cz +derwentdataanalyser.com +derwentdataanalyzer.com +derwent.de +derwent.dev +derwent-drug-file.com +derwent.fr +derwent.ga +derwent.gay +derwent-geneseq.com +derwentgeneseq.com +derwent-genseq.com +derwent.gq +derwent.in +derwent.info +derwentinnovation.com +derwent-innovations-index.com +derwentinnovationsindex.com +derwent.it +derwent.jp +derwentlearning.com +derwent.me +derwent.mobi +derwentnavigator.com +derwent.page +derwent.se +derwentsequencebase.com +derwentsurveyor.com +derwent.top +derwent.uk +derwent-wda.com +derwentwda.com +derwentworldpatentsindex.com +derwentwpi.com +derwent.xyz +dev-scholarone.com +discoverderwent.com +drgabacus.biz +drgabacus.co +drgabacus.com +drgabacus.co.uk +drgabacus.info +drgabacus.net +drgabacus.org +drg-adaptive.com +drgadaptive.com +drgadaptive.info +drgadaptive.net +drgadaptive.org +drgadaptivesoftware.com +drgadaptivesoftware.info +drgadaptivesoftware.net +drgadaptivesoftware.org +drg.am +drganswers.com +drgapps.com +drgaws.com +drg.bz +drgcensusinfo.com +drgco.com +drgconferences.com +drgconsult.com +drg-consulting.com +drgconsultingservices.com +drgdeveloper.com +drg.digital +drgdigital.com +drggateway.com +drgguest.com +drg.healthcare +drginsight.com +drgknowsacos.com +drgknowsoncology.com +drg-labs.com +drgmedtech.com +drgoncology.com +drgpatientjourney.com +drgpayersandproviders.com +drgplatform.com +drgprofessionalservices.com +drgresearch.com +drgroupconsulting.com +drgsites.com +drgspeakers.com +drgtrainingprograms.com +endnote360.com +endnote360.net +endnote360.org +endnote.app +endnote.at +endnote.biz +endnote.ca +endnote.ch +endnote.co.in +end-note.com +endnote.com +end-note.com.au +endnote.com.au +endnote.co.nz +endnote.dev +endnote.es +endnote.eu +endnote.fi +endnote.fr +endnote.ie +endnote.in +endnote.info +endnote.jp +endnote.kr +endnote.me +endnote.net +endnote.org.uk +endnote.page +endnote.pl +endnoter.com +endnote.ru +endnote.se +endnote.software +endnote-students.com +endnote.support +endnote.training +endnote.tw +endnote.us +endnoteweb.com +endnote-x7.at +endnote-x7.de +endnote-x8.at +endnote-x8.de +endnote-x9.at +endnote-x9.de +endnote.xxx +endnote.xyz +fipnews.com +fipx.com +first2file.com +first2file.net +first2file.org +firstofile.com +firstofile.net +firsttofile.com +firsttofile.co.uk +firsttofile.net +firsttofile.org +firsttofile.uk +foundationip.com +foundationip.eu +foundationipnews.com +ftfapp.net +ftftech.com +ftftech.info +ftftech.net +ftftechnologies.com +ftftechnologies.info +ftftechnologies.net +ftftechnologies.org +ftftech.org +incopat.asia +incopat.beer +incopat.biz +incopat.city +incopat.cloud +incopat.cn +incopat.co +incopat.com +incopat.com.cn +incopat.cool +incopat.design +incopat.fit +incopat.fun +incopat.gold +incopat.group +incopat.icu +incopat.info +incopat.ink +incopat.kim +incopat.life +incopat.live +incopat.love +incopat.ltd +incopat.luxe +incopat.mobi +incopat.name +incopat.net +incopat.net.cn +incopat.online +incopat.org +incopat.org.cn +incopat.plus +incopat.press +incopat.pro +incopat.pub +incopat.red +incopat.ren +incopat.run +incopat.shop +incopat.show +incopat.site +incopat.space +incopat.store +incopat.tech +incopat.today +incopat.tv +incopat.video +incopat.wang +incopat.website +incopat.wiki +incopat.work +incopat.world +incopat.xn--55qx5d +incopat.xn--6qq986b3xl +incopat.xn--fiqs8s +incopat.xn--io0a7i +incopat.xn--xhq521b +incopat.xyz +incopat.yoga +inprotech.asia +inprotechlab.com +inprotechnews.com +inprowiki.com +ipfolio.cc +ipfolio.co +ipfolio.com +ipfolio.in +ipfolio.info +ipfolio.net +ipfolios.com +isiwebofscience.biz +isiwebofscience.com +isiwebofscience.info +isiwebofscience.net +journalcitationreports.biz +journalcitationreports.cn +journalcitationreports.com +journalcitationreports.com.cn +journalcitationreports.co.uk +journalcitationreports.de +journalcitationreports.info +journalcitationreports.net +journalcitationreports.org +journalcitationreports.ru +journalcitationreports.tk +journalcitationreports.uk +journalcitationreports.us +journalcitationreports.xxx +marketrack360.com +marketrack.net +mark-monitor.at +mark-monitor.be +mark-monitor.biz +mark-monitor.ca +mark-monitor.cc +mark-monitor.ch +mark-monitor.cn +mark-monitor.com +mark-monitor.com.au +mark-monitor.com.mx +mark-monitor.co.uk +mark-monitor.dk +mark-monitor.es +mark-monitor.eu +mark-monitor.info +mark-monitor.it +mark-monitor.mx +mark-monitor.net +mark-monitor.nl +mark-monitor.org +mark-monitor.ru +mark-monitor.tv +mark-monitor.us +mark-monitor.ws +markprobe.com +markpro.co.kr +markpro.com +markrnonitor.com +mdcip.com +memotechasp.com +memotech.biz +memotechis.com +memotechnews.com +msclinicaltrials.ca +myendnoteweb.com +myendoteweb.com +prod-compumark.com +scholaroneabstracts.com +scholaronebooks.com +scholarone.com +scholaronegrantsawards.com +scholaronemanuscripts.com +scholarone.net +scholarone.org +scholaroneproceedings.com +scholaroneproduction.com +scholarone.xxx +theipmanagementsystem.com +theipmanagementsystems.com +trademark-watching.biz +trademarkwatching.biz +trademarkwatching.com +trademarkwatching.co.uk +trademark-watching.info +trademarkwatching.info +trademark-watching.jp +trademarkwatching.net +trademarkwatching.org +trademarkwatching.org.uk +trademarkwatching.uk +unycom.at +unycom.com +unycom.de +unycom.eu +unycom.in +unycom.jp +unycom-online.com +unycom.us +webofscience.app +webofscience.asia +webofscience.at +webofscience-authorconnect.com +webofscienceauthorconnect.com +webofscienceauthorconnect-list.com +webofscience.be +webofscience.biz +webofscience.blog +webofscience.ca +webofscience.cf +webofscience.ch +webofscience.club +webofscience.co +webofscience.co.in +webofscience.co.kr +web-of-science.com +webofscience.com +webofscience.com.au +webofscience.com.cn +webofscience.com.mx +webofscience.co.nz +webofscience.co.uk +webofscience.co.za +webofscience.cz +webofscience.dev +webofscience.dk +webofscience.es +webofscience.eu +webofscience.fr +webofscience.ga +webofscience.gay +webofscience.gq +webofsciencegroup.asia +webofsciencegroup.at +webofsciencegroup.be +webofsciencegroup.biz +webofsciencegroup.ca +webofsciencegroup.cc +webofsciencegroup.cf +webofsciencegroup.ch +webofsciencegroup.cl +webofsciencegroup.club +webofsciencegroup.co +webofsciencegroup.co.in +webofsciencegroup.co.kr +webofsciencegroup.com +webofsciencegroup.com.ar +webofsciencegroup.com.au +webofsciencegroup.com.br +webofsciencegroup.com.mx +webofsciencegroup.com.pl +webofsciencegroup.com.tw +webofsciencegroup.co.nz +webofsciencegroup.co.uk +webofsciencegroup.co.za +webofsciencegroup.cz +webofsciencegroup.de +webofsciencegroup.dk +webofsciencegroup.es +webofsciencegroup.eu +webofsciencegroup.fi +webofsciencegroup.fr +webofsciencegroup.ga +webofsciencegroup.gr +webofsciencegroup.hk +webofsciencegroup.hu +webofsciencegroup.in +webofsciencegroup.info +webofsciencegroup.it +webofsciencegroup.jp +webofsciencegroup.kr +webofsciencegroup.me +webofsciencegroup.mobi +webofsciencegroup.mx +webofsciencegroup.net +webofsciencegroup.nl +webofsciencegroup.no +webofsciencegroup.org +webofsciencegroup.pl +webofsciencegroup.pt +webofsciencegroup.ro +webofsciencegroup.ru +webofsciencegroup.se +webofsciencegroup.sk +webofsciencegroup.tk +webofsciencegroup.top +webofsciencegroup.tv +webofsciencegroup.tw +webofsciencegroup.uk +webofsciencegroup.us +webofscience.in +webofscience.info +webofscience.it +webofscience.jp +webofscience.me +webofscience.mobi +webofscience.net +webofscience.nl +web-of-science.org +webofscience.page +webofscience.pl +webofscience.se +webofscience.uk +webofscience.us +webofscience.xyz +wila-derwent.com +03al1450.com +03mn1500.com +04ag1525.com +0510billing.com +05yo1560.com +09ek1225.com +100topinnovators.com +123demo-domainz.biz +123demo-domainz.com +123demo-domainz.co.uk +123demo-domainz.net +123demo-domainz.org +123efgdemo-domainz.net +123mmdemodomains.co.uk +123mmdemodomains.info +124mmdemodomains.info +1790.com +1790.net +1790.org +1registrytest.com +1st2file.com +1st2file.net +1stedit.com +247realmedia.fr +3dnma.com +6degreesofcitation.com +ab123domains.info +ab123domains.net +ab123domains.org +ab124domains.info +ab124domains.net +abacusdatamanagement.com +abacusint.com +abacusint.info +abacusvalue.com +abacusvalue.co.uk +aboutaxspa.ca +aboutproquest.com +aboutproquest.net +abstractcentral.com +academic-e-books.com +academichelp.com +academicvideoonline.com +academicvideostore.com +accelanation.com +acceleratingthepaceofinnovation.com +accesspolaris.com +acetheclass.com +acetheclass.net +acetheclass.org +acethecourse.com +acethecourse.net +acethecourse.org +aclasta.ca +activatenetwork.net +activatenetworks.net +adakveo.ca +adaptiverx.com +adaptivesoftware.com +adaptivesoftware.net +adaptsw.com +advancedpatents.com +advancedpatentsearch.com +advancedpatentservices.com +afinitor.ca +afinitor.com +afinitrac.ca +agll.com +ahfacademy.ca +aia-award.com +aidermoncoeur.ca +aimovigdirect.ca +aimovig-pro.ca +aimovigtraining.ca +aktistry.ca +aktor-kt.com +yourdomain.freshdesk.com +yourdomain.freshservice.com +http://yourdomain.myfreshworks.com/crm +yourdomain.freshchat.com +yourdomain.freshcaller.com +sync.services.mozilla.com +push.services.mozilla.com +crash-reports.allizom.org +crash-stats.allizom.org +iseeme.com +www.twistandmake.com +super6.skysports.com +itv7.itv.com +krisha.kz +m.krisha.kz +api.krisha.kz +app.krisha.kz +www.shopkatchin.com +https://www.mcgriff.com +https://www.gotapco.com +https://secure.gotapco.com +alecto.com +hg.mozilla.org +lando.services.mozilla.com +support.mozilla.org +*.mercedes-benz-trucks.com +*.mitsubishi-fuso.com +*.westernstar.com +*.bharatbenz.com +*.setra.de +*.daimlertruck.com +*evobus.com +*omniplus.com +*fleetboard.de +*fleetboard.com +firefox-ci-tc.services.mozilla.com +mozilla-pontoon-staging.herokuapp.com +stage.taskcluster.nonprod.cloudops.mozgcp.net +community-tc.services.mozilla.com +supersite.8x8.com +reader.egress.com +switch.egress.com +www.egress.com +fossil-staging2.cloud.akeneo.com +fossil.cloud.akeneo.com +http://www.findemand.in/dmdprod/ +fossilhk.com +fossilmy.com +www.fossilsg.com +https://smartstore.naver.com/fossilkorea +watchstationhk.com +www.watchstationindia.com +http://admin.mytva.com +http://tvaloans.com +http://energyright.com +http://tvasites.com +app.citushealth.com/ +www.citushealth.com +app.citushealth.ca +careers.fortmatic.com +shavar.services.mozilla.com +horizon-api.www.toblerone.co.uk +https://crypto.com/price +formassembly.com +aw.visa.com +bb.visa.com +bd.visa.com +bm.visa.com +bq.visa.com +cw.visa.com +ht.visa.com +www.visa.com.br +www.visa.com.mx +www.visa.com.tw +visa.com.ru +visa.com.au +www.visa.com.az +www.visa.com.cn +www.visa.com.cy +www.visa.com.ge +www.visa.com.hk +www.visa.com.hr +visa.com.jm +www.visa.com.kh +www.visa.com.kz +www.visa.com.lc +www.visa.com.lk +www.visa.com.ms +www.visa.com.my +www.visa.com.ng +www.visa.com.ph +www.visa.com.sg +www.visa.com.tr +visa.com.ua +www.visa.com.vn +www.visa.co.ao +visa.co.cr +www.visa.co.id +www.visa.co.il +www.visa.co.in +www.visa.co.jp +www.visa.co.ke +visa.co.ni +www.visa.co.nz +www.visa.co.th +www.visa.co.uk +www.visa.co.ve +visa.co.za +www.cybersource.com +www.authorize.net +www.cardinalcommerce.com +www.currencycloud.com +www.yellowpepper.com +www.fraedom.com +usa.visa.com +www.tink.com +avtoelon.uz +m.avtoelon.uz +api.avtoelon.uz +app.avtoelon.uz +id.avtoelon.uz +my.exness.com +pay.ibex.exchange +https://my.exness.com/webtrading/ +exnessaffiliates.com +https://my.exness.com/pa/socialtrading +https://my.exness.com/pa/pim/manager +pwapi.ex2b.com +exness.com +api.excalls.mobi +social-trading.exness.com +10x.redoxengine.com +testapp.redoxengine.com +testapi.redoxengine.com +docs.redoxengine.com +fhir.redoxengine.com +explore.redoxengine.com +www.redoxengine.com +help.redoxengine.com +www.tecno-mobile.com +www.boomplay.com +security.tecno.com +www.mobile-phantom.com +alecto.co.uk +alecto.net +alecto.us +alexanderst.com +alexanderstreet2.com +alexanderstreet4a.com +alexanderstreet4b.com +accounts.shi.com +api.shi.com +apiconsole.shi.com +assetinsights.shi.com +durango.shi.com +renewalreminder.shi.com +servicepro.shi.com +www.content.shi.com +www.shi.com +https://www.cxmlorderservice.shi.com/cxmlorderreceiptservice/cxmlorderreceiptservice.svc +v4.passwordless.dev +firefly.adobe.com +cargo.indrive.com +pay.8x8.com +app.cal.com +www.chime.com +wp-ci.chime.com +wp-dev1.chime.com +wp-dev2.chime.com +wp-dev3.chime.com +wp-dev4.chime.com +wp-dev5.chime.com +wp-integ.chime.com +wp-qa.chime.com +*.servicenow.com +*.service-now.com +discussions.topcoder.com +hiltonhotels.jp +paetec.net +api.greenfly.com +portal.greenfly.com +alexanderstreet4.com +alexanderstreet5.com +alexanderstreet6.com +alexanderstreet.com +alexanderstreet.co.uk +alexanderstreet.press +alexanderstreetpress.com +alidomaintest123.com +alldomiandsklaj.de +allicense.com +allresultsweb.fr +allwhois.asia +allwhois.biz +allwhois.com +allwhois.co.uk +alongsidems.ca +nba.com +wnba.com +2kleague.nba.com +bal.nba.com +cdn.nba.com +content-api-prod.nba.com +core-api.nba.com +gleague.nba.com +identity.nba.com +stats-trafficcop-prod.nba.com +teamportal.nba.com +api.cloudways.com +developers.cloudways.com +platform.cloudways.com +www.cloudways.com +api.enjinx.io +enjinx.io +x.com +johndeere.invisionapp.com +partsadvisor.deere.com +myjohndeere.deere.com +jdquote2.deere.com +jdwarrantysystem.deere.com +ccms.deere.com +salescenter.deere.com +developer.deere.com +jdlink.deere.com +myfinancialaccounts.deere.com +oca.deere.com +payload.deere.com +api-meubanco.deere.com +meubanco.deere.com +setup-builder.deere.com +map.deere.com +expertconnect.support +sustainability-programs.deere.com +www.deere.com +setup-builder-cert.deere.com +setup-builder-qual.deere.com +us-central-1.r4.abc.expertconnect.support +us-central-1.r4.xyz.expertconnect.support +aboitizpower.org +1882energyventures.com +1882energyventures.net +aboitizenergysolutions.com +aboitizpower.com.ph +aboitizpower.info +aboitizpower.net +aboitizpower.ph +aboitizpowercorporation.com.ph +aboitizpowercorporation.ph +aboitiztrading.com +adventenergy.com.ph +aesi.com.ph +apsiph.com +bettersolutions.com.ph +balambanenerzone.com +cleanergy.com.ph +cleanergy.ph +enerzone.com.ph +limaenerzone.com +mactanenerzone.com +prismenergy.com.ph +retailelectricity.com.ph +snaboitizpower.com +snap-res.com +subicenerzone.com +sustainablephilippines.com +veco.com.ph +visayanelectric.com.ph +visayanelectric.ph +anubhutiapi.deere.com +add-equipment.deere.com +equipment.deere.com +aktiawallet.fi +store.aktiawallet.fi +asuntolaina.aktiawallet.fi +lender.aktiawallet.fi +www.aktiawallet.fi +investors.aktia.com +phabricator.allizom.org +ai.picsart.com +aqbeerfest.com +aqwine.com +boardwalkfantasea.com +teammanager.deere.com +satpredictor2.deere.com +reflexisinc.com/ +zsl.zebra.com +wfc.zebra.com +cloud.nordlocker.com +app.nordpass.com +jdset.deere.com +api.picsart.com +content-discovery.picsart.io +video-api.picsart.io +revenue-tracking.picsart.io +demo.sdk.picsart.io +cdn-basic-content-api.picsart.io +t.picsart.com +stage.optifyr.com +optifyr.com +upload.picsart.com +console.picsart.io +defenceshare.mod.uk +api.gamma.redoxstage.com +app.gamma.redoxstage.com +blob.gamma.redoxstage.com +clientcert.gamma.redoxstage.com +dashboard.gamma.redoxstage.com +eets-sftp-listener.gamma.redoxstage.com +eets.gamma.redoxstage.com +evening-earth.gamma.redoxstage.com +gamma.redoxstage.com +launch.gamma.redoxstage.com +sftp.gamma.redoxstage.com +webhooks.gamma.redoxstage.com +academy.databricks.com +accounts.cloud.databricks.com +connect.databricks.com +databricks-prod-cloudfront.cloud.databricks.com +databricks-staging-cloudfront.staging.cloud.databricks.com +demo.cloud.databricks.com +docs.databricks.com +e.databricks.com +files.training.databricks.com +go.corp.databricks.com +gw1-ap.corp.databricks.com +gw1-eu.corp.databricks.com +gw1-us.corp.databricks.com +gw2-us.corp.databricks.com +help.databricks.com +homebrew-tap.dev.databricks.com +ideas.databricks.com +ideas.staging.databricks.com +info.databricks.com +kb.databricks.com +maintenance.databricks.com +pages.databricks.com +partners.databricks.com +pgg11o.hubspot.databricks.com +preferences.databricks.com +signup.cloud.mrkt.databricks.com +signup.dev.mrkt.databricks.com +sparkhub.databricks.com +support.databricks.com +unsubscribe.corp.databricks.com +vpn-us.corp.databricks.com +waf-test.corp.databricks.com +delta.io +docs.delta.io +spark-summit.org +staging.spark-summit.org +spark-portal.org +spark-summit.com +https://community.cloud.databricks.com/ +https://dbc-a1ba5468-749b.staging.cloud.databricks.com/ +contest.deere.com +ca.account.sony.com +my.account.sony.com +http://vdp.kahootz.com +varonis.net +oreostayplayful.com +orociokminions.it +loterianussbeisser.pl +ppsweeps.oreo.com +futisviikonloppu.marabou.fi +motngaytrungthusumvay.vn +giveasmile.belvitasnacks.com +saboresconjuego.es +bubbaloocity.com.mx +wirbackendas.milka.de +api.wisdomtreeprimeapp.com +brennersfest.com +chefsdinners.com +dungeonofdoomkemah.com +galvestonholidayinn.com +hunttinginn.com +kemahbeerfest.com +lilliesasiancuisine.com +r-u-i.com +pleasurepier.com +sanluisresort.com +muer.com +wildwoodcasino.net +goldennugget.com +thepostoak.com +thepostoakhotel.com +shoppostoak.com +tilmanfertitta.com +fertittaentertainmentinc.com +askpam.ai +account.deere.com +boysweb.shaya.com.tr +boyswebtest.shaya.com.tr +onlinepos.shaya.com.tr +opsassistbrandedsolutions.shaya.com.tr +pmp.shaya.com.tr +sbuxopsassist.shaya.com.tr +vpn.shaya.com.tr +ae.boots.com +bn.boots.com +kw.boots.com +qt.boots.com +sa.boots.com +ae.hm.com +eg.hm.com +kw.hm.com +qa.hm.com +sa.hm.com +ae.cos.com +kw.cos.com +sa.cos.com +ae.cosstores.com +kw.cosstores.com +sa.cosstores.com +ae.shopjustice.me +kw.shopjustice.me +sa.shopjustice.me +card.starbucks.com.kz +ccareapuat.alshaya.com +coms.carrier.alshaya.com +comsuat.carrier.alshaya.com +customercare.alshaya.com +dev.alshaya.com +devimages.alshaya.com +gtmsservice.alshaya.com +internaljobs.alshaya.com +jenkins.alshaya.com +jobsearch.alshaya.com +onlinestaffstore.alshaya.com +prodimages.alshaya.com +suppliertraining.alshaya.com +bakimonarim.shaya.com.tr +kuwait.kidzania.com +www.visionexpress.me +bsm.deere.com +dlrdoc.deere.com +johndeeretours.deere.com +partscatalog.deere.com +partscheckout.deere.com +shop.deere.com +stellarsupport.deere.com +timbermanager.deere.com +shop.wirtgen-group.com +services.wirtgen-group.com +portal.wirtgen-group.com +my.wirtgen-group.com +analyze.deere.com +connections.deere.com +crop-planner.deere.com +data-sync.deere.com +files.deere.com +geofence-manager.deere.com +land-manager.deere.com +machine-analyzer.deere.com +machinereports.deere.com +maintenance.deere.com +notifications.deere.com +products-manager.deere.com +registration.deere.com +rewards.deere.com +work-planner.deere.com +www.leather.io +simeji.me +facemojikeyboard.com +mediago.io +popin.cc +dubox.com +creativeappnow.com +simejiglobal.com +baidu.jp +smj.io +terabox.com +adzone.deere.com +advertising.deere.com +www.coinhako.com +help.coinhako.com +techpubs.deere.com +mww.zebra.engineering +mwwprod.zebra.engineering +http://eu.fs.viq.zebra.com/public-api +https://pp-dnacloud.zebra.com/ +www.matrox.com +dcs-polarion.zebra.com +www.practicalmoneyskills.com +www.practicalbusinessskills.org +www.practicalmoneyskills.org +rei.com +http://rei.com/rei-garage +http://rei.com/adventures +http://rei.com/learn/expert-advice +http://rei.com/events +manage-sandbox.gocardless.com +pay-sandbox.gocardless.com +api-sandbox.gocardless.com +connect-sandbox.gocardless.com +www.gocardless.com +oauth-sandbox.gocardless.com +xero-sandbox.gocardless.com +snaps.metamask.io +global-api.citymapper.com +app.theperfumeshop.com +api.theperfumeshop.com +api.iciparisxl.be +api.iciparisxl.lu +api.iciparisxl.nl +ai.planetart.com +portal.particlehealth.com +api.particlehealth.com +carequality.particlehealth.com +admin.particlehealth.com +ehealthexchange.particlehealth.com +ia.particlehealth.com +management.particlehealth.com +partner.particlehealth.com +sandbox.particlehealth.com +brightspeed.com +brightspeed.service-now.com +brightspeedtsm.service-now.com +gobrightspeed.net +neuralprisma.com +prismalabsteam.com +lensa-ai.com +prisma-ai.com +appapi.neuralprisma.com +https://simple-life-app.com/ +helpcenter.affirm.ca +helpcenter.affirm.com +developer.ayoba.me +microapps.ayoba.me +feed.ayoba.me +nofunds-sd.ayoba.me +cms.stg.ayoba.me +invite.ayoba.me +web.stg.ayoba.me +cms.ayoba.me +artifactory-us.zebra.com +cms.dev.ayoba.me +devcms.ayoba.me +ayoba.me +status.ayoba.me +trade-api.ayoba.me +trade.ayoba.me +api.ayoba.me +avatar.ayoba.me +media-cms.ayoba.me +sundowns-admin.ayoba.me +web.dev.ayoba.me +cdn.cms.ayoba.me +dynamic-cdn.cms.ayoba.me +games.ayoba.me +proxy.ayoba.me +sms.ayoba.me +stage.ayoba.me +static-cdn.cms.ayoba.me +sync.ayoba.me +voip.ayoba.me +vpn.ayoba.me +web.ayoba.me +simfy.co.za +simfy.africa +musictime.app +progressivetech.holdings +simfyafrica.mobi +ayo.ba +test.nicehash.com +https://test.nicehash.com/shop/ +https://test.nicex.com +nicex.com +https://api-test.nicex.com +https://api-test.nicehash.com +legacy.paystack.co +checkout.paystack.com +api.paystack.co +dashboard.paystack.com +http://diardemo.mdlzapps.com +mdlz-shop.fr +lubakery.co.uk +http://apps.mdlz.com +snackdisplay.co.uk +cadburydessertscorner.com +shopforcadbury.com +http://backoffice.cadburygifting.in +http://mcprod.tatesbakeshop.com +csrmdlz.in +http://mystore.mdlz.com +johndeereinnovation.com +www.johndeereinnovation.com +anubhutiapis.channel-dss-r1-anubhuti-prod-vpn.ap.e06.c01.johndeerecloud.com +http://qa.gbu-alert.com/ +http://ftp.lu.be +https://investorupdate.mondelezinternational.com/ +cadburytimeout.com +bakerypromo.milka.be +winter.lu.be +7days-promo.ro +schokohaus.milka.at +bbdr.sk +najljubsimilkaokus.si +winmetmilka.nl +nudge4mdlz.com +deliciouswishesgiftexchange.com +bbdr.cz +harmoniabanamehekkel.hu +favourites.milka.de +app.moderntreasury.com +cdn.moderntreasury.com +aven.com +my.aven.com +notary.aven.com +volans.tech +wga.volans.tech +admin.8x8.com +interseller.io +app.interseller.io +wiki.1337.or.id +www.insulet.com +test.nicex.com +zebra.cn. +pentesting.gethypr.com +pentesting3.gethypr.com +pentesting2.gethypr.com +hypr74352.gethypr.com +hypr37448.gethypr.com +http://tvadeposits.com +http://tvavirtual.com +http://green.mytva.com +academy-outbound-ads.tiktok.com +www.pangleglobal.com +https://devicetracker-released-internal-demo.firebaseapp.com/ +https://blog.blueapron.com/ +www.blueapron.com +http://www.blueapron.com/graphql +vision.johndeere.com +mail1.wspsecure.co.uk +skanska-secure-partner.co.uk +www.prolinx.co.uk +castigatandrete.ro +dealerlocator.deere.com +powerplan.deere.com +products.deere.com +rmi.deere.com +simfrontend.channel-dss-r1-anubhuti-devl-vpn.ap.e06.c01.johndeerecloud.com +pansysecurity.com +standard.paystack.co +nabiscoseasonofgiving.com +netto.milka.de +budni.milka.de +https://staging.airtable.com/admin +www.compass.com +https://app.chime.com/ +app.chime.com +mytva.com +tvars.com +tvastem.com +tvarenewables.com +tvawcm.com +tvawcma.com +myenergyrightadvisor.com +energyright.efficientchoice.com +https://www.kruidvat.nl/fotoservice +bankaccountdata.gocardless.com +ob.gocardless.com +https://www.sellandwinclub.com +core.surefireag.com +crm.surefireag.com +elink.surefireag.com +m.surefireag.com +marksman.surefireag.com +quickdraw.surefireag.com +site.staging.marksman.surefireag.com +staging.marksman.surefireag.com +staging.quickdraw.surefireag.com +store.surefireag.com +support.surefireag.com +supportstaging.surefireag.com +web.surefireag.com +www.store.surefireag.com +www.surefireag.com +autodiscover.surepointag.com +core.surepointag.com +enterpriseenrollment.surepointag.com +enterpriseregistration.surepointag.com +feedback.surepointag.com +lyncdiscover.surepointag.com +marksman.surepointag.com +qd.surepointag.com +sip.surepointag.com +site.marksman.surepointag.com +store.surepointag.com +support.surepointag.com +toolbox.surepointag.com +vpn.surepointag.com +www.surepointag.com +auth.spark.ai +deploy.spark.ai +docs.spark.ai +email.spark.ai +staging-auth.spark.ai +storybook.spark.ai +webapp-staging.spark.ai +wiki.spark.ai +www.spark.ai +autodiscover.surepointelectronics.com +enterpriseenrollment.surepointelectronics.com +enterpriseregistration.surepointelectronics.com +lyncdiscover.surepointelectronics.com +sip.surepointelectronics.com +access.bluerivertech.com +artifactory.bluerivertech.com +bomgar.bluerivertech.com +california.bluerivertech.com +email.gh-mail.bluerivertech.com +gep.bluerivertech.com +handbook.bluerivertech.com +help.bluerivertech.com +lyncdiscover.bluerivertech.com +oi-grafana.bluerivertech.com +secureaccessba01.bluerivertech.com +sites.bluerivertech.com +sprayers-ws-dev.bluerivertech.com +stage-artifactory.bluerivertech.com +support.bluerivertech.com +voipserver.bluerivertech.com +vpn1.bluerivertech.com +vpn2.bluerivertech.com +www.bluerivertech.com +careers.bluerivertechnology.com +contact.bluerivertechnology.com +support.bluerivertechnology.com +team.bluerivertechnology.com +www.bluerivertechnology.com +email.bluerivert.com +email.gh-mail.bluerivert.com +www.bluerivert.com +www.blueriver.ai +aws.dev.bearflagrobotics.com +email.bearflagrobotics.com +ovpn.bearflagrobotics.com +skynet.bearflagrobotics.com +testvpn.dev.bearflagrobotics.com +vpn.dev.bearflagrobotics.com +vpn.prod.bearflagrobotics.com +vpn.staging.bearflagrobotics.com +www.allpartsshop.com +webdr.allpartsstore.com +app.smartapply.com +au-admin.smartapply.com +au-dealer.smartapply.com +au.smartapply.com +autodiscover.smartapply.com +dealer-dev.smartapply.com +dealer.smartapply.com +en.smartapply.com +es.smartapply.com +fr.smartapply.com +it.smartapply.com +lyncdiscover.smartapply.com +sa-admin.smartapply.com +sa.smartapply.com +sip.smartapply.com +www.smartapply.com +za-admin.smartapply.com +za.smartapply.com +site.marksman.surefireag.com +surefireag.surefireag.com +toolbox.surefireag.com +site.staging.marksman.surepointag.com +staging.core.surepointag.com +staging.marksman.surepointag.com +www.surepointelectronics.com +anubhutiuat.deere.com +anubhutiuatapis.deere.com +api.mergify.com +dashboard.mergify.com +fossil.at +https://digitas.8thwall.app/chips-ahoy-happy-by-design +vision-staging.johndeere.com +app.frontapp.com +api2.frontapp.com +http://help.front.com +advisortimetracker.kkr.com +kkrpec.com +kinfra.com +ksam.com +advocates.databricks.com +community.databricks.com +customer-academy.databricks.com +labs.databricks.com +marketplace.databricks.com +https://vroid.com/studio +doppeltgewinnen.fcmilka.de +http://cadburypakistan.com/cricketworldcup +hallsfangiveaway.com +spar.nyerjakedvenceiddel.hu +autodiscover.kreiselelectric.com +changepassword.kreiselelectric.com +filebox-dev.kreiselelectric.com +filebox.kreiselelectric.com +ftp.kreiselelectric.com +hermes.kreiselelectric.com +ke-uc-expe.kreiselelectric.com +kreiselcloud.kreiselelectric.com +mail.kreiselelectric.com +mx.kreiselelectric.com +remote.kreiselelectric.com +testweb.kreiselelectric.com +video.kreiselelectric.com +vpn.kreiselelectric.com +webmail.kreiselelectric.com +www.kreiselelectric.com +sdicert.deere.com +https://www.truist.com +https://www.fundraising.com.au/ +droneci.deere.com +vm.8x8.com +zeroplus.co.uk +chipsahoy.art +weihnachten.milka.de +cadburythisadismystore.com +shop.cadburydairymilk.com +phillyksa.com +snackingright.com.au +cadburysittogether.com +tridentxjungle.com +spkcringeorcandy.com +bisnaccxp.com.br +http://training-indonesia.cocoalife.org +milka-noelsdumonde.com +cadburygift.com +epack.mondelezinternational.com +mitiendamondelez.com.ar +cadbury-gifting.com +appsumer.io +dcraf.com +delishaas.com +inmobi.cn +inmobi.jp +meson.ai +nostra.gg +nostragamus.in +roposoclout.com +shipstreak.com +thisiskra.com +worldofek.com +zyxw365.in +staging.harvestprofit.com +dealers.harvestprofit.com +changelog.harvestprofit.com +docs.harvestprofit.com +ghost.harvestprofit.com +learn.harvestprofit.com +swag.harvestprofit.com +www.harvestprofit.com +dev-qdrant.isg-aa-comp-vision-training-devl-standalone2.us.e01.c01.johndeerecloud.com +notify-api.app.cloud.gov +notify.app.cloud.gov +ssb-sms-notify-management.app.cloud.gov +beta.notify.gov +notify.gov +derivws.com +*.cbre.* +*.trammellcrow.com +*.cbre-heery.com +*.cbrebuild.com +*.cbreonline.com.mx +*.cbre-ea.com +*.cbreacquisitionholdings.com +*.cbreapps.com +*.cbrecap.com +*.cbreclarion.com +*.cbreemea.com +*.cbrehotels.com +*.cbrekorea.com +*.cbremega.com +*.cbremelody.com +*.cbreresidential.es +*.cbrevaluation.com.vn +*.centermanagement.ch +*.fameco.com +*.famecoretail.com +*.greensoluce.com +*.hanaworkplaces.com +*.pkfc.com +*.axisvalue.com +mainstreamsasp.com +cbre-ea.com +dev.cbre-ea.com +qc.cbre-ea.com +test.cbre-ea.com +uaganon.cbre-ea.com +www.cbre-ea.com +www.test.cbre-ea.com +apps.facilitysource.com +autodiscover.facilitysource.com +blog.facilitysource.com +exchange.facilitysource.com +facilitysource.com +go.facilitysource.com +jobs.facilitysource.com +learning.facilitysource.com +mail.facilitysource.com +media.facilitysource.com +prtg.facilitysource.com +www.exchange.facilitysource.com +www.facilitysource.com +www.mail.facilitysource.com +www.prtg.facilitysource.com +cbrichardellis.com +cookie.cbrichardellis.com +gkc1.cbrichardellis.com +gkc2.cbrichardellis.com +gkc3.cbrichardellis.com +itrack.cbrichardellis.com +itrackii.cbrichardellis.com +japandesk.cbrichardellis.com +library.cbrichardellis.com +mail.cbrichardellis.com +navigator.cbrichardellis.com +piq.cbrichardellis.com +premier.cbrichardellis.com +search.cbrichardellis.com +searchnav.cbrichardellis.com +vol.cbrichardellis.com +vpn.cbrichardellis.com +webmail.cbrichardellis.com +www.cbrichardellis.com +www2.cbrichardellis.com +2fa.cbre.com +aac01.mydevices.cbre.com +activate-ui-blue.vas-plat.cbre.com +activate-ui-green.vas-plat.cbre.com +activate-ui-red.vas-plat.cbre.com +activate-ui-stg-green.vas-plat.cbre.com +activate-ui-stg.vas-plat.cbre.com +activate-ui-uat-green.vas-plat.cbre.com +activate-ui-uat.vas-plat.cbre.com +activate-ui.vas-plat.cbre.com +activesync.cbre.com +ad.experience.cbre.com +admin-blueprint.cbre.com +adobecloudlm.cbre.com +ae-tm.nonprod.cbre.com +ae-uat.nonprod.cbre.com +agent.cbre.com +agile.cbre.com +agribusiness.cbre.com +aloha-api-docs-dev.cbre.com +aloha-api-docs-qa.cbre.com +aloha-api-docs-stage.cbre.com +aloha-api-docs.cbre.com +aloha-api.cbre.com +aloha-api.dev.cbre.com +aloha-api.qa.cbre.com +aloha-assets.cbre.com +aloha-assets.nonprod.cbre.com +amex.locator.cbre.com +amlapi.cbre.com +analytics.cbre.com +angulardemo.emerald.cbre.com +annualreport.cbre.com +answers.chatbot.cbre.com +apacbi.cbre.com +apacgenetec.cbre.com +apacmysupplier.cbre.com +apacresearch-tm.nonprod.cbre.com +apacresearch.cbre.com +apbrazil-api-dev.cbre.com +apbrazil-api-qa.cbre.com +apbrazil-api-uat.cbre.com +apbrazil-api.cbre.com +apbrazil-dev.cbre.com +apbrazil-nonprod.cbre.com +apbrazil-qa.cbre.com +apbrazil-uat.cbre.com +apbrazil.cbre.com +api-agile.cbre.com +api-dev.cbre.com +api-dev.smartfm.cbre.com +api-prod.experience.cbre.com +api-qa.smartfm.cbre.com +api-sb.experience.cbre.com +api-test.cbre.com +api-tgm-dr.green.cbre.com +api-tgm-uat.green.cbre.com +api-tgm.green.cbre.com +api-uat.cbre.com +api-uat.smartfm.cbre.com +api-ukplatform.cbre.com +api.aggregate.cbre.com +api.autobuild.cbre.com +api.avm.cbre.com +api.benchmarker.cbre.com +api.bluesky.cbre.com +api.brokerhub.cbre.com +api.builder.cbre.com +api.cbre.com +api.dealiq.cbre.com +api.dev.forecaster.research.cbre.com +api.dev.locator.research.cbre.com +api.dev.performanceiq.cbre.com +api.devx.cbre.com +api.ea.login.cbre.com +api.experience.cbre.com +api.forecaster.cbre.com +api.forecaster.research.cbre.com +api.gsi.cbre.com +api.locator.cbre.com +api.locator.research.cbre.com +api.merge.locator.research.cbre.com +api.miq.cbre.com +api.myproperty.cbre.com +api.officeready.cbre.com +api.performanceiq.cbre.com +api.permissionsmanagement.cbre.com +api.pjm.cbre.com +api.pjmtech.cbre.com +api.qa.performanceiq.cbre.com +api.select.cbre.com +api.smartfm.cbre.com +api.staging.dealiq.cbre.com +api.staging.forecaster.research.cbre.com +api.staging.locator.research.cbre.com +api.test.forecaster.research.cbre.com +api.test.locator.research.cbre.com +apiapac-test.cbre.com +apiapac.cbre.com +apiausy-test.cbre.com +api.fmpilot2.com +autodiscover.fmpilot2.com +azqa-api.fmpilot2.com +azqa-dat.fmpilot2.com +azqa-int.fmpilot2.com +azqa-reporting.fmpilot2.com +azqa-sso.fmpilot2.com +azqa-ssoadmin.fmpilot2.com +azqa-ww2.fmpilot2.com +azqa.fmpilot2.com +azstaging-api-gateway.fmpilot2.com +azstaging-api.fmpilot2.com +azstaging-dat.fmpilot2.com +azstaging-int.fmpilot2.com +azstaging-reporting.fmpilot2.com +azstaging-sso.fmpilot2.com +azstaging-ssoadmin.fmpilot2.com +azstaging-thddat.fmpilot2.com +azstaging-ww2.fmpilot2.com +azstaging.fmpilot2.com +cpr.fmpilot2.com +dat.fmpilot2.com +demo-api.fmpilot2.com +demo.fmpilot2.com +dev-api.fmpilot2.com +dev-dat.fmpilot2.com +dev-int.fmpilot2.com +dev-reporting.fmpilot2.com +dev-serviceapi.fmpilot2.com +dev-sso.fmpilot2.com +dev-ssoadmin.fmpilot2.com +dev-ww2.fmpilot2.com +dev.fmpilot2.com +dynamicdispatch.fmpilot2.com +fmpilot2.com +ftp.fmpilot2.com +ifm-staging.fmpilot2.com +ifm.fmpilot2.com +integration.fmpilot2.com +iwp.fmpilot2.com +jenkins.fmpilot2.com +m-api.fmpilot2.com +o1.ptr7391.fmpilot2.com +perfomance.fmpilot2.com +preprod.fmpilot2.com +qa.fmpilot2.com +regression-api.fmpilot2.com +regression-dat.fmpilot2.com +regression-int.fmpilot2.com +regression-reporting.fmpilot2.com +regression-sso.fmpilot2.com +regression-ssoadmin.fmpilot2.com +regression-ww2.fmpilot2.com +regression.fmpilot2.com +reporting.fmpilot2.com +serviceapi.fmpilot2.com +smtp.fmpilot2.com +sql2019-api.fmpilot2.com +sql2019-dat.fmpilot2.com +sql2019-integration.fmpilot2.com +sql2019-ww2.fmpilot2.com +sql2019.fmpilot2.com +staging-api.fmpilot2.com +staging.fmpilot2.com +tableau.fmpilot2.com +temp-api.fmpilot2.com +temp-integration.fmpilot2.com +temp.fmpilot2.com +test.fmpilot2.com +testing.fmpilot2.com +thd-azstaging.fmpilot2.com +thd.fmpilot2.com +training.fmpilot2.com +ww2.fmpilot2.com +www.fmpilot2.com +www.iwp.fmpilot2.com +www.staging.fmpilot2.com +apiaz-dev.cbre.com +apiaz-test.cbre.com +apiaz.cbre.com +apiazapac-test.cbre.com +apiazapac.cbre.com +apiazemea-test.cbre.com +apiazemea.cbre.com +apiemea-test.cbre.com +apikey-test.cbre.com +apikey-uat.cbre.com +apikey.cbre.com +apimanager-uat.cbre.com +appdproxytest.cbre.com +apps.thelobby.cbre.com +apps.uat.thelobby.cbre.com +appstore.cbre.com +apuacmysupplier.cbre.com +ar-tm.nonprod.cbre.com +ar-uat.nonprod.cbre.com +archive.cbre.com +argentina.preview.cbre.com +argusweb.cbre.com +arguswebgi-test.cbre.com +arguswebgi.cbre.com +artifactory-dr.gcsonp.cbre.com +artifactory-new.gcso.cbre.com +artifactory-new.gcsonp.cbre.com +artifactory-staging.gcso.cbre.com +artifactory-staging.gcsonp.cbre.com +artifactory.gcso.cbre.com +artifactory.gcsonp.cbre.com +artifactory.pnonprod.gcso.cbre.com +as.myim.cbre.com +asianavigator.cbre.com +assetintel-qa.cbre.com +assetintel-uat.cbre.com +assetintel.cbre.com +assetiq.cbre.com +assetiqdev.cbre.com +assetiqpes.cbre.com +assetiqrec.cbre.com +assetiqtest.cbre.com +assetiquat.cbre.com +assetview.cbre.com +at-tm.nonprod.cbre.com +at-uat.nonprod.cbre.com +ataccama-dev.cbre.com +ataccama-dev2.cbre.com +ataccama-nonprod.cbre.com +ataccama-qa.cbre.com +ataccama-staging.cbre.com +ataccama-test.cbre.com +ataccama-uat.cbre.com +ataccama.cbre.com +atcouchdb-east.cbre.com +atcouchdb-west.cbre.com +atcouchdb.cbre.com +atcouchdbdev.cbre.com +atcouchdbdr.cbre.com +atcouchdbdrstaging.cbre.com +atcouchdbstaging-east.cbre.com +atcouchdbstaging-west.cbre.com +atcouchdbstaging.cbre.com +atcouchdbtest.cbre.com +aternity.cbre.com +au-uat.nonprod.cbre.com +authnavigator.cbre.com +authoring.cbre.com +autodiscover.cbre.com +ava-dev.cbre.com +ava-dr.cbre.com +ava-uat.cbre.com +ava.cbre.com +avaapi-dev.cbre.com +avaapi-dr.cbre.com +avaapi-uat.cbre.com +avaapi.cbre.com +avacs-dev.cbre.com +avacs-dr.cbre.com +avacs-uat.cbre.com +avacs.cbre.com +avm.cbre.com +axiscp-test.cbre.com +az.experience.cbre.com +b2c.experience.cbre.com +bam.cbre.com +bamdev.cbre.com +bamdevmapexportapi.cbre.com +bamdevmaplogoapi.cbre.com +bamdevmapstoreapi.cbre.com +bamdevmapuserapi.cbre.com +bammapexportapi.cbre.com +bammaplogoapi.cbre.com +bammapstoreapi.cbre.com +bammapuserapi.cbre.com +bampilot.cbre.com +bampilotmapexportapi.cbre.com +bampilotmaplogoapi.cbre.com +bampilotmapstoreapi.cbre.com +bampilotmapuserapi.cbre.com +bamstaging.cbre.com +bamstagingmapexportapi.cbre.com +bamstagingmapstoreapi.cbre.com +bamstagingmapuserapi.cbre.com +bamuat.cbre.com +bamuatmapexportapi.cbre.com +bamuatmaplogoapi.cbre.com +bamuatmapstoreapi.cbre.com +bamuatmapuserapi.cbre.com +be-tm.nonprod.cbre.com +be-uat.nonprod.cbre.com +benchmarker.cbre.com +bg-tm.nonprod.cbre.com +bg-uat.nonprod.cbre.com +bh-tm.nonprod.cbre.com +bh-uat.nonprod.cbre.com +bi.cbre.com +blue.api-dev.cbre.com +blue.api-gwm-dev.cbre.com +blue.api.cbre.com +blue.apikey-dev.cbre.com +blue.apikey.cbre.com +blue.apimanager-dev.cbre.com +blue.apimanager.cbre.com +blue.developer-dev.cbre.com +blue.developer.cbre.com +blueprint.cbre.com +bluesky.cbre.com +bo2.gcso.cbre.com +borrowerportal.uat.cbre.com +borrowerservices.cbre.com +borrowerservices.uat.cbre.com +boss.cbre.com +bossearch-dev.cbre.com +bossearch.cbre.com +bpworkplacetoolkit.cbre.com +bq.cbre.com +br-tm.nonprod.cbre.com +br-uat.nonprod.cbre.com +brand.cbre.com +brokerdashboard.cbre.com +brokerhub-dev.cbre.com +brokerhub-qa.cbre.com +brokerhub-uat.cbre.com +brokerhub.cbre.com +bt.locator.cbre.com +btuat.locator.cbre.com +build.cbre.com +build3ddev.cbre.com +build3dpes.cbre.com +build3dstaging.cbre.com +build3dtest.cbre.com +build3duat.cbre.com +builder.cbre.com +bulgaria.preview.cbre.com +businessanalytics2.cbre.com +businessinsights.cbre.com +ca-uat.nonprod.cbre.com +calc.cbre.com +calcstaging.cbre.com +cap-tm.nonprod.cbre.com +cap-uat.nonprod.cbre.com +capitalflow.cbre.com +capitalflows.cbre.com +capitalmarkets.cbre.com +caproxy.cbre.com +caproxyfte.cbre.com +caproxyuat.cbre.com +capstonepipeline-dev.cbre.com +capstonepipeline-test.cbre.com +capstonepipeline.cbre.com +careers.cbre.com +casso.cbre.com +cassofte.cbre.com +cassouat.cbre.com +cbftp-azure.cbre.com +cbftp-dev-azure.cbre.com +cbftp-dev.cbre.com +cbftp-dr.cbre.com +cbftp-test-azure.cbre.com +cbftp-test.cbre.com +cbftp.cbre.com +cbre.com +cbre.locator.cbre.com +cbreapps.cbre.com +cbredemoutility-dev.cbre.com +cbredemoutility-test.cbre.com +cbredemoutility.cbre.com +cbrehotels.preview.cbre.com +cbreim-uat.nonprod.cbre.com +cbreloanflow.cbre.com +cbremarketrentcycle-uat.cbre.com +cbremarketrentcycle.cbre.com +cbrenow.cbre.com +cbrenowdev.cbre.com +cbrenowdev3.cbre.com +cbrenowpreprod.cbre.com +cbrenowsandbox.cbre.com +cbrenowtest.cbre.com +cbrepursuits.cbre.com +cbreresidential-uat.nonprod.cbre.com +cbreuat.locator.cbre.com +cbreyardi.cbre.com +ccoe.cbre.com +ccsg.cbre.com +cdm-api-dev.cbre.com +cdm-api-dr.cbre.com +cdm-api-qa.cbre.com +cdm-api-uat.cbre.com +cdm-api.cbre.com +cdm-dev.cbre.com +cdm-dr.cbre.com +cdm-nonprod.cbre.com +cdm-prod.cbre.com +cdm-qa.cbre.com +cdm-uat.cbre.com +cdm.cbre.com +ch-tm.nonprod.cbre.com +ch-uat.nonprod.cbre.com +chatbot.cbre.com +chef.cloudeng.cbre.com +chinataxplus.cbre.com +ciqtops2-prod.cbre.com +ciqtops2-test.cbre.com +ckc-staging.cbre.com +ckc.cbre.com +ckc.glb.cbre.com +cl-tm.nonprod.cbre.com +cl-uat.nonprod.cbre.com +clarion-tm.nonprod.cbre.com +clarion-uat.nonprod.cbre.com +clients.cbre.com +cloudops-atlantis.cbre.com +cloudops.cbre.com +cloudpermissions-dev.cbre.com +cloudpermissions-nonprod.cbre.com +cloudpermissions.cbre.com +cloudtest.cbre.com +cmms-auth-e-blue.serviceinsight.cbre.com +cmms-auth-e-green.serviceinsight.cbre.com +cmms-auth-w-blue.serviceinsight.cbre.com +cmms-auth-w-green.serviceinsight.cbre.com +cmms-auth.serviceinsight.cbre.com +cmms-east-gw.serviceinsight.cbre.com +cmms-emea-gw-c-blue.serviceinsight.cbre.com +cmms-emea-gw-c-green.serviceinsight.cbre.com +cmms-emea-gw-e-blue.serviceinsight.cbre.com +cmms-emea-gw-e-green.serviceinsight.cbre.com +cmms-gw-c-blue.serviceinsight.cbre.com +cmms-gw-c-green.serviceinsight.cbre.com +cmms-gw-e-blue.serviceinsight.cbre.com +cmms-gw-e-green.serviceinsight.cbre.com +cmms-gw-w-blue.serviceinsight.cbre.com +cmms-gw-w-green.serviceinsight.cbre.com +cmms-west-gw.serviceinsight.cbre.com +cmms.serviceinsight.cbre.com +cms.cbre.com +cms2.cbre.com +cmsauthoring.cbre.com +cn-uat.nonprod.cbre.com +co-tm.nonprod.cbre.com +co-uat.nonprod.cbre.com +codeengine-prod-console.cbre.com +codeengine-prod.cbre.com +colombia.preview.cbre.com +columbus.cbre.com +commercialloanservices.uat.cbre.com +confluence.cbre.com +connectedadvantage.cbre.com +core.cbre.com +coreclient-ui-blue.vas-plat.cbre.com +coreclient-ui-green.vas-plat.cbre.com +coreclient-ui-red.vas-plat.cbre.com +coreclient-ui-stg-green.vas-plat.cbre.com +coreclient-ui-stg.vas-plat.cbre.com +coreclient-ui-uat-green.vas-plat.cbre.com +coreclient-ui-uat.vas-plat.cbre.com +coreclient-ui.vas-plat.cbre.com +cort.cbre.com +costargw-dev.cbre.com +costargw.cbre.com +costlab.cbre.com +costlibrary.cbre.com +crm-int-dr.cbre.com +crm-int.cbre.com +crm.cbre.com +crm.pnonprod.gcso.cbre.com +crmemea.cbre.com +crmmix.cbre.com +crmmixrpt-test.cbre.com +crmmyhrsc.cbre.com +crmusuat.cbre.com +crystal-ball-gateway.serviceinsight.cbre.com +crystal-ball.serviceinsight.cbre.com +cs-dev.intrepid.cbre.com +cs.intrepid.cbre.com +csg.cbre.com +csgdr.cbre.com +csghi.cbre.com +csgi.cbre.com +cyprus-uat.cbre.com +cyprus.cbre.com +cz-tm.nonprod.cbre.com +cz-uat.nonprod.cbre.com +dashboard.cbre.com +datamgmt.greenqa.cbre.com +db-tops2-dev.cbre.com +db-tops2-uat.cbre.com +db-tops2.cbre.com +db.vas-core-platform-uat.cbre.com +db.vas-core-platform.cbre.com +de-uat.nonprod.cbre.com +dealdata-jyusetsu.cbre.com +dealdata-oss-dev.cbre.com +dealdata-oss-dev2.cbre.com +dealdata-oss-sit.cbre.com +dealdata-oss-sit2.cbre.com +dealdata-oss-uat.cbre.com +dealdata-oss-uat2.cbre.com +dealdata-oss.cbre.com +dealdata-oss2.cbre.com +dealdata-report-sup.cbre.com +dealdata-report-uat.cbre.com +dealdata-report.cbre.com +dealdata-sup.cbre.com +dealdata-tohon-sup.cbre.com +dealdata-tohon-uat.cbre.com +dealdata-tohon.cbre.com +dealdata-uat.cbre.com +dealdata.cbre.com +dealdata.twistlock.gcso.cbre.com +dealdatajyusetsu-uat.cbre.com +dealdatareport-sup.cbre.com +dealdatareport-uat.cbre.com +dealdatatohon-sup.cbre.com +dealdatatohon-uat.cbre.com +dealiq.cbre.com +dealstream.cbre.com +deepmind.locator.cbre.com +deepminduat.locator.cbre.com +demo-assetview.cbre.com +demo.gopulse.cbre.com +demo.locator.cbre.com +depositary-cbreglobalinvestors.glb.cbre.com +dev-agile.cbre.com +dev-api.avm.cbre.com +dev-artifactory.gcsonp.cbre.com +dev-assetview.cbre.com +dev-calcstaging.cbre.com +dev-cmms-auth.serviceinsight.cbre.com +dev-cmms.serviceinsight.cbre.com +dev-core.cbre.com +dev-costlab.cbre.com +dev-enterprise.serviceinsight.cbre.com +dev-gateway.serviceinsight.cbre.com +dev-gw.cbreone.cbre.com +dev-lightbox.cbre.com +dev-media.cbreone.cbre.com +dev-mriasia.cbre.com +dev-reports-int.cbre.com +dev-serviceinsight.cbre.com +dev-siif-gateway.serviceinsight.cbre.com +dev-tempest-gateway.serviceinsight.cbre.com +dev-tempest.serviceinsight.cbre.com +api.emea.gravity.porsche.com +configurator.porsche.com +connect-store.porsche.com +finder.porsche.com +identity.porsche.com +jobs.porsche.com +my.porsche.com +newsroom.porsche.com +porsche.com +shop.porsche.com +signup.porsche.com +skyway.porsche.com +https://otm.croc.ru +https://milka.ru +https://alpengold.me +https://oreo.ru +https://xn--80abwto.xn--p1ai +https://xn--90aiakgkqi1l.xn--p1ai +ssb-smtp-notify-management.app.cloud.gov +myaccount.navirefi.com +dspayments.com/* +www.pamcollections.com +www.pampayments.com +www.msbpay.com +www.msbnexus.com +admin.msbnexus.navient.com +sandiego.dsmyportal.com +msbpay.com +dsparkingportal.com +duncan.imageenforcement.com +www.pamcollectionsin.com +sandiegoadmin.dsmyportal.com +www.nystapayment.com +onlineserviceshub.com +temp.msbpay.com +temp.msbnexus.com +payments.msbpay.navient.com +www.navirefi.com +apply2.navirefi.com +wsmb2bresv.navient.com +api.au.frontegg.com +portal.au.frontegg.com +dev-tfs.cbre.com +ewdocs.deere.com +flyiin.com +on-app-backend.on-running.com +100jaar.liga.nl +7days-promo.com +bakerypromo.milka.nl +clifbar.it +cotedor.be +entdeckeallesorten.milka.de +fodboldrejse.marabou.dk +go.7days.com +heritageadvertising.cadbury.co.uk +loteria7days.pl +marabouchokladhus.se +milkamaxtrenutak.ba +milkamaxtrenutak.hr +milkamaxtrenutak.rs +milkamaxtrenutek.si +mmmax-tester.milka.de +mongouterprince.fr +oreo.kz +principesportsacademy.es +secretsanta.cadbury.co.uk +signwithfingers.cadbury.co.uk +soutez.opavia.info +sport70promo.hu +sutaz.opavia.info +sutazoreo.sk +trident.gr +vyhrajschuti.cz +vyhrajschutou.sk +worldclass.cadburyfc.com +i3dhub.ghns-web-platform-r2-prod-standalone4.eu.e00.c01.johndeerecloud.com +gravatar.com +wwhui-legacy.channel-warranty-warehouse-devl-vpn2.us.e06.c01.johndeerecloud.com +displaysimulator.deere.com +api.facemojikeyboard.com +parts.waratah.com +booking.com +secure.booking.com +careers.booking.com +account.booking.com +taxi.booking.com +widget.rentalcars.com +cars.booking.com +supplier.auth.toag.booking.com +metasearch-api.booking.com +experiences.booking.com +flights.booking.com +10tenmagazine.com +54fossil.com +abacuswatches.com +abacuswatches.net +afossil.com +antima.ch +armani-watches.eu +b2btimeframes.com +cmd-network.com +cmdportfolio.com +colortheorywatches.com +datafossil.com +dieselgioielli.it +dieseljewellery.it +dieselorologi.it +dieseltimeframes.at +dieseltimeframes.cn +dieseltimeframes.co.kr +dieseltimeframes.co.nl +dieseltimeframes.co.uk +dieseltimeframes.de +dieseltimeframes.fr +dieseltimeframes.it +dieseltimeframes.jp +dieseltimeframes.kr +erelic.com +fgcdn.com +fgservices.com +fgtoolbox.com +fiftyfourfossil.com +forrus.com.hk +fossi.com +fossil-asia.com +fossil-polska.pl +fossil-schmuck.at +fossil-schmuck.de +fossil-test-demo.com +fossil-uhren.de +fossil.asia +fossil.cl +fossil.co +fossil.co.in +fossil.co.no +fossil.co.th +fossil.co.uk +fossil.com.es +fossil.com.lk +fossil.com.mo +fossil.com.mx +fossil.com.my +fossil.com.ph +fossil.com.pk +fossil.com.ro +fossil.com.tw +fossil.eu +fossil.ie +fossil.kr +fossil.li +fossil.lk +fossil.mo +fossil.mx +fossil.my +fossil.net.cn +fossil.net.nz +fossil.org.nz +fossil.ph +fossil.pt +fossil.se +fossil.sg +fossil.tw +fossil54.com +fossilcanada.com +fossilchina.com.cn +fossilchina.xn--fiqs8s +fossilcollectorsclub.com +fossilcorporatemarkets.com +fossildenmark.dk +fossilfiftyfour.com +fossilfootwear.ca +fossilfootwear.ch +fossilfootwear.cn +fossilfootwear.co.uk +fossilfootwear.com.es +fossilfootwear.com.fr +fossilfootwear.com.mo +fossilfootwear.com.mx +fossilfootwear.es +fossilfootwear.eu +fossilfootwear.hk +fossilfootwear.in +fossilfootwear.it +fossilfootwear.jp +fossilfootwear.kr +fossilfootwear.my +fossilfootwear.nl +fossilfootwear.ph +fossilfootwear.pk +fossilfootwear.sg +fossilfootwear.tw +fossilfootwear.vn +fossilfoundation.com +fossilgroup.cn +fossilgroup.co.nz +fossilgroup.com.au +fossilgroup.com.bd +fossilgroup.fr +fossilgroup.hk +fossilgroup.in +fossilgroup.jp +fossilgroup.kr +fossilgroup.nl +fossilgroup.nz +fossilgroup.pt +fossilgroup.sg +fossilgroup.tw +fossilgroup.us +fossilhorologes.nl +fossilindia.com +fossiljapansalestore.com +fossilmalaysia.com +fossilnorway.co.no +fossilnz.co.nz +fossilnz.net.nz +fossilnz.nz +fossilonline.co.za +fossilpolska.pl +fossilq.com +fossilq.tv +fossilqmuse.tv +fossilqpilot.tv +fossilqranger.tv +fossilqwanderer.tv +fossilqwatch.tv +fossilrevelver.tv +fossilsafeworkplace.com +fossilschmuck.at +fossilschmuck.com +fossilschmuck.de +fossilshoe.at +fossilshoe.ca +fossilshoe.ch +fossilshoe.cn +fossilshoe.co.uk +fossilshoe.com.es +fossilshoe.com.mo +fossilshoe.com.mx +fossilshoe.de +fossilshoe.es +fossilshoe.eu +fossilshoe.fr +fossilshoe.hk +fossilshoe.in +fossilshoe.it +fossilshoe.jp +fossilshoe.kr +fossilshoe.my +fossilshoe.net.cn +fossilshoe.nl +fossilshoe.org.cn +fossilshoe.ph +fossilshoe.pk +fossilshoe.sg +fossilshoe.tw +fossilshoe.vn +fossilshoes.at +fossilshoes.ch +fossilshoes.cn +fossilshoes.co.uk +fossilshoes.com.au +fossilshoes.com.mo +fossilshoes.com.mx +fossilshoes.de +fossilshoes.eu +fossilshoes.fr +fossilshoes.hk +fossilshoes.in +fossilshoes.jp +fossilshoes.kr +fossilshoes.my +fossilshoes.nl +fossilshoes.ph +fossilshoes.pk +fossilshoes.sg +fossilshoes.tw +fossilshoes.vn +fossilsignapore.sg +fossilsing.com.sg +fossilsingapore.sg +fossilspecialmarkets.com +fossilstore.ca +fossilstores.ca +fossiluhren.at +fossilunbound.com +fossilunbound.org +fossilwatch.ca +fossilwatches.info +fossilwatchesstore.com +fossilworkflow.com +googledev.fossil.com +inkandironswatches.com +irelic.com +karlwatches.com +lewatchcollections.com +logisav.com +maketimeforgood.com +metro-servicecenter.com +metroservicecenter.com +metroservicecentre.ca +metroservicecentrecanada.ca +metrowatchcompany.com +michele-watches.com +michele.asia +michele.co +michele.co.kr +michele.eu +michele.jp +michele.mobi +micheleuhren.de +michelewatch.co.uk +michelewatch.com +michelewatch.de +michelewatch.jp +michelewatch.net +michelewatches.biz +michelewatches.ch +michelewatches.co.uk +michelewatches.com +michelewatches.de +michelewatches.jp +michelewatches.net +michelewatches.org +michelewatches.us +michellewatch.com +michellewatches.com +modernwatch.com +modernwatch.net +modernwatchco.com +modernwatchco.net +modernwatchcompany.com +modernwatchcompany.net +modwatchco.com +modwatchco.net +monamiewatch.com +monamiewatches.com +morewearablewearable.com +mw-michele.com +mw-watches.com +mwmichele.com +mwwatches.com +myskagen.info +myskagen.net +myskagen.org +olieoliverwatches.com +oneelevenwatches.com +relic.co +relicbrand.com +relicbrand.net +relicshop.com +relicstore.com +relicwatch.com +relicwatches.com +relicwatches.net +shopcatchin.com +shopkatchin.com +skagen-designs.at +skagen-designs.be +skagen-designs.ch +skagen-designs.de +skagen-designs.lu +skagen-designs.nl +skagen.ae +skagen.asia +skagen.bg +skagen.ch +skagen.co +skagen.co.il +skagen.co.in +skagen.co.nl +skagen.co.nz +skagen.co.th +skagen.co.uk +skagen.co.za +skagen.com.au +skagen.com.pl +skagen.com.tr +skagen.com.ua +skagen.de.com +skagen.es +skagen.fr +skagen.gr +skagen.hk +skagen.in +skagen.it +skagen.kr +skagen.mx +skagen.my +skagen.ph +skagen.pk +skagen.pt +skagen.ro +skagen.sk +skagen.tw +skagen.vn +skagen.xn--kpry57d +skagen20years.info +skagen20years.net +skagen20years.org +skagenbrand.at +skagenbrand.cn +skagenbrand.hk +skagenbrand.it +skagenbrand.kr +skagenbrand.my +skagenbrand.sg +skagenbrand.tw +skagenclocks.biz +skagenclocks.com +skagenclocks.info +skagenclocks.mobi +skagenclocks.net +skagenclocks.org +skagenclocks.us +skagenconnected.com +skagencorporate.com +skagendenmark.ca +skagendenmark.cn +skagendenmark.fr +skagendenmark.hk +skagendenmark.kr +skagendenmark.tw +skagendesign.cn +skagendesign.hk +skagendesign.kr +skagendesign.tw +skagendesigns.at +skagendesigns.be +skagendesigns.biz +skagendesigns.cn +skagendesigns.co.uk +skagendesigns.com +skagendesigns.dk +skagendesigns.fr +skagendesigns.hk +skagendesigns.jp +skagendesigns.kr +skagendesigns.lu +skagendesigns.mobi +skagendesigns.nl +skagendesigns.org +skagendesigns.ru +skagendesigns.se +skagendesigns.us +skagendesignsmedia.com +skagendesings.com +skagengermany.de +skagenhorloge.nl +skagenhorologe.nl +skagenhygge.co.uk +skagenhygge.com +skagenjewelry.com +skagenjewelry.info +skagenjewelry.net +skagenjewelry.org +skagenonline.com +skagenora.hu +skagenoutlet.com +skagenoutlet.info +skagenoutlet.net +skagenoutlet.org +skagenretail.com +skagenretail.info +skagenretail.net +skagenretail.org +skagensale.com +skagensale.net +skagensdesigns.cn +skagenshades.com +skagenshadows.com +skagenshadows.net +skagensite.com +skagensteel.com +skagensteel.info +skagensteel.net +skagensteel.org +skagenstore.ca +skagenstore.com +skagensunglasses.com +skagensunglasses.info +skagensunglasses.net +skagensunglasses.org +skagentitanium.biz +skagentitanium.com +skagentitanium.info +skagentitanium.mobi +skagentitanium.net +skagentitanium.org +skagentitanium.us +skagenuk.com +skagenwatch.at +skagenwatch.be +skagenwatch.bg +skagenwatch.cn +skagenwatch.co.nz +skagenwatch.com.au +skagenwatch.de +skagenwatch.dk +skagenwatch.es +skagenwatch.fr +skagenwatch.hk +skagenwatch.ie +skagenwatch.in +skagenwatch.info +skagenwatch.it +skagenwatch.jp +skagenwatch.kr +skagenwatch.mx +skagenwatch.net +skagenwatch.org +skagenwatch.pl +skagenwatch.se +skagenwatch.sg +skagenwatch.tw +skagenwatches.at +skagenwatches.biz +skagenwatches.ca +skagenwatches.cn +skagenwatches.de +skagenwatches.dk +skagenwatches.hk +skagenwatches.info +skagenwatches.it +skagenwatches.jp +skagenwatches.mx +skagenwatches.nl +skagenwholesale.com +skagenwholesale.info +skagenwholesale.net +skagenwholesale.org +skagn.com +skkagen.com +stpch.com +strlctr.com +swiss-stc.ch +swiss-stc.com +swisstp.com +ten10magazine.com +tentenmagazine.com +thefashioninfluencerslab.com +thefossilcollectorsclub.com +themorewearablewearable.com +themorewearablewearable.net +thinmeshwatch.com +uhren-fossil.de +watchdom.com.hk +watchkarl.com +watchstation.at +watchstation.be +watchstation.ch +watchstation.cl +watchstation.co +watchstation.com.au +watchstation.com.cn +watchstation.es +watchstationglobal.com +wearablessupport.com +wearvolli.com +wsiwatches.cn +wsiwatches.co.in +wsiwatches.co.kr +wsiwatches.co.nz +wsiwatches.com +wsiwatches.com.au +wsiwatches.com.cn +wsiwatches.com.my +wsiwatches.com.ph +wsiwatches.com.sg +wsiwatches.com.tw +wsiwatches.hk +wsiwatches.in +wsiwatches.jp +wsiwatches.kr +wsiwatches.nz +wsiwatches.ph +wsiwatches.sg +xn--sbu07ojn6a.com +zegarkifossil.pl +zodiac.co +zodiacbrand.com +zodiacbrand.net +zodiacwatches.mobi +work-dispatcher-mobile.cert.us.e01.c01.johndeerecloud.com +work-dispatcher-mobile.prod.us.e01.c01.johndeerecloud.com +work-dispatcher-mobile.qual.us.e01.c01.johndeerecloud.com +vision-devl.deere.com/ +nabiscoholiday.com +vistaar.tal.deere.com +citratest.deere.com +secure-dfadmin.deriv.com +posters.cadbury.com.au +https://simple.life +www.tekzone.me +bathandbodyworks.ro +victoriassecret.cz +thebodyshop.cz +starbucks.az +shayakahve.com.tr +ae.charlottetilbury.com +ims.tcms.tal.deere.com +bathandbodyworks.ro/ +ae.charlottetilbury.com/ +www.shayakahve.com.tr/ +www.starbucks.az/ +en.www.tekzone.me +thebodyshop.cz/ +victoriassecret.cz/ +victoriassecret.ro/ +cfapi.voikukka.fi +api.x.ai +grok.x.ai +ide.x.ai +www.temu.com +https://developer.truist.com/ +artifactory.corp.mongodb.com/ +advance.deere.com +devl-app.nprd-exco.deere.com +operationscenter.deere.com +https://iphone-xml.booking.com/json/ +webhooks.booking.com +admin.booking.com +chat.booking.com +autocomplete.booking.com +distribution-xml.booking.com +accommodations.booking.com +portal.taxi.booking.com +secure-supply-xml.booking.com +abb.com.br +yourdomain.myfreshworks.com +www.trendyol-milla.com +pages.deere.com +https://passport.eufy.com/?app=eufy-us +reader.vdp-egress.com +switch.vdp-egress.com +api.23andme.com +auth.23andme.com +blog.23andme.com +education.23andme.com +mediacenter.23andme.com +medical.23andme.com +store.23andme.com +therapeutics.23andme.com +you.23andme.com +research.23andme.com +https://secure-iphone-xml.booking.com/json/ +kyc-onboarding.booking.com +paymentcomponent.booking.com +taxis.booking.com +paybridge.booking.com +phone-validation.taxi.booking.com +indicative-pricing.taxi.booking.com +paynotifications.booking.com +supply-xml.booking.com +http://secure-iphone-xml.booking.com/json/ +argocd.indrive.dev +ci.indrive.dev +external.indrive.dev +auth.indrive.tech +auth2.indrive.tech +aws.indrive.tech +debug.clairvoyance.indrive.tech +ingest.clairvoyance.indrive.tech +fgemp.fnfsale.in +fossil.fnfsale.in +sourpatchkids.gg +snackfest.ro +solutionviewer.deere.com +jduetc.deere.com +remix.com +eu.remix.com +platform.remix.com +portal.polygon.technology +unified.cloudways.com +register.alertxpress.com +https://github.com/matomo-org/docker +http://coinbase.com +international.coinbase.com +www.hostinger.com +cpanel.hostinger.com +hpanel.hostinger.com +payments.hostinger.com +www.zyro.com +backend.zyro.com +editor.zyro.com +logo.zyro.com +www.hosting24.com +hpanel.hosting24.com +cpanel.hosting24.com +payments.hosting24.com +www.niagahoster.co.id +partner.niagahoster.co.id +express.53.com +https://ablreporter.53.com/ +https://cdao.53.com/onboarding +https://commercialcard.53.com/ +https://dpm.53.com/identityservice/identityservice.asmx +https://express.53.com/portal +https://globaltradedirect.53.com/ +https://lqm.53.com/ +https://myapps.53.com/app/fifththird_degreedcontractor_1/exk5q7jnnuzgrrdct4h7/sso/saml +https://onlinebanking.53.com/ +https://openonline.53.com/ +https://sys.express.53.com +locations.53.com +onlinebanking.53.com +www.53.com +zta.nube.53.com +ztc.nube.53.com +https://load-webescrow.info53.com +https://pingfederate-admin-ocp-prd-bc3574.ocpf.info53.com/pingfederate/app +https://shipper-stage.info53.com/shipper/app/ +https://slapmsp001.info53.com:9443 +https://wsde260n-1.info53.com:481/olb/#/login +wgwebservices.snapfish.com +https://www.cvs.com/photo/ +sayitwithasongmilka.com +savouronsensemblelareussite.ca +tavla.marabou.se +tavlamedtuc.se +tasteglorytogether.ca +tnccletspicnic.com.au +https://brand-sa.shortlyst.com/cadburydairymilk/1801 +oreo.com.au +practice.securevetsource.com +spsah2.securevetsource.com +https://portal.securevetsource.com/petowner.html +jdfy-cert.deere.com +nft.io +platform.enjin.io +app.dynamic-preprod.xyz +demo.dynamic.xyz +app.dynamic.xyz +wellhivecorporate.okta.com +analytics.wellhive.com +app.wellhive.com +login.wellhive.com +account-sprint.dynatracelabs.com +sso-sprint.dynatracelabs.com +university-staging.dynatracelabs.com +myaccount-hardening.dynatracelabs.com +app.infura.io +res.hyattinclusivecollection.com +www.hyattinclusivecollection.com +booking.applevacations.com +https://dias.oneview.truist.com/ +sandbox.fireblocks.io +http://sb-mobile-api.fireblocks.io +http://sb-console-api.fireblocks.io +http://sandbox-api.fireblocks.io +metamask.io +fp-sg.tiktokv.com +www.fuzemeeting.com +donatebloodcedars.org +https://dias.bank.truist.com/ +http://api.hartsystems.com +https://hartsystems.com +https://smartcount.zebrainventory.com +smartcountdamagestest.zebrainventory.com +https://zebrainventory.com +aax-us-iad.amazon.com +aca-livecards-service.amazon.com +address-photos.amazon.com +ads-setu-proxy.amazon.com +alexa-comms-mobile-service-na.amazon.com +cloudaccesstelemetry-us-east-1.amazon.com +completion.amazon.com +data-na.amazon.com +dolphin.amazon.com +dss-na.amazon.com +ftvmps-na.amazon.com +ftvpes-na.amazon.com +ftvr-na.amazon.com +ftvsacs-na.amazon.com +gateway-ink.amazon.com +imdbtv-backend-na.amazon.com +mas-ext.amazon.com +mas-sdk.amazon.com +msh.amazon.com +music-api.amazon.com +music-hints-na.amazon.com +musicapp.amazon.com +musiccentral.amazon.com +pitangui.amazon.com +preview-flex-capacity-na.amazon.com +prod-dp-discovery-us-east-1.amazon.com +rabbitinstruction-na.amazon.com +relay.amazon.com +sellercentral.amazon.com +spapi-na.amazon.com +advertising-api.amazon.com +advertising.amazon.com +appstore-tv-prod-na.amazon.com +cscentral.amazon.com +av-na.amazon.com +dcape-na.amazon.com +dna.amazon.com +dv-manifest-service-na-prod.amazon.com +flex-capacity-na.amazon.com +kca.amazon.com +kwis-opf.amazon.com +mag-na.amazon.com +merch.amazon.com +mlis.amazon.com +music-xray-service.amazon.com +na.account.amazon.com +paragon-na.amazon.com +updates.amazon.com +app.lemcal.com +app.lemwarm.com +jdonline.deere.com +www.sheer.com +my.sheer.com +www.pornbox.com +www.analvids.com +www.ddfcontent.com +www.pornworld.com +anfcorp.com +xadsacademy.com +client-api.arkoselabs.com +cdn.arkoselabs.com +customer-sessions.arkoselabs.com +portal.arkoselabs.com +verify.arkoselabs.com +iframe.arkoselabs.com +www.arkoselabs.com +demo.arkoselabs.com +amazonpayinsurance.in +priceline.com +www.avios.com +www.iairgroup.com +www.iaggbs.com +*.iagcargo.com +www.hangar51.com +https://www.shopping.ba.com +https://exchange.shopping.ba.com/ +https://pgt.shopping.ba.com/ +https://rewards.aerlingus.com/ +https://developer.iagloyalty.com +https://shop.ba.com/ +https://partnerservices.avios.com/partnerpages/password/request.html?partner=webgb00001&languagecode=en +https://thewineflyer.co.uk/ +https://www.britishairways.com/travel/btt/execclub/_gf/en_gb +https://rewardsapp.iagl.digital/v3 +https://api.pgt.shopping.ba.com/ +https://docs.iagloyalty.com +app.expertconnect.deere.com +sandbox.secure.checkout.visa.com +www.visainfinite.ca +http://myvisainfinite.com/suntrust/en_us/home.html +http://www.myvisacardportal.com/welcome/enbd/product/# +explore.tari.com +rfc.tari.com +textexplore.tari.com +www.tari.com +www.tarilabs.com +tlu.tarilabs.com +casemanagement-financeconnect.deere.com +fc-devl-casemanagement-financeconnect.deere.com +fc-qual-casemanagement-financeconnect.deere.com +customervoice.biz +your-domain.socialsmbs.com +your-domain.steprep.com +your-domain.smblogin.com +your-domain.pdqs.mobi +your-domain.snapshotreport.biz +task-manager.biz +http://tva.dynamics365portals.us +http://tvasd.dynamics365portals.us +atlantis.spark.ai +local-auth.spark.ai +redirect.spark.ai +v1docs.spark.ai +https://deposits.digitalcommerce.truist.com/ +http://staking.consensys.io +https://consensys.io/ +www.aerlingus.com +acc.kreiselelectric.com +customerportal.kreiselelectric.com +file.kreiselelectric.com +terms.kreiselelectric.com +www.mail.kreiselelectric.com +developer-api-portal.expertconnect.deere.com +app.faraday.ai +api.faraday.ai +customer-identity-qual.deere.com +customer-identity-cert.deere.com +customer-identity.deere.com +https://customer-identity-qual.deere.com/search +https://customer-identity-cert.deere.com/search +https://customer-identity.deere.com/search +https://customer-identity-qual.deere.com/maintain +https://customer-identity-cert.deere.com/maintain +https://customer-identity.deere.com/maintain +customermdm-digital-user-qual.deere.com +customermdm-digital-user-cert.deere.com +customermdm-digital-user-prod.deere.com +reference-data-qual.deere.com +reference-data-cert.deere.com +reference-data.deere.com +https://reference-data-qual.deere.com/reference +https://reference-data-cert.deere.com/reference +https://reference-data.deere.com/reference +https://reference-data-qual.deere.com/syncsort +https://reference-data-cert.deere.com/syncsort +https://reference-data.deere.com/syncsort +mdmcustomerverificationapiqual.devl-vpn.us.e18.c01.johndeerecloud.com +mdmcustomerverificationapi.prod-vpn.us.e18.c01.johndeerecloud.com +hub.yoti.com +identity.yoti.com +partners.vendasta.com +grafana.arthur.deere.com +www.dashboard.gatekeepers.co.in +www.toyotaconnected.co.in +www.toyota.com +www.lexus.com +www.toyotaconnected.com +www.toyotafinancialpr.com +www.lexusfinancial.com +www.global.toyota +www.lexus.jp +www.toyota.jp +www.utility.gac.toyota.com +www.link.gac.toyota.com +www.tddsprogram.com +www.toyotamobility.com +www.trdusa.com +www.toyotacertificados.com +www.toyotacertified.com +www.toyotafinancial.com +www.login.gac.toyota.com +https://ui.com/distributors/ +https://ui.com/training/partners/ +toolsforhumanity.com +getworldcoin.com +bioid-management.app +worldcoin.org +https://cadburygift.com +https://cadburyworld.co.uk +https://csrmdlz.in +https://mystore.mdlz.com +https://mavieencouleurs.fr +https://mdlz-shop.fr +https://perfectsnacks.com +https://wholesale.perfectsnacks.com +https://www.clifbar.com +https://shop.clifbar.com +everynoise.com +spark.fareharbor.com +https://creditcard.digitalcommerce.truist.com/ +www.trekpleister.nl +www.watsons.com.vn +www10.watsons.com.vn +api.watsons.com.vn +autodiscover.unimil.com.br +cpanel.unimil.com.br +datasulpro.unimil.com.br +ftp.unimil.com.br +homoldatasul.unimil.com.br +imap.unimil.com.br +mail.unimil.com.br +mkt.unimil.com.br +mobile.unimil.com.br +ns1.unimil.com.br +ns2.unimil.com.br +pda.unimil.com.br +pop.unimil.com.br +pop3.unimil.com.br +proddatasul.unimil.com.br +proddatasultst.unimil.com.br +smtp.unimil.com.br +unimil.com.br +wap.unimil.com.br +webmail.unimil.com.br +www.unimil.com.br +autodiscover.pla.com.br +ftp.pla.com.br +imap.pla.com.br +lyncdiscover.pla.com.br +mail.pla.com.br +materiais.pla.com.br +mobile.pla.com.br +mysql01.pla.com.br +mysql02.pla.com.br +mysql03.pla.com.br +mysql04.pla.com.br +mysql06.pla.com.br +ns1.pla.com.br +ns2.pla.com.br +ns3.pla.com.br +painel.pla.com.br +pda.pla.com.br +pla.com.br +pop.pla.com.br +pop3.pla.com.br +sip.pla.com.br +sipar.pla.com.br +smtp.pla.com.br +wap.pla.com.br +webmail.pla.com.br +sandboxapi.deere.com +devadminqa.deere.com +atrium.deere.com +coban.pixiv.net +www.grenade-au.com +grenade.com +hukitchen.com +hukitchen.co.uk +www.snack7days.com +sandbox.affirm.com +www.smartsheet.com +kingagro.com +kingagro.com.ar +mail.agrocarbono.com.ar +www.usps.gov +twistonit.oreo.com +https://deere.com +autoconfig.kingagro.com +autodiscover.kingagro.com +www.kingagro.com +www.kingagro.com.ar +kingagro-devl.deere.com +bluerivert.com +bluerivertech.com +assets.harvestprofit.com +calendar.harvestprofit.com +course.harvestprofit.com +dealers-staging.harvestprofit.com +email.harvestprofit.com +fax.harvestprofit.com +files.harvestprofit.com +freetrial.harvestprofit.com +imap.harvestprofit.com +invest.harvestprofit.com +mail.harvestprofit.com +metabase.harvestprofit.com +partners.harvestprofit.com +pop.harvestprofit.com +products.harvestprofit.com +s1._domainkey.harvestprofit.com +smtp.harvestprofit.com +test.harvestprofit.com +autoconfig.kingagro.com.ar +autodiscover.kingagro.com.ar +kingagro.es +lyncdiscover.kingagro.com +mail.kingagro.com +sip.kingagro.com +www.kingagro.es +anubhuti-associates-nlb-323ffbc5be9c6943.elb.ap-south-1.amazonaws.com +anubhuti-common-nlb-b4c5b3b693b55734.elb.ap-south-1.amazonaws.com +anubhuti-local-nlb-6b9d2fc5cd815f6e.elb.ap-south-1.amazonaws.com +anubhuti-registration-nlb-67d4351a2d0c539e.elb.ap-south-1.amazonaws.com +anubhuti-userdata-nlb-3ba0df74c52b028b.elb.ap-south-1.amazonaws.com +anubhuti-userdata-nlb-79fafbcd9dab384c.elb.ap-south-1.amazonaws.com +anubhuti.deere.com +anubhuti.tal.deere.com +anubhutiapi.tal.deere.com +anubhutiapicert.deere.com +anubhutiapiqual.tal.deere.com +anubhutiapis.channel-dss-r1-anubhuti-devl-vpn.ap.e06.c01.johndeerecloud.com +anubhutiapis.channel-dss-r1-anubhuti-qual-vpn.ap.e06.c01.johndeerecloud.com +anubhuticert.deere.com +anubhutiqual.tal.deere.com +apigateway.channel-dss-r1-anubhuti-devl-vpn.ap.e06.c01.johndeerecloud.com +d-z076ywkf28.execute-api.ap-south-1.amazonaws.com +fdpupuapp15.jdpublic.deere.com +fdpupyapp5.jdpublic.deere.com +sim-frontend-nlb-devl-231adec0e420d442.elb.ap-south-1.amazonaws.com +sim-frontend-nlb-qual-a1f0385e06b6ddb6.elb.ap-south-1.amazonaws.com +simfrontend.channel-dss-r1-anubhuti-qual-vpn.ap.e06.c01.johndeerecloud.com +nft.coinbase.com +www.fareharbor.com +remitly.com +api.remitly.io +cards.remitly.io +rewire.com +app.rewire.to +payoneer.com.cn +http://recruit.linepluscorp.com +wakatime.com +monitor.mozilla.org +moments.marriottbonvoy.com +help.marriott.com +https://businessdeposits.digitalcommerce.truist.com +traveler.marriott.com +travelagents.marriott.com/ +mipartnerprivileges.marriott.com +www.dyson.co.uk +www.dyson.com +www.dysoncanada.ca +www.dyson.it +www.dyson.ie +www.dyson.ch +www.dyson.se +www.dyson.nl +www.dyson.at +www.dyson.be +www.dyson.pt +www.dyson.de +www.dyson.fr +www.dyson.no +www.dyson.dk +www.dyson.es +www.fi.dyson.com +api.dyson.se +api.dysoncanada.ca +api.dyson.dk +api.dyson.it +api.dyson.es +api.dyson.co.uk +api.dyson.at +api.dyson.nl +api.dyson.be +api.dyson.pt +api.dyson.no +api.dyson.de +api.dyson.ch +api.dyson.fr +api.dyson.ie +api.dyson.com +api.fi.dyson.com +www.dyson.pl +www.dyson.in +www.dyson.com.mx +www.dyson.com.sg +www.dyson.co.kr +www.dyson.co.nz +www.dyson.com.tr +www.dyson.ae +www.dyson.co.il +www.dyson.com.au +www.dyson.hk +www.dyson.co.th +www.dyson.my +shop.dyson.co.za +www.sa.dyson.com +www.dyson.cz +www.dyson.hu +www.dyson.co.jp +www.dyson.com.ro +www.dyson.vn +*.cp.dyson.com +www.dyson.cn +shop.dyson.ru +business.truecaller.com +account-noneu.truecaller.com +account-onboarding-noneu.truecaller.com +ads-audience-ingestion-noneu.truecaller.com +ads-audience-uploader.truecaller.com +ads-config-engine-noneu.truecaller.com +ads-partner-noneu.truecaller.com +ads-rules-asia-south1.truecaller.com +ads-rules-noneu.truecaller.com +ads5-asia-south1.truecaller.com +api4-asia-south1.truecaller.com +apigw-noneu.truecaller.com +assure-noneu.truecaller.com +audience-uploader-asia-south1.truecaller.com +audience-uploader-noneu.truecaller.com +audience-uploader.truecaller.com +auth4-asia-south1.truecaller.com +auth4-noneu.truecaller.com +backup.truecaller.com +batchlogging4.truecaller.com +callkit-asia-south1.truecaller.com +comments-asia-south1.truecaller.com +comments-noneu.truecaller.com +company-profile-asia-south1.truecaller.com +company-profile-noneu.truecaller.com +contact-lists-noneu.truecaller.com +contact-request-stateless-noneu.truecaller.com +contact-upload4-asia-south1.truecaller.com +contact-upload4.truecaller.com +device-safety-asia-south1.truecaller.com +duo-eu.truecaller.com +duo-invite-eu.truecaller.com +duo-invite-noneu.truecaller.com +duo-invite.truecaller.com +duo-noneu.truecaller.com +duo.truecaller.com +edge-locations5.truecaller.com +email-verification-noneu.truecaller.com +enterprise-account-management-noneu.truecaller.com +enterprise-accounts-noneu.truecaller.com +enterprise-auth-noneu.truecaller.com +enterprise-bizengage-noneu.truecaller.com +enterprise-biznumbers-noneu.truecaller.com +enterprise-feedback-noneu.truecaller.com +enterprise-portal-noneu.truecaller.com +enterprise-reports-noneu.truecaller.com +enterprise-service-management-noneu.truecaller.com +enterprise-survey-asia-south1.truecaller.com +enterprise-survey-noneu.truecaller.com +enterprise-userfeedback-noneu.truecaller.com +enterprise-webhooks-noneu.truecaller.com +feedback-asia-south1.truecaller.com +filter-store4-asia-south1.truecaller.com +filter-store4.truecaller.com +images-asia-south1.truecaller.com +images.truecaller.com +insights-categorizer-noneu.truecaller.com +leadgen-asia-south1.truecaller.com +messenger-previews-asia-south1.truecaller.com +messenger-previews-noneu.truecaller.com +messenger-previews.truecaller.com +messenger-web-relay-compat-noneu.truecaller.com +messenger-web-relay-noneu.truecaller.com +nationalidverification-noneu.truecaller.com +notifications5-asia-south1.truecaller.com +notifications5.truecaller.com +oauth-account-asia-south1.truecaller.com +oauth-portal-asia-south1.truecaller.com +oauth-portal-noneu.truecaller.com +openid-noneu.truecaller.com +opt-out-noneu.truecaller.com +otp-callback-noneu.truecaller.com +outline-asia-south1.truecaller.com +outline-noneu.truecaller.com +partner-account-asia-south1.truecaller.com +partner-account-noneu.truecaller.com +partners-search.truecaller.com +phone-gateway-noneu.truecaller.com +phonebook5-asia-south1.truecaller.com +phonebook5.truecaller.com +pixel-noneu.truecaller.com +pixel.truecaller.com +placement-rules-noneu.truecaller.com +premium-noneu.truecaller.com +presence-grpc-noneu.truecaller.com +presence-grpc.truecaller.com +profile-view-asia-south1.truecaller.com +profile-view.truecaller.com +profile4-asia-south1.truecaller.com +profile4.truecaller.com +push-callerid-noneu.truecaller.com +pushid-asia-south1.truecaller.com +recommended-contacts-noneu.truecaller.com +referrals-asia-south1.truecaller.com +request3-asia-south1.truecaller.com +request3-noneu.truecaller.com +sdk-apps-noneu.truecaller.com +sdk-otp-verification-noneu.truecaller.com +search-external-features-asia-south1.truecaller.com +search-external-features-noneu.truecaller.com +search-warnings-asia-south1.truecaller.com +search-warnings-noneu.truecaller.com +search5-asia-south1.truecaller.com +search5.truecaller.com +stores-api-noneu.truecaller.com +survey-asia-south1.truecaller.com +survey-noneu.truecaller.com +tagging5-asia-south1.truecaller.com +telecom-operator-data-asia-south1.truecaller.com +telecom-operator-data-noneu.truecaller.com +telecom-operator-data.truecaller.com +topspammers-asia-south1.truecaller.com +truehelper-noneu.truecaller.com +unlist5-asia-south1.truecaller.com +unlist5-noneu.truecaller.com +unlist5.truecaller.com +unwanted-communication-extension-noneu.truecaller.com +upload3-asia-south1.truecaller.com +upload3-noneu.truecaller.com +url-metadata-noneu.truecaller.com +user-archive-asia-south1.truecaller.com +valid-names-noneu.truecaller.com +verification-noneu.truecaller.com +video-callerid-noneu.truecaller.com +voip-asia-south1.truecaller.com +web-consent-noneu.truecaller.com +web.truecaller.com +webdirectory-noneu.truecaller.com +webonboarding-noneu.truecaller.com +www.truecaller.com +account-onboarding-eu.truecaller.com +ads-segment-profile-eu.truecaller.com +apple-subscription-monitor-eu.truecaller.com +comments-eu.truecaller.com +company-profile-eu.truecaller.com +contact-lists-eu.truecaller.com +contact-request-stateless-eu.truecaller.com +email-verification-eu.truecaller.com +enterprise-auth-eu.truecaller.com +insights-categorizer-eu.truecaller.com +insights-registry-eu.truecaller.com +messenger-eu.truecaller.com +messenger-previews-eu.truecaller.com +messenger-web-eu.truecaller.com +messenger-web-relay-compat-eu.truecaller.com +messenger-web-relay-eu.truecaller.com +messenger-web-relay-europe-west4.truecaller.com +otp-callback-eu.truecaller.com +partner-account-eu.truecaller.com +phone-gateway-eu.truecaller.com +premium-eu.truecaller.com +presence-grpc-eu.truecaller.com +push-callerid-eu.truecaller.com +request3-eu.truecaller.com +search-warnings-eu.truecaller.com +subscription-monitor-eu.truecaller.com +survey-eu.truecaller.com +truehelper-eu.truecaller.com +unlist5-eu.truecaller.com +unwanted-communication-extension-eu.truecaller.com +valid-names-eu.truecaller.com +verification-eu.truecaller.com +video-callerid-eu.truecaller.com +webdirectory-eu.truecaller.com +webonboarding-eu.truecaller.com +www.dyson.com.ua +getofficial.co +https://cadburygifting.in +https://hukitchen.com +https://www.mavieencouleurs.fr +https://www.cadburygiftsdirect.co.uk +https://www.shopforcadbury.com +https://www.greenandblacks.co.uk +https://www.fundraising.com.au +https://www.tatesbakeshop.com +https://www.oreo.com +https://www.sourpatchkids.com +rates.rewire.com +prod-api.rewards.deere.com +qa.rewards.deere.com +qa1-api.rewards.deere.com +qa1.rewards.deere.com +redeem.rewards.deere.com +stg-api.rewards.deere.com +stg.rewards.deere.com +app3.rewire.to +disneyvacationclub.go.disney.com +dvc-lightcycle-api.wdprapps.disney.com +abcspotdepot.com +teleport.fareharbor.engineering +newline53.com +https://snftest02.matrixcare.com/ +https://dashboard.ectosense.com/login +https://resmed.ectosense.com/login +https://admin.ectosense.com/login +https://nightowl-admin.resmed.com/signin +https://nightowl.resmed.com/signin +https://survey.ectosense.com/assessment/home +support.metamask.io +tickets.metamask.io +https://lending.digitalcommerce.truist.com/ +https://agglayer-test.polygon.technology +reiadventures.force.com +engineering.rei.com +foryourbenefit-rei.com/ +login.rei.com +test-login.rei.com +lowes.com +www.lowesprosupply.com/ +http://www.rei.com/learn/expert-advice +http://collaboration.rei.com +fanduel.com +service.racing.fanduel.com +4njbets.com +4njbets.tvg.com +4njbets.us.betfair.com +login-4njbets.us.betfair.com +login-pabets.tvg.com +www.britishairways.com +www.ba.com +checkin.ba.com +onbusiness.britishairways.com +oauth.baplc.com +https://trade.digitalcommerce.truist.com/ +www.wavecell.com +affiliate-id.tokopedia.com +seller-id.tokopedia.com +shop-id.tokopedia.com +pay.tokopediax.com +dashboard.algolia.com +ebctest.cybersource.com +developer.cybersource.com +sandbox.authorize.net +developer.authorize.net +developer.visa.com +aommetrics.deere.com +blog.cs.money +https://dbc-9a3f8ed1-7608.cloud.databricks.com +service.transunion.com +freeze.transunion.com +disclosure.transunion.com +dispute.transunion.com +fraud.transunion.com +checkmyscore.transunion.com +payment.ionity.eu +support.ionity.eu +dtfapi.deere.com +wavecell.zendesk.com +shop.dyson.tw +www.dyson.tw +sandbox.braintreegateway.com +measure.deere.com +events.deere.com +demo.fareharbor.com +readonly.fareharbor.com +marketing.fareharbor.com +sites.fareharbor.com +www.vueling.com +www.flylevel.com +m.vueling.com +tickets.vueling.com +https://teammate.digitalcommerce.truist.com/ +www.expediataap.com +https://www.aeromexicobusiness.com +https://www.aeromexicovacations.com +https://www.aeromexicorewards.com +https://www.aeromexico.com/es-mx/aeromexico-rewards +https://amfacturacion.aeromexico.com +https://facturacion.aeromexico.com +https://portalfacturacioncargo.aeromexico.com +76ersgc.nba.com +austin.gleague.nba.com +birmingham.gleague.nba.com +blazer5gaming.nba.com +bluecoats.gleague.nba.com +bucksgaming.nba.com +capitalcity.gleague.nba.com +capitanes.gleague.nba.com +cavslegion.nba.com +cdn-bal.nba.com +cdn.gleague.nba.com +celticscrossover.nba.com +cleveland.gleague.nba.com +cms.nba.com +content-api-nextgen-prod.nba.com +cpskyhawks.gleague.nba.com +cweb-ott.nba.com +detroit.gleague.nba.com +duxinfinitos.nba.com +fortwayne.gleague.nba.com +gengtigers.nba.com +global.nba.com +gom.ngss.nba.com +grandrapids.gleague.nba.com +greensboro.gleague.nba.com +grizzgaming.nba.com +hawkstalon.nba.com +heatcheck.nba.com +hornetsvenomgt.nba.com +id.nba.com +ignite.gleague.nba.com +iowa.gleague.nba.com +jazzgaming.nba.com +kingsguard.nba.com +knicksgaming.nba.com +lakersgaming.nba.com +lockervision.nba.com +longisland.gleague.nba.com +magicgaming.nba.com +maine.gleague.nba.com +manage.nba.com +mavsgaming.nba.com +mcd.nba.com +memphis.gleague.nba.com +nblozgaming.nba.com +netsgc.nba.com +oklahomacity.gleague.nba.com +ontario.gleague.nba.com +osceola.gleague.nba.com +pacersgaming.nba.com +pistonsgt.nba.com +raptors905.gleague.nba.com +raptorsuprising.nba.com +riograndevalley.gleague.nba.com +ripcity.gleague.nba.com +saltlakecity.gleague.nba.com +santacruz.gleague.nba.com +siouxfalls.gleague.nba.com +southbay.gleague.nba.com +stats.gleague.nba.com +stats.nba.com +stockton.gleague.nba.com +syndication.nba.com +texas.gleague.nba.com +transfers.nba.com +transmissions.nba.com +twolvesgaming.nba.com +varnish.nba.com +warriorsgs.nba.com +westchester.gleague.nba.com +windycity.gleague.nba.com +wisconsin.gleague.nba.com +wizardsdg.nba.com +aces.wnba.com +dream.wnba.com +fever.wnba.com +liberty.wnba.com +lynx.wnba.com +mercury.wnba.com +mystics.wnba.com +sky.wnba.com +sparks.wnba.com +stats.wnba.com +storm.wnba.com +sun.wnba.com +wings.wnba.com +https://contentcredentials.org/verify +fuze.me +puter.com +manual-library.deere.com +dealerapi.prod-vpn.us.e18.c01.johndeerecloud.com +https://deliveroo.co.uk +www.bossdoorcontrols.com +www.boss-idc.com +digitalparts.deere.com +shield.deere.com +on.com +api.marionnaud.fr +pdcpartsrequest.deere.com +https://contentcredentials.org/ +www.johndeereshop.com +preview.dig.deere.com +sportsbook.caesars.com +api.americanwagering.com +caesarspalaceonline.com +https://caesarspalaceonline.com/us/wv/casino +https://caesarspalaceonline.com/mi/wv/casino +https://caesarspalaceonline.com/ca/on/casino +https://caesarspalaceonline.com/us/nj/casino +https://caesarspalaceonline.com/us/pa/casino +williamhill.us +https://ssologin.guggenheimpartners.com +https://www.guggenheiminvestments.com +https://emp.guggenheimpartners.com/ +https://chiweb.guggenheimpartners.com/ +https://nycweb.guggenheimpartners.com/ +https://remoteassist.guggenheimpartners.com/ +https://www.guggenheimpartners.com/ +https://www.guggenheimsecurities.com/ +https://www.guggenheimpartners.jp/ +https://www.guggenheimpartnersmiddleeast.com/ +https://www.inv-info.com +https://www.acgnet.com/ +acgnet.com +guggenheimpartners.com +guggenheiminvestments.com +guggenheimsecurities.com +guggenheimpartners.jp +guggenheimpartnersmiddleeast.com +inv-info.com +wanlink.us +transparentvalue.com +accretiveasset.com +adventclaymore.com +advisorbenchmarking.com +advisorbenchmarking.net +advisorbenchmarking.org +aerocapitalpartners.com +aerofinancepartners.com +aeroleasefinance.com +alternativeinvestmentseducation.com +alternativesplatform.com +arctic-investment-compact.com +arctic-investment-compact.net +arctic-investment-compact.org +arctic-investment-protocol.com +arctic-investment-protocol.net +arctic-investment-protocol.org +arctic-protocol.com +arctic-protocol.net +arctic-protocol.org +arcticinvestmentcompact.com +arcticinvestmentcompact.net +arcticinvestmentcompact.org +arcticinvestmentprotocol.com +arcticinvestmentprotocol.net +arcticinvestmentprotocol.org +arcticprotocol.com +arcticprotocol.net +arcticprotocol.org +asmartcore.com +asmartercore.com +bigmadeeasy.com +blueprint-asp.com +blueprint401k.com +blueprint401k.net +bondladderingtool.com +bondladdertool.com +bondshares.ca +bondshares.net +bondsharesetf.ca +bondsharesetf.com +bondsharesetfs.ca +bondsharesetfs.com +bondsharesindexes.ca +bondsharesindices.ca +bscottminerd.com +buildyourbondladder.com +bulletbond.ca +bulletbondetf.ca +bulletbondetf.com +bulletbondetfs.ca +bulletbondetfs.com +bulletbondindexes.ca +bulletbondindices.ca +bulletbonds.ca +bulletbonds.com +bulletbondshares.ca +bulletbondshares.com +bulletetfs.ca +bulletetfs.com +bulletfunds.ca +bulletfunds.com +bulletsetfs.ca +bulletsetfs.com +bulletsfunds.ca +bulletsfunds.com +bulletshares.ca +bulletshares.co.uk +bulletshares.com +bulletshares.net +bulletshares.org +bulletsharesefts.com +bulletsharesetf.ca +bulletsharesetf.com +bulletsharesetfs.ca +bulletsharesetfs.com +bulletsharesfunds.ca +web.koho.ca +http://api.koho.ca/1.0 +http://api.koho.ca/partner +app.koho.ca +webgateway.koho.ca +www.koho.ca +usercontent.koho.ca +aveda.com +aveda.co.uk +bobbibrowncosmetics.com +bobbibrown.co.uk +smashbox.com +smashbox.co.uk +clinique.jp +cosmeticscompanystore.ca +cs.estee.com +cy.estee.com +de.estee.com +dk.estee.com +drjart.estee.com +eccqa.estee.com +elc.estee.com +elcbeautyperks.com +elcbeautyperksemea.com +elceurope.com +elclearninglibrary.com +elcompanies.com +elcompanies.net +elcompanies.onmicrosoft.com +elcpress.com +elcprivilege.com +elcv.com +es.estee.com +www.tomfordbeauty.com +theonlinecompanystore.co.nz +theonlinecompanystore.com.au +thecompanyikeepbook.com +techdayofpink.com +elcspark.com +elcompanies.jp +elcompanies.cn +elchackathon.com +elcdev.net +elccompanies.net +elcapp.cn +elcacademy.com +elc.academy +develcompanies.net +za.estee.com +vn.estee.com +compass.fareharbor.com +fhdn.fareharbor.com +https://metrak.metlabs.com/client/ +sandbox.newline53.com +bulletsharesfunds.com +www.gr.dyson.com +abtools.deere.com +bulletsharesindexes.ca +bulletsharesindices.ca +slack-status.com +https://oneview.truist.com +sonar13.marketing-devl.us.e06.c01.johndeerecloud.com +personalsolution.transunion.hk +builder.hostinger.com +devapi.ayoba.me +ayoba-donations.vercel.app +vdp.deere.com +corporate-okta.wellhive.com +tableau.fareharbor.engineering +redis.io +www.magicalphotos.cn +www.shanghaidisneyresort.com +www.shanghaidisneyresort.com.cn +agile.deere.com +vplanjvm.deere.com +investments.truist.com +www.netflix.com +beacon.netflix.com +customerevents.netflix.com +secure.netflix.com +help.netflix.com +ichnaea.netflix.com +presentationtracking.netflix.com +nmtracking.netflix.com +meechum.netflix.com +api.zellepay.com +api.zmsp.earlywarning.com +platformtest.cat.earlywarning.io +https://mywallet-management-east.wallet.cat.earlywarning.io/ +https://mywallet-management-west.wallet.cat.earlywarning.io/ +https://sandbox.digitalwallet.earlywarning.com +earlywarningapi.force.com +zellepay.force.com +zelleservice.my.site.com +ews-fusion.my.site.com +platform.cat.earlywarning.io +on-app-backend.on.com +wsop.com +www.wsop.com +cms.wsop.com +cardpayments.remitly.io +media.remitly.io +partner-webhook.remitly.io +https://stgcef2r.somnoware.com/ +https://myapp.somnoware.com/login +ablink.info.remitly.com +fareharborsites.com diff --git a/src/WILDCARD.txt b/src/WILDCARD.txt new file mode 100644 index 0000000..ca07d85 --- /dev/null +++ b/src/WILDCARD.txt @@ -0,0 +1,3624 @@ +http://*.eu.floqast.app +http://*.floqast.app +http://*.hilton.com +http://*.hilton.io +http://*.hilton.com.tr +http://*.hiltonbusinessonline.com +http://*.hiltonjapan.co.jp +http://*.hiltonmanage.com +http://*.apnic.net +http://*.apnic.foundation +http://*.isif.asia +http://*.seedalliance.net +http://*.apidt.org +http://*.okx.com +http://*.lacity.org +http://*.lacity.gov +http://*.fastly.com +http://*.signalsciences.com +http://*.fanout.io +http://terra-*.indriverapp.com +http://intercity-*.eu-east-1.indriverapp.com +http://*.indriverapp.com +http://*.indriver.com +http://*.indrive.com +http://*.grindr.io +http://*.grindr.com +http://*.grindr.mobi +http://*.dev.grindr.io +http://*.abb.com +http://*.abb +http://*.tnb.com +http://*.abb.com.tr +http://*.abb.com.cn +http://*.baldor.com +http://*.cylon.com +http://*.mwbsys.com +http://*.mb-cosmos.com +http://*.mbamupdates.com +http://*.cloud.malwarebytes.com +http://*.malwarebytes.com +http://*.mwb-threatintel.com +http://*.kiwi.com +http://*.skypicker.com +http://*.sahr.stanford.edu +http://*.8x8.vc +http://*.jit.si +http://*.jitsi.net +http://*.8x8staging.com +http://*.chalet.8x8.com +http://vcc-*.8x8.com +http://*.superbet.ro +http://*.superbet.rs +http://*.superbet.com +http://*.moonpaycloud.com +http://*.hypermint.com +http://*.moonpay.com +http://*.america.gov +http://*.devtestfan1.gov +http://*.fan.gov +http://*.fsgb.gov +http://*.iawg.gov +http://*.ibwc.gov +http://*.osac.gov +http://*.pepfar.gov +http://*.preprodfan.gov +http://*.securitytestfan.gov +http://*.state.gov +http://*.supportfan.gov +http://*.usconsulate.gov +http://*.usdoscloud.gov +http://*.usembassy.gov +http://*.usmission.gov +http://*.elguardia.net +http://*.rewardsforjustice.net +http://*.onezerobank.com +https://login.engelvoelkers.com/* +https://www.engelvoelkers.com/search/* +https://www.engelvoelkers.com/owner-app/login/* +https://www.engelvoelkers.com/owner-app/agent/login/* +https://filewave.engelvoelkers.com/* +https://t-box.engelvoelkers.com/* +https://www.engelvoelkers.com/de/immobilie-bewerten/* +https://www.engelvoelkers.com/de-de/immobilie-verkaufen/* +https://master-data-service.engelvoelkers.com/* +https://leadhub.engelvoelkers.com/* +https://engelvoelkers.tech/* +http://*.boredapeyachtclub.com +http://*.yuga.com +http://*.yugalabs.io +http://*.otherside.xyz +http://*.meebits.app +http://*.cryptopunks.app +http://*.mdvmm.xyz +http://*.expedia.com +http://*.hotwire.com +http://*.orbitz.com +http://*.hotels.com +http://*.homeaway.com +http://*.cheaptickets.com +http://*.travelocity.com +http://*.wotif.com +http://*.cruiseshipcenters.com +http://*.lastminute.com.au +http://*.carrentals.com +http://*.expediapartnercentral.com +http://*.abritel.fr +http://*.bookabach.co.nz +http://*.fewo-direkt.de +http://*.stayz.com.au +http://*.expediagroup.com +http://*.egadvertising.com +http://*.flights.com +http://*.hoteles.com +http://*.hoteis.com +http://*.vrbo.com +http://*.hotwirepartnercentral.com +http://*.ebookers.com +http://*.mrjet.se +http://*.expediapartnersolutions.com +http://*.ean.com +http://*.lastminute.co.nz +http://*.travelocity.ca +http://*.expediaagents.com +http://*.varonis.com +http://*.varonis.io +http://*.goteleport.com +http://*.gravitational.com +http://*.teleport.dev +http://*.teleportinfra.sh +http://*.gravitational.co +http://*.gravitational.io +http://*.avalara.com +http://*.avalara.net +http://*.avalara.io +http://*.papercrane.io +http://*.inposia.com +http://*.netleglobal.com +http://*.crowdreason.com +http://*.track1099.com +http://*.3ce.com +http://*.davosalestax.com +http://*.ttrus.com +http://*.impendulo.com +http://*.deribit.com +http://*.sdm.network +http://*.rivian.com +http://*.rivianservices.com +http://*.allegion.com +http://*.yonomi.co +http://*.allegionengage.com +http://*.isonaspureaccesscloud.com +http://*.my-mobilekey.com +http://*.fossil.com +http://*.michele.com +http://*.misfit.com +http://*.skagen.com +http://*.watchstation.com +http://*.zodiacwatches.com +http://*.mars.com +http://*.marschocolate.com +http://*.mms.com +http://*.pedigree.com +http://*.twix.com +http://*.orbitgum.com +http://*.dovechocolate.com +http://*.extragum.com +http://*.whiskas.com +http://*.royalcanin.com +http://*.skittles.com +http://*.royal-canin.com +http://*.bluepearlvet.com +http://*.banfield.com +http://*.vcahospitals.com +http://*.royalcanin.edu.pl +http://*.individualis.com +http://*.misregalosroyalcanin.es +http://*.moncse-royalcanin-siege.com +http://*.monespaceeleveur.fr +http://*.monespacetoiletteur.com +http://*.monespaceveto.com +http://*.myroyalcanin.gr +http://*.myroyalcanin.hu +http://*.myroyalcanin.ro +http://*.plataformaurinary.com +http://*.rcpracownik.pl +http://*.royalcanin.be +http://*.royalcanin.co.uk +http://*.royalcanin.cz +http://*.royalcanin.es +http://*.royalcanin.fr +http://*.royalcanin.it +http://*.royalcanin.nl +http://*.royalcanin.pl +http://*.royalcanin.pt +http://*.royalcanin.ro +http://*.royalcanin.sk +http://*.royalcaninconcorsi.it +http://*.royalcanin-pethealthday.com +http://*.royalcanin-vouchers.com +http://*.teile-deine-erfahrung-mit-royal-canin.com +http://*.tradetermsrc.com +http://*.wikichat.fr +http://*.wikichien.fr +http://*.eukanubasportingdog.com +http://*.royalcanin.ca +http://*.royalcaninfoodfinder.com +http://*.bibliotecarc.cl +http://*.coroapremiada.com.br +http://*.findroyalcanin.com +http://*.jornadasroyalcanin.com.ar +http://*.miroyalcanin.cl +http://*.miroyalcanin.com.ar +http://*.mivetshop.com.ar +http://*.royal-canin.co.za +http://*.royalcaninproductbook.com +http://*.royalcaninrewards.co.za +http://*.shoproyalcanin.com +http://*.vetschoice.co.za +http://*.banfieldassets.com +http://*.banfieldexchange.com +http://*.banfieldfoundation.com +http://*.banfieldpetexpress.com +http://*.flexport.com +http://*.transmissionapp.com +http://*.trellix.com +http://*.skyhighsecurity.com +http://*.sidefx.com +http://*.tokensvc.com +http://*.production.tkn.zone +http://*.windstreamsmallbusiness.com +http://*broadviewnet.com +http://www.usertesting.com/* +http://*.oanda.com +http://*.oanda.jp +http://*.tms.pl +http://*.tmsbrokers.com +http://www.recargapay.com.br/* +http://secure.recarga.com/* +http://*.wealthsimple.com +http://*.simpletax.ca +http://*.planet.com +http://*.planet-labs.com +http://*.ro.co +http://*.getroman.com +http://*.ropharmacy.com +http://*.hellorory.com +http://*.modernfertility.com +http://*.myplenity.com +http://*.my.automationanywhere.digital +http://*.s02.callsign.com +http://*.* +http://*.shein.com +http://*.romwe.com +http://*.sheingsp.com +http://*.circle.com +http://*.cybavo.com +http://*.securityscorecard.io +http://*.securityscorecard.com +http://*.gymshark.com +http://*.gymshark.io +http://*.instacart.com +http://*.instacart.tools +http://*.ups.com +http://*.sign.plus +http://*.fax.plus +http://*.realogy.* +http://*.bhgre.* +http://*.century21.* +http://*.coldwellbanker.* +http://*.cbcworldwide.* +http://*.corcoran.* +http://*.era.com +http://*.sothebysrealty.* +http://*.nrtllc.* +http://*.trgc.com +http://*.leadrouter.com +http://*.cartus.com +http://*.mycbdesk.com +http://*.anywhere.re +http://*.hy-vee.com +http://*.costco.com +http://*.costco.ca +http://*.costcobusinessdelivery.com +http://*.costcobusinesscentre.ca +http://*.costcotravel.com +http://*.costcotravel.ca +http://*.jetblue.com +http://*.inmobi.com +http://*.glance.com +http://*.glance.app +http://*.glance.world +http://*.glance.inmobi.com +http://*.shop101.com +http://*.dash101.com +http://*.roposo.com +http://*.koralapp.com +http://*.tva.gov +http://*.tva.com +http://*.krisp.ai +http://*.auvik.com +http://*.clubhouse.com +http://*.joinclubhouse.com +http://*.clubhouseapi.com +http://*.jfrog.com +http://*.jfrog.org +http://*.tinder.com +http://*.gotinder.com +http://*.tinderops.net +http://*.tstaging.com +http://*.tstaging.tools +http://*.tinderwebstaging.com +http://*.lacework.net +http://*.nominet.uk +http://*.nominet.org.uk +http://*.nic.uk +http://*.proctor.io +http://*.proctorauth.com +http://*.proctorcollect.com +http://*.proctordata.com +http://*.trafficfactory.biz +http://*.elastic.co +http://*.found.io +http://*.swiftype.com +http://*.elstc.co +http://*.elasticnet.co +http://*.eops.nl +http://*.elastic-cloud.com +http://*.aig.com +http://*.myretirementmanager.com +http://*.corebridgefinancial.com +http://*.aig.co.jp +http://*.aig.ie +http://*cedars-sinai.org +http://*www.cshs.org +http://*csmc.edu +http://*mycslink.org +http://*cedars-sinai.edu +http://*www.marinahospital.com +http://*kerlanjobe.org +http://*sd.invio.dev +http://*app.sourcedrive.org +http://*sourcedrive.org +http://*hhapps.net +http://*hhec.org +http://*hmh-direct.com +http://*hmhdr.com +http://*hmhdr.net +http://*hmhdr.org +http://*hmhrx.com +http://*hmhrx.net +http://*hmhrx.org +http://*hmtest.org +http://*huntingtonhealth.net +http://*huntingtonhealtheconnect.com +http://*huntingtonhealtheconnect.net +http://*huntingtonhealthnetwork.com +http://*huntingtonhealthnetwork.org +http://*huntingtonhealthnetwork.net +http://*huntingtonrx.com +http://*huntingtonrx.net +http://*sangabrielvalleyhealtheconnect.com +http://*sangabrielvalleyhealtheconnect.net +http://*sgveconnect.com +http://*sgveconnect.org +http://*huntingtonhospital.org +http://*huntingtonhospital.com +http://*huntingtonhospital.net +http://*hhcareers.com +http://*hhcompliancewebline.com +http://*hhcompliancewebline.net +http://*hhphysicians.org +http://*huntingtonsurgerycenter.com +http://*ourstory.huntingtonhospital.com +http://*pricing.huntingtonhospital.com +http://*legacy.huntingtonhospital.org +http://*apps.huntingtonhospital.com +http://*appofchoice.huntingtonhospital.com +http://*.thomsonreuters.com +http://*.aktia.fi +http://*.zego.com +http://*.zegocover.com +http://connect.lumiradx.com/* +http://inrstar-it.caresolutions.lumiradx.com/* +http://inrstar-ie.caresolutions.lumiradx.com/* +http://*.snooguts.net +http://*.redditmedia.com +http://*.reddit.com +http://*.redditblog.com +http://*.reddithelp.com +http://*.redditinc.com +http://*.on-running.com +http://*.scopely.io +http://*.scopely.com +http://*.withbuddies.com +http://h1-*your-own-instance*.cloud.mattermost.com +http://*.mattermost.com +http://*.boe.ohio.gov +http://*.militaryvotes.ohio.gov +http://*.ohiobusinesscentral.gov +http://*.ohiosecretaryofstate.gov +http://*.ohiosos.gov +http://*.safeathomeohio.gov +http://*.sos.state.oh.us +http://*.vote.ohio.gov +http://*.voteohio.gov +http://*.electionintegrity.ohio.gov +http://*.1debit.com +http://*.chimebank.com +http://*.chimecard.com +http://*.chime.com +http://*.chmfin.com +http://*.chimepayments.com +http://*.glovoapp.com +http://*.glovoint.com +http://*.glovostore.com +http://*.testglovo.com +http://*.cirrusinsight.com +http://*.cirruspath.com +http://*.zynbitdev.com +http://*.emaplan.com +http://*.emoneyadvisor.com +http://*.panther.com +http://*.runpanther.io +http://*.runpanther.com +http://*.fetlife.com +http://*.whocoronavirus.org +http://*.jimdofree.com +http://*.jimdosite.com +http://*.jimdoreseller.com +http://*.jimdoapi.com +http://*.jimdo-platform.net +http://*.jimdo-data-platform.net +http://*.jimdo-server.com +http://*.jimdo-stable-staging.com +http://*.jimdo-dev-staging.com +http://*.mendix.com +http://*.timeseries.com +http://*.timeseries.nl +http://*.exodus.io +http://*.a.exodus.io +http://*.exodus.com +http://*.services.netlify.com +http://*.services-prod.nsvcs.net +http://*.infra-prod.nsvcs.net +http://*.ops.netlify.com +http://*.onegraph.com +http://*.investnews.com.br +http://*.nubank.com.br +http://*.nu.com.mx +http://*.nu.com.co +http://*.nu.com.ar +http://*.nuinvest.com.br +http://*.spinpay.com.br +http://*.olivia.ai +http://*.cognitect.com +http://*.datomic.com +http://*.easynvest.com.br +http://*.plataformatec.com +http://*.plataformatec.com.br +http://*.nuinternational.com +http://*.investidores.nu +http://*.somoszetta.org.br +http://*.hey.com +http://*vc.logitech.com +http://*.streamlabs.com +http://*.getmeetio.com +http://*.logitech.com +http://*.ultimateearsuniversity.com +http://*.mysqueezebox.com +http://*.logitechmusic.com +http://*.logitechauthorization.com +http://*.logitech-channel-marketing.com +http://*.harmonyremote.com +http://*.slimdevices.com +http://*.uesmartradio.com +http://*.myharmony.com +http://*.streamlabscharity.com +http://*.melonapp.com +http://*.oslo.io +http://*.lucra.live +http://*.logitech.io +http://*.wlo.link +http://*.mevo.com +http://*.logi.com +http://*.crossclip.com +http://*.lukwerks.com +http://*.cognitiveperformer.com +http://*.challonge.com +http://enjinx.io,enjinx.cn,api.enjinx.io,api.enjinx.cn,*.api.enjinx.io,*.api.enjinx.cn +http://assets.enjin.io,cdn.enjin.io,*.cdn.enjin.io,*.cdn.enjin.cn,cdn.enjin.cn,cdn.enjinx.io,cdn.enjinx.cn,enjinusercontent.com,*.enjinusercontent.com +http://*.rebelliondefence.com +http://*.rebelliondefense.com +http://*.rebellion.dev +http://*.moochirp.io +http://*.mooch.rip +http://*-api-*.acronis.com +http://*.acronis.com +http://*.5nine.com +http://*.devicelock.com +http://*.acronis.work +http://*.finra.org +http://ews.qa.finra.org/* +http://*.gener8ads.com +http://*.ct0.app +http://*.mi.com +http://*.xiaomi.com +http://*.miui.com +http://*.xiaomiyoupin.com +http://*.miwifi.com +http://*.betfair.com +http://*.paddypower.com +http://*.betfair.es +http://*.betfair.it +http://*.betfair.ro +http://*.betfair.se +http://*.paddypower.it +http://*.skygamingcontent.com +http://*.skycasino.com +http://*.sbgcdn.com +http://*.skybet.com +http://*.betviewapi.com +http://*.skypoker.com +http://*.skyvegas.com +http://*.skybingo.com +http://*.sbgcore.com +http://*.platformservices.io +http://*.skybetservices.com +http://*.sbgorigin.com +http://*.sbgservices.com +http://*.bonne-terre-data-layer.com +http://*.skybettingandgaming.com +http://*.msgsvc.io +http://*.operationstechnology.io +http://*.securityservices.io +http://*.skybet.net +http://*.skybet.co.uk +http://*.datops.io +http://*.hestview.com +http://*.sbgtest.net +http://*.skybettest.net +http://*.skybettingandgaming.design +http://*.skybettingandgaming.info +http://*.betsharedservices.io +http://*.plateng.io +http://*.alibaba.com +http://*.aliexpress.com +http://*.taobao.com +http://*.tmall.com +http://*.aliyun.com +http://*.alibabacloud.com +http://*.alibaba-inc.com +http://*.aliyun-inc.com +http://*.alimama.com +http://*.daraz.com +http://*.aliexpress.ru +http://*.1688.com +http://*.myndr.net +http://*.myndr.nl +http://*.digitalocean.com +http://www.glassdoor.com/* +http://api.glassdoor.com/* +http://help.glassdoor.com/* +http://*.unibet.com +http://*.unibet.fr +http://*.storspiller.com +http://*.bingo.com +http://*.mariacasino.com +http://*.kolikkopelit.com +http://*.casinohuone.com +http://*.igame.com +http://*.vladcazino.ro +http://*.ottokasino.com +http://*.kindredext.net +http://*.highrolling.nu +http://*.roblox.com +http://*.rbx.com +http://*.guilded.gg +http://*.ra.roblox.com +http://*.nutanix.com +http://*.infra.lifeomic.com +http://*.dev.lifeomic.com +http://ort-admin.pingone.com/* +http://console-staging.pingone.com/* +http://api-staging.pingone.com/* +http://apps-staging.pingone.com/* +http://ort-authenticator.pingone.com/* +http://ort-desktop.pingone.com/* +http://*.ucverse.com +http://*.8x8.com +http://*.packet8.net +http://*.easycontactnow.com +http://*.dxi.eu +http://*.contactnow.8x8.com +http://*.wavecell.com +http://*.8x8e2e.com +http://*.8x8pilot.com +http://*.p8t.us +http://*.8x8.id +http://*.8x8.uk +http://*.8x8.co.uk +http://*.fuze.com +http://*.fuze.site +http://*.thinkingphones.com +http://*.thinkingphones.net +http://*.adgjmp.net +http://*.8x8cloud.net +http://*.sameroom.io +http://*.mycontactual.com +http://*.jitsi.org +http://*.nordvpn.com +http://*.pubg.com +http://*.pubgesports.com +http://*.line.me +http://*.line-apps.com +http://*.line.naver.jp +http://*.line.biz +http://*.worklytics.co +http://*.allegro.pl.allegrosandbox.pl +http://coda.io/* +http://airflow-prod.coda.io/* +http://data.coda.io/* +http://head.coda.io/* +http://infra.coda.io/* +http://airflow-prod.ops.coda.io/* +http://shiny.ops.coda.io/* +http://staging.coda.io/* +http://user-profile-prod.coda.io/* +http://*.coda.io/* +http://user-profile-test.coda.io/* +http://*.fanbox.cc +http://*.kartpay.com +http://*.smartcontract.com +http://*.cryptography.io +http://*.pyopenssl.org +http://*api.trustpilot.com +http://*authenticate.trustpilot.com +http://*invitations-api.trustpilot.com +http://*b2b.trustpilot.com +http://*www.trustpilot.com +http://*widget.trustpilot.com +http://*signup.business.trustpilot.com +http://*emailsignature.trustpilot.com +http://*share.trustpilot.com +http://*business.trustpilot.com +http://*legal.trustpilot.com +http://*.creditkarma.com +http://*.grammarly.io +http://*.grammarlyaws.com +http://*.grammarly.com +http://*.fanduel.com +http://*racing.fanduel.com +http://*.smule.com +http://*.flickr.com +http://*.highwebmedia.com +http://*.securegatewayaccess.com +http://*.mmcdn.com +http://*.bitmex.com +http://*.duckduckgo.com +http://*.staging-airtableblocks.com +http://*.staging.airtable.com +http://*.shipt.com +http://*.arkadiyt.com +http://*.liberapay.com +http://*.newrelic.com +http://*.infrastructure.newrelic.com +http://*.infrastructure-data.newrelic.com +http://*.blog.newrelic.com +http://rpm.newrelic.com/accounts/*/mobile +http://rpm.eu.newrelic.com/accounts/*/mobile +http://*.eu.newrelic.com +http://rpm.newrelic.com/accounts/*/browser +http://rpm.eu.newrelic.com/accounts/*/browser +http://*.nr-data.net +http://*.nr-ops.net +http://*.vanillaforums.com +http://*.vanillacommunities.com +http://*.vanillastaging.com +http://*.vanilladevelopment.com +http://*.vanillacommunity.com +http://*.crowdstrike.com +http://*.humio.com +http://*.securecircle.com +http://*.preempt.com +http://*.preemptsecurity.com +http://*.reposify.com +http://*.lahitapiolarahoitus.fi +http://*.lahitapiola.fi +http://*.tapiola.fi +http://*.semrush.com +http://*.semrush.net +http://*.seoquake.com +http://*.seoab.io +http://*.scatec.io +http://*.myinsights.io +http://*.sellzone.com +http://*.prowly.com +http://*.berush.com +http://*.myteksi.com +http://*.myteksi.net +http://*.grab.com +http://*.grabpay.com +http://*.grab-sure.com +http://*.grabtaxi.com +http://*.grab.co +http://*.spotify.com +http://*.spotify.net +http://*.spotifyforbrands.com +http://*.cuv-prod.app +http://*.wordpress.org +http://*.buddypress.org,bbpress.org,profiles.wordpress.org +http://*.wordcamp.org +http://*.wordpress.net +http://munin-*.wordpress.org +http://*.lyst.com +http://*.lystit.com +http://*.lyst.co +http://*.quora.com +http://*.blockchain.com +http://*.yelp.com +http://*.yelp-support.com +http://*.yelpwifi.com +http://*.secnews.gr +http://*.tube8.com +http://*.gitlab.net +http://*.gitlab.org +http://*.gitlap.com +http://*.zomato.com +http://*.zdev.net +http://*.zomans.com +http://*.hyperpure.com +http://*.runnr.in +http://*.algolia.net +http://*.algolianet.com +http://*.binaryws.com +http://*.deriv.com +http://*.deriv.cloud +http://*.binary.com +http://*.maximum.nl +http://*.shopify.com +http://*.shopifykloud.com +http://*.shopifycloud.com +http://*.ubnt.com +http://*.ui.com +http://*.cloud.vimeo.com +http://*.vimeo.com +http://*.vhx.tv +http://*.magisto.com +http://*.livestream.com +http://*.new.livestream.com +http://*.informatica.com +http://*.informaticacloud.com +http://*.twitter.com +http://*.vine.co +http://*.twimg.com +http://*.urbandictionary.com +http://*.urbandictionary.net +http://*.urbandictionary.biz +http://*.urbandictionary.org +http://*.ud.wtf +http://*.udimg.com +http://*.urbandictionary.blog +http://*.urbanup.com +http://*.urbandictionary.store +http://*.tumblr.com +http://*.srvcs.tumblr.com +http://*.irccloud-cdn.com +http://*.irccloud.com +http://*.mckesson.com +http://*.mckesson.* +http://*.gojekapi.com +http://*.gopayapi.com +http://*.findaya.com +http://*.findaya.co.id +http://*.mab.co.id +http://*.monzo.com +http://*.prod-ffs.io +http://*.av.ru +http://*.azbukavkusa.ru +http://*.companyhub.com +http://*.hackyholidays.h1ctf.com +http://*.d-cd.net +http://*.drive2.ru +http://*.txmblr.com +http://*.spell.run +http://*.ycombinator.com +http://*.cobinhood.com +http://*.upserve.com +http://vpn.*.platfoo.com +http://bastion.*.platfoo.com +http://*.login.gov +http://*.code.gov +http://*.search.gov +http://*.ok.ru +http://*.vk.com +http://*.vk.me +http://*.vk.cc +http://*.vk.link +http://*.appslatam.com +http://*.latamairlines.com +http://*.lanchile.cl +http://*.lanchile.com +http://*.latam.com +http://*.lan.com +http://*.latampass.cl +http://*.latampass.com +http://*.latamcargo.com +http://*.newegg.com +http://*.newegg.ca +https://*.chalet.8x8.com/ws/v1 +http://*.sbs.shutterfly.com +http://*.photoccino.com +http://*.lifetouch.com +http://*.creditkarma.co.uk +https://*.creditkarma.ca +https://*.saytechnologies.com +https://*.say.rocks +http://*.mytaxform.com +https://*.mytaxform.com +http://*.billflow.io +https://*.glassdoor.com/* +http://*.oyorooms.com +http://*.belvilla.com +http://*.dancenter.se +http://*.traum-ferienwohnungen.de +http://*.oyohotels.cn +http://*.oyoos.com +http://*.oyohotels.top +http://*.admiralstrand.dk +http://*.villaxl.com +http://*.tui-ferienhaus.de +http://*.leisure-partners.net +http://*.oyocircle.com +http://*.oyovacationhomes.com +http://*.topictravel.nl +http://*.danland.dk +http://*.direct-booker.com +http://*.booker-tools.com +http://*.belvilla.fr +http://*.stugsommar.se +http://*.oyo-vacation-homes.net +http://*.oyotimessquare.com +http://*.weddingz.in +http://*.oyolasvegas.com +http://*.oyolife.in +http://*.belvilla.net +http://*.innov8.work +http://*.oyotownhouse.com +http://*.workflobyoyo.com +http://*.oyoworkspaces.com +http://*.oyorooms.io +*.shutterfly.com +http://www.oreo.com/* +http://*.sourpatchkids.com +http://www.sourpatchkids.com/* +http://*.oreo.com +*.eu.floqast.app +*.floqast.app +*.hilton.com +*.hilton.io +*.hilton.com.tr +*.hiltonbusinessonline.com +*.hiltonjapan.co.jp +*.hiltonmanage.com +*.apnic.net +*.apnic.foundation +*.isif.asia +*.seedalliance.net +*.apidt.org +*.okx.com +*.lacity.org +*.lacity.gov +https://*.fastly.com/ +*.signalsciences.com +*.fanout.io +terra-*.indriverapp.com +intercity-*.eu-east-1.indriverapp.com +*.indriverapp.com +*.indriver.com +*.indrive.com +*.grindr.io +*.grindr.com +*.grindr.mobi +*.dev.grindr.io +*.abb.com +*.abb +*.tnb.com +*.abb.com.tr +*.abb.com.cn +*.baldor.com +*.cylon.com +*.mwbsys.com +*.mb-cosmos.com +*.mbamupdates.com +*.cloud.malwarebytes.com +*.malwarebytes.com +*.mwb-threatintel.com +*.kiwi.com +*.skypicker.com +*.sahr.stanford.edu +*.8x8.vc +*.jit.si +*.jitsi.net +*.8x8staging.com +*.chalet.8x8.com +vcc-*.8x8.com +*.superbet.ro +*.superbet.rs +*.superbet.com +*.moonpaycloud.com +*.hypermint.com +*.moonpay.com +*.AMERICA.GOV +*.DEVTESTFAN1.GOV +*.FAN.GOV +*.FSGB.GOV +*.IAWG.GOV +*.IBWC.GOV +*.OSAC.GOV +*.PEPFAR.GOV +*.PREPRODFAN.GOV +*.SECURITYTESTFAN.GOV +*.STATE.GOV +*.SUPPORTFAN.GOV +*.USCONSULATE.GOV +*.USDOSCLOUD.GOV +*.USEMBASSY.GOV +*.USMISSION.GOV +*.ELGUARDIA.NET +*.REWARDSFORJUSTICE.NET +*.onezerobank.com +*.boredapeyachtclub.com +*.yuga.com +*.yugalabs.io +*.otherside.xyz +*.meebits.app +*.cryptopunks.app +*.mdvmm.xyz +*.expedia.com +*.hotwire.com +*.orbitz.com +*.hotels.com +*.homeaway.com +*.cheaptickets.com +*.travelocity.com +*.wotif.com +*.cruiseshipcenters.com +*.lastminute.com.au +*.carrentals.com +*.expediapartnercentral.com +*.abritel.fr +*.bookabach.co.nz +*.fewo-direkt.de +*.stayz.com.au +*.expediagroup.com +*.egadvertising.com +*.flights.com +*.hoteles.com +*.hoteis.com +*.vrbo.com +*.hotwirepartnercentral.com +*.ebookers.com +*.mrjet.se +*.expediapartnersolutions.com +*.ean.com +*.lastminute.co.nz +*.travelocity.ca +*.expediaagents.com +*.varonis.com +*.varonis.io +*.goteleport.com +*.gravitational.com +*.teleport.dev +*.teleportinfra.sh +*.gravitational.co +*.gravitational.io +*.avalara.com +*.avalara.net +*.avalara.io +*.papercrane.io +*.inposia.com +*.netleglobal.com +*.crowdreason.com +*.track1099.com +*.3ce.com +*.davosalestax.com +*.ttrus.com +*.impendulo.com +*.deribit.com +*.sdm.network +*.rivian.com +*.rivianservices.com +*.allegion.com +*.yonomi.co +*.allegionengage.com +*.isonaspureaccesscloud.com +*.my-mobilekey.com +*.fossil.com +*.michele.com +*.misfit.com +*.skagen.com +*.watchstation.com +*.zodiacwatches.com +*.mars.com +*.marschocolate.com +*.mms.com +*.pedigree.com +*.twix.com +*.orbitgum.com +*.dovechocolate.com +*.extragum.com +*.whiskas.com +*.royalcanin.com +*.skittles.com +*.royal-canin.com +*.bluepearlvet.com +*.banfield.com +*.vcahospitals.com +*.royalcanin.edu.pl +*.individualis.com +*.misregalosroyalcanin.es +*.moncse-royalcanin-siege.com +*.monespaceeleveur.fr +*.monespacetoiletteur.com +*.monespaceveto.com +*.myroyalcanin.gr +*.myroyalcanin.hu +*.myroyalcanin.ro +*.plataformaurinary.com +*.rcpracownik.pl +*.royalcanin.be +*.royalcanin.co.uk +*.royalcanin.cz +*.royalcanin.es +*.royalcanin.fr +*.royalcanin.it +*.royalcanin.nl +*.royalcanin.pl +*.royalcanin.pt +*.royalcanin.ro +*.royalcanin.sk +*.royalcaninconcorsi.it +*.royalcanin-pethealthday.com +*.royalcanin-vouchers.com +*.teile-deine-erfahrung-mit-royal-canin.com +*.tradetermsrc.com +*.wikichat.fr +*.wikichien.fr +*.eukanubasportingdog.com +*.royalcanin.ca +*.royalcaninfoodfinder.com +*.bibliotecarc.cl +*.coroapremiada.com.br +*.findroyalcanin.com +*.jornadasroyalcanin.com.ar +*.miroyalcanin.cl +*.miroyalcanin.com.ar +*.mivetshop.com.ar +*.royal-canin.co.za +*.royalcaninproductbook.com +*.royalcaninrewards.co.za +*.shoproyalcanin.com +*.vetschoice.co.za +*.banfieldassets.com +*.flexport.com +*.transmissionapp.com +*.sidefx.com +*.tokensvc.com +*.production.tkn.zone +*.windstreamsmallbusiness.com +*broadviewnet.com +www.usertesting.com/* +*.oanda.com +*.oanda.jp +*.tms.pl +*.tmsbrokers.com +www.recargapay.com.br/* +secure.recarga.com/* +*.wealthsimple.com +*.simpletax.ca +*.planet.com +*.planet-labs.com +*.ro.co +*.getroman.com +*.ropharmacy.com +*.hellorory.com +*.modernfertility.com +*.myplenity.com +*.my.automationanywhere.digital +*.s02.callsign.com +*.* +*.shein.com +*.romwe.com +*.sheingsp.com +*.circle.com +*.cybavo.com +*.securityscorecard.io +*.securityscorecard.com +*.gymshark.com +*.gymshark.io +*.instacart.com +*.instacart.tools +*.ups.com +*.sign.plus +*.fax.plus +*.realogy.* +*.bhgre.* +*.century21.* +*.coldwellbanker.* +*.cbcworldwide.* +*.corcoran.* +*.era.com +*.sothebysrealty.* +*.nrtllc.* +*.trgc.com +*.leadrouter.com +*.cartus.com +*.mycbdesk.com +*.anywhere.re +*.hy-vee.com +*.costco.com +*.costco.ca +*.costcobusinessdelivery.com +*.costcobusinesscentre.ca +*.costcotravel.com +*.costcotravel.ca +*.jetblue.com +*.inmobi.com +*.glance.com +*.glance.app +*.glance.world +*.glance.inmobi.com +*.shop101.com +*.dash101.com +*.roposo.com +*.koralapp.com +*.tva.gov +*.tva.com +*.krisp.ai +*.auvik.com +*.clubhouse.com +*.joinclubhouse.com +*.clubhouseapi.com +*.jfrog.com +*.jfrog.org +*.tinder.com +*.gotinder.com +*.tinderops.net +*.tstaging.com +*.tstaging.tools +*.tinderwebstaging.com +*.lacework.net +*.nominet.uk +*.nominet.org.uk +*.nic.uk +*.proctor.io +*.proctorauth.com +*.proctorcollect.com +*.proctordata.com +*.trafficfactory.biz +*.elastic.co +*.found.io +*.swiftype.com +*.elstc.co +*.elasticnet.co +*.eops.nl +*.elastic-cloud.com +*.aig.com +*.myretirementmanager.com +*.corebridgefinancial.com +*.aig.co.jp +*cedars-sinai.org +*www.cshs.org +*csmc.edu +*mycslink.org +*cedars-sinai.edu +*www.marinahospital.com +*kerlanjobe.org +*sd.invio.dev +*app.sourcedrive.org +*sourcedrive.org +*Hhapps.net +*Hhec.org +*Hmh-direct.com +*Hmhdr.com +*Hmhdr.net +*Hmhdr.org +*Hmhrx.com +*Hmhrx.net +*Hmhrx.org +*Hmtest.org +*Huntingtonhealth.net +*Huntingtonhealtheconnect.com +*Huntingtonhealtheconnect.net +*Huntingtonhealthnetwork.com +*Huntingtonhealthnetwork.org +*Huntingtonhealthnetwork.net +*Huntingtonrx.com +*Huntingtonrx.net +*SANGABRIELVALLEYHEALTHECONNECT.COM +*SANGABRIELVALLEYHEALTHECONNECT.NET +*sgveconnect.com +*sgveconnect.org +*huntingtonhospital.org +*huntingtonhospital.com +*huntingtonhospital.net +*hhcareers.com +*hhcompliancewebline.com +*hhcompliancewebline.net +*hhphysicians.org +*huntingtonsurgerycenter.com +*ourstory.huntingtonhospital.com/ +*pricing.huntingtonhospital.com/ +*legacy.huntingtonhospital.org +*apps.huntingtonhospital.com/ +*appofchoice.huntingtonhospital.com/ +*.thomsonreuters.com +*.aktia.fi +*.zego.com +*.zegocover.com +https://connect.lumiradx.com/* +https://inrstar-it.caresolutions.lumiradx.com/* +https://inrstar-ie.caresolutions.lumiradx.com/* +*.snooguts.net +*.redditmedia.com +*.reddit.com +*.redditblog.com +*.reddithelp.com +*.redditinc.com +*.on-running.com +*.scopely.io +*.scopely.com +*.withbuddies.com +h1-*your-own-instance*.cloud.mattermost.com +*.mattermost.com +*.boe.ohio.gov +*.militaryvotes.ohio.gov +*.ohiobusinesscentral.gov +*.ohiosecretaryofstate.gov +*.ohiosos.gov +*.safeathomeohio.gov +*.sos.state.oh.us +*.vote.ohio.gov +*.voteohio.gov +*.electionintegrity.ohio.gov +*.1debit.com +*.chimebank.com +*.chimecard.com +*.chime.com +*.chmfin.com +*.chimepayments.com +*.glovoapp.com +*.glovoint.com +*.glovostore.com +*.testglovo.com +*.cirrusinsight.com +*.cirruspath.com +*.zynbitdev.com +*.emaplan.com +*.emoneyadvisor.com +*.panther.com +*.runpanther.io +*.runpanther.com +*.fetlife.com +*.whocoronavirus.org +*.jimdofree.com +*.jimdosite.com +*.jimdoreseller.com +*.jimdoapi.com +*.jimdo-platform.net +*.jimdo-data-platform.net +*.jimdo-server.com +*.jimdo-stable-staging.com +*.jimdo-dev-staging.com +*.mendix.com +*.timeseries.com +*.timeseries.nl +*.exodus.io +*.a.exodus.io +*.exodus.com +*.services.netlify.com +*.services-prod.nsvcs.net +*.infra-prod.nsvcs.net +*.ops.netlify.com +*.onegraph.com +*.investnews.com.br +*.nubank.com.br +*.nu.com.mx +*.nu.com.co +*.nu.com.ar +*.nuinvest.com.br +*.spinpay.com.br +*.olivia.ai +*.cognitect.com +*.datomic.com +*.easynvest.com.br +*.plataformatec.com +*.plataformatec.com.br +*.nuinternational.com +*.investidores.nu +*.somoszetta.org.br +*.hey.com +*vc.logitech.com +*.streamlabs.com +*.getmeetio.com +*.logitech.com +*.ultimateearsuniversity.com +*.mysqueezebox.com +*.logitechmusic.com +*.logitechauthorization.com +*.logitech-channel-marketing.com +*.harmonyremote.com +*.slimdevices.com +*.uesmartradio.com +*.myharmony.com +*.streamlabscharity.com +*.melonapp.com +*.oslo.io +*.lucra.live +*.logitech.io +*.wlo.link +*.mevo.com +*.logi.com +*.crossclip.com +*.lukwerks.com +*.cognitiveperformer.com +enjinx.io,enjinx.cn,api.enjinx.io,api.enjinx.cn,*.api.enjinx.io,*.api.enjinx.cn +assets.enjin.io,cdn.enjin.io,*.cdn.enjin.io,*.cdn.enjin.cn,cdn.enjin.cn,cdn.enjinx.io,cdn.enjinx.cn,enjinusercontent.com,*.enjinusercontent.com +*.rebelliondefence.com +*.rebelliondefense.com +*.rebellion.dev +*.moochirp.io +*.mooch.rip +*-api-*.acronis.com +*.acronis.com +*.5nine.com +*.devicelock.com +*.acronis.work +*.finra.org +https://ews.qa.finra.org/* +*.ct0.app +*.mi.com +*.xiaomi.com +*.miui.com +*.xiaomiyoupin.com +*.miwifi.com +*.betfair.com +*.paddypower.com +*.betfair.es +*.betfair.it +*.betfair.ro +*.betfair.se +*.paddypower.it +*.skygamingcontent.com +*.skycasino.com +*.sbgcdn.com +*.skybet.com +*.betviewapi.com +*.skypoker.com +*.skyvegas.com +*.skybingo.com +*.sbgcore.com +*.platformservices.io +*.skybetservices.com +*.sbgorigin.com +*.sbgservices.com +*.bonne-terre-data-layer.com +*.skybettingandgaming.com +*.msgsvc.io +*.operationstechnology.io +*.securityservices.io +*.skybet.net +*.skybet.co.uk +*.datops.io +*.hestview.com +*.sbgtest.net +*.skybettest.net +*.skybettingandgaming.design +*.skybettingandgaming.info +*.betsharedservices.io +*.plateng.io +*.alibaba.com +*.aliexpress.com +*.taobao.com +*.tmall.com +*.aliyun.com +*.alibabacloud.com +*.alibaba-inc.com +*.aliyun-inc.com +*.alimama.com +*.Daraz.com +*.aliexpress.ru +*.1688.com +*.myndr.net +*.myndr.nl +*.digitalocean.com +https://www.glassdoor.com/* +https://api.glassdoor.com/* +https://help.glassdoor.com/* +*.unibet.com +*.unibet.fr +*.storspiller.com +*.bingo.com +*.mariacasino.com +*.kolikkopelit.com +*.casinohuone.com +*.igame.com +*.vladcazino.ro +*.ottokasino.com +*.kindredext.net +*.highrolling.nu +*.roblox.com +*.rbx.com +*.guilded.gg +*.ra.roblox.com +*.nutanix.com +*.infra.lifeomic.com +*.dev.lifeomic.com +https://ort-admin.pingone.com/* +https://console-staging.pingone.com/* +https://api-staging.pingone.com/* +https://apps-staging.pingone.com/* +https://ort-authenticator.pingone.com/* +https://ort-desktop.pingone.com/* +*.ucverse.com +*.8x8.com +*.packet8.net +*.easycontactnow.com +*.dxi.eu +*.contactnow.8x8.com +*.wavecell.com +*.8x8e2e.com +*.8x8pilot.com +*.p8t.us +*.8x8.id +*.8x8.uk +*.8x8.co.uk +*.fuze.com +*.fuze.site +*.thinkingphones.com +*.thinkingphones.net +*.adgjmp.net +*.8x8cloud.net +*.sameroom.io +*.mycontactual.com +*.jitsi.org +*.nordvpn.com +*.pubg.com +*.pubgesports.com +*.line.me +*.line-apps.com +*.line.naver.jp +*.line.biz +*.worklytics.co +*.allegro.pl.allegrosandbox.pl +https://coda.io/* +https://airflow-prod.coda.io/* +https://data.coda.io/* +https://head.coda.io/* +https://infra.coda.io/* +https://airflow-prod.ops.coda.io/* +https://shiny.ops.coda.io/* +https://staging.coda.io/* +https://user-profile-prod.coda.io/* +https://*.coda.io/* +https://user-profile-test.coda.io/* +*.fanbox.cc +https://*.walletinsights.com +*.smartcontract.com +*.cryptography.io +*.pyopenssl.org +*api.trustpilot.com +*authenticate.trustpilot.com +*invitations-api.trustpilot.com +*b2b.trustpilot.com +*www.trustpilot.com +*widget.trustpilot.com +*signup.business.trustpilot.com +*emailsignature.trustpilot.com +*share.trustpilot.com +*business.trustpilot.com +*legal.trustpilot.com +https://*.creditkarma.com +*.grammarly.io +*.grammarlyaws.com +*.grammarly.com +*.fanduel.com +*racing.fanduel.com +*.smule.com +*.flickr.com +*.highwebmedia.com +*.securegatewayaccess.com +*.mmcdn.com +*.bitmex.com +*.duckduckgo.com +*.staging-airtableblocks.com +*.staging.airtable.com +*.shipt.com +*.arkadiyt.com +*.liberapay.com +*.newrelic.com +*.infrastructure.newrelic.com +*.infrastructure-data.newrelic.com +*.blog.newrelic.com +rpm.newrelic.com/accounts/*/mobile +rpm.eu.newrelic.com/accounts/*/mobile +*.eu.newrelic.com +rpm.newrelic.com/accounts/*/browser +rpm.eu.newrelic.com/accounts/*/browser +*.nr-data.net +*.nr-ops.net +*.crowdstrike.com +*.humio.com +*.securecircle.com +*.preempt.com +*.preemptsecurity.com +*.reposify.com +*.lahitapiolarahoitus.fi +*.lahitapiola.fi +*.tapiola.fi +*.semrush.com +*.semrush.net +*.seoquake.com +*.seoab.io +*.scatec.io +*.myinsights.io +*.sellzone.com +*.prowly.com +*.berush.com +*.myteksi.com +*.myteksi.net +*.grab.com +*.grabpay.com +*.grab-sure.com +*.grabtaxi.com +*.grab.co +*.wordpress.org +*.buddypress.org,bbpress.org,profiles.wordpress.org +*.wordcamp.org +*.wordpress.net +munin-*.wordpress.org +*.lyst.com +*.lystit.com +*.lyst.co +*.quora.com +*.blockchain.com +*.yelp.com +*.yelp-support.com +*.yelpwifi.com +*.tube8.com +*.gitlab.net +*.gitlab.org +*.gitlap.com +*.zomato.com +*.zdev.net +*.zomans.com +*.hyperpure.com +*.runnr.in +*.binaryws.com +*.deriv.com +*.deriv.cloud +*.binary.com +*.maximum.nl +*.shopify.com +*.shopifykloud.com +*.shopifycloud.com +*.ubnt.com +*.ui.com +*.cloud.vimeo.com +*.vimeo.com +*.vhx.tv +*.magisto.com +*.livestream.com +*.new.livestream.com +*.informatica.com +*.informaticacloud.com +*.twitter.com +*.vine.co +*.twimg.com +*.tumblr.com +*.srvcs.tumblr.com +*.irccloud-cdn.com +*.irccloud.com +*.Mckesson.com +*.mckesson.* +*.trellix.com +*.skyhighsecurity.com +*.gojekapi.com +*.gopayapi.com +*.findaya.com +*.findaya.co.id +*.mab.co.id +*.av.ru +*.azbukavkusa.ru +*.gener8ads.com +*.companyhub.com +*.hackyholidays.h1ctf.com +*.d-cd.net +*.drive2.ru +*.txmblr.com +*.spell.run +*.kartpay.com +*.ycombinator.com +https://*.cobinhood.com +*.upserve.com +*.vanillaforums.com +*.vanillacommunities.com +*.vanillastaging.com +*.vanilladevelopment.com +*.vanillacommunity.com +*.login.gov +*.code.gov +*.search.gov +*.cuv-prod.app +*.secnews.gr +*.algolia.net +*.algolianet.com +*.ok.ru +*.vk.com +*.vk.me +*.vk.cc +*.vk.link +*.urbandictionary.com +*.urbandictionary.net +*.urbandictionary.biz +*.urbandictionary.org +*.ud.wtf +*.udimg.com +*.urbandictionary.blog +*.urbanup.com +*.urbandictionary.store +*.wellsfargo.com +*.wf.com +*.landrysinc.com +*.landrysambassador.com +*.landrysselect.com +*.ldry.com +*.goldennugget.com +*.tilmanfertitta.com +*.thepostoak.com +*.thepostoakhotel.com +*.shoppostoak.com +*.goriocruises.com +*.kemahboardwalk.com +*.aquariumrestaurants.com +*.mountsinai.org +*.mssm.edu +*.stoppain.org +*.nyee2020.com +*.healthandhealingny.org +*.bethisraelny.org +*.thehealthcenterhudsonyards.com +*.thechep.org +*.nyeesurgnet.com +*.mountsinaiconnect.org +*.dubinbreastcenter.com +*.arnholdinstitute.org +*.wtcexams.org +*.stlukeshospitalnyc.org +*.sinaidowntown.net +*.sarcoidosis.org +*.medicalconciergenyc.com +*.healthandhealingny.com +*.carelink.mountsinaiconnect.org +*.usmgny.org +*.slrortho.com +*.nycepilepsyteam.com +*.cccsymposium.org +*.msonsitehealth.org +*.mountsinaiheartnp.org +*.healthbytesnyc.com +*.mountsinaidoctors.org +*.snch.org +*.southnassau.org +https://*.vineprotect.com +https://*.alertxpress.com +https://*.registervpo.com +https://*.justicexchange.com +*.idwatchdog.com +*.mercury.com.au +http://*.grofer.io +https://www.fishbowlapp.com/* +https://api.fishbowlapp.com/* +*.cdgfossil.com +*.linkplatforms.com +*.cdgcitizen.com +*.fossil.vn +*.smartwatchstations.com +*.misfitwearables.com +*.jimdo.com +*.jimdo.systems +*.cafepress.com +*.canvasworld.com +*.gifts.com +*.iseeme.com +*.mycustomcase.com +*.personalcreations.com +*.photoaffections.com +*.simplytoimpress.com +*.sportinglife.com +*.paddypartners.com +*.fossilgroup.com +*.defend.egress.com +*.esi.egress.com +*.reader.egress.com +*.10ktf.com +*.wenewmoments.com +*.ntcusa.com +*exceleratorparts.com +*.magicjackpot.ro +*.kes.kindredext.net +test*.redoxengine.com +*.palm.tech +*.fossil.com.hk +*.fossil.com.au +*.hiltonlocalbiz.com +*.hiltonhotels.jp +*.streetscape.com +*.advisorchannel.com +*.mystreetscape.com +*.wealthscape.com +*.massmutual.com +*53.com +*.acertandosuascontas.com.br +*.acordocerto.com.br +*.boavistascpc.com.br +*.boavistaservicos.com.br +*.bvsnet.com.br +*.certificadoboavista.com.br +*.consumidorpositivo.com.br +*.konduto.com +*.redeverdeamarela.com.br +*.scpcnet.com.br +*.servicodeprotecaoaocredito.com.br +*.seuladobom.com.br +*.fraudday.com +*.konduto.blog +https://*.kit.com +*.fertittaentertainmentinc.com +*.aboitizpower.com +*.snaboitiz.com +*.enerzone.com.ph +*.cotabatolight.com +*.davaolight.com +*.oilbu.com +*.visayanelectric.com +*.hedcor.com +*.apps.sofa.csg.aboitizpower.org +*.aktiawallet.fi +*.abnamro.com +*.abnamro.nl +*.tikkie.me +*.aahg.nl +*.abnamrocomfin.com +*.abnamro.org +*.alfam.nl +*.bethmannbank.de +*neuflizeobc.fr +*abnamroprivatebanking.be +*.abnamro.be +*.florius.nl +*.moneyou.nl +*.abnamrolease.com +*.abnamroinvestmentsolutions.com +*.spinaway.com +*.luckydays.com +*.luckydays.ca +*.shaya.com.tr +*.starbucks.com.kz +*.aloyoga.ae +*.aloyoga.com.kw +*.aloyoga.com.qa +*.alshayaenterprises.com +*.americaneagle.ae +*.americaneagle.com.bh +*.americaneagle.com.eg +*.americaneagle.com.jo +*.americaneagle.com.kw +*.americaneagle.com.qa +*.americaneagle.com.sa +*.bathandbodyworks.ae +*.westelm.com.sa +*.westelm.com.kw +*.westelm.ae +*.victoriassecret.pl +*.victoriassecret.com.tr +*.victoriassecret.com.sa +*.victoriassecret.com.qa +*.victoriassecret.com.kw +*.victoriassecret.ae +*.victoriassecreatbeauty.ro +*.thebodyshop.qa +*.thebodyshop.pl +*.thebodyshop.com.tr +*.thebodyshop.com.kw +*.thebodyshop.com.eg +*.thebodyshop.com.bh +*.starbuckscardtr.com +*.starbucks.com.tr +*.shakeshack.co.uk +*.potterybarnkids.com.sa +*.potterybarnkids.com.kw +*.potterybarnkids.ae +*.potterybarn.com.sa +*.potterybarn.com.kw +*.potterybarn.ae +*.paylessshoes.ae +*.payless.com.kw +*.muji.qa +*.muji.com.sa +*.muji.com.kw +*.muji.bh +*.muji.ae +*.mothercare.qa +*.mothercare.com.sa +*.mothercare.com.kw +*.mothercare.com.eg +*.mothercare.ae +*.kidzaniakuwait-tickets.com +*.footlocker.qa +*.footlocker.com.eg +*.footlocker.com.bh +*.footlocker.ae +*.debenhams.sa +*.debenhams.com.kw +*.debenhams.ae +*.bathandbodyworks.pl +*.bathandbodyworks.jo +*.bathandbodyworks.com.tr +*.bathandbodyworks.com.sa +*.bathandbodyworks.com.qa +*.bathandbodyworks.com.kw +*.bathandbodyworks.com.eg +*.bathandbodyworks.com.bh +*.alshaya.com +*.carrier.alshaya.com +*.supplier.alshaya.com +*.starbucks.az +*.tamanna.com +*.ppbdev.com +*.gocardless.io,*.gocardless-banking.io +*.gocardless-cicd.io +*.gocardless.com +*.gocardless-staging.io +*.gocardless-lab.io +*.gocardless.dev +*.new10.com +*.brightspeed.com +*.paystack.com +*.reuters.com +*.cto-si.zebra.com +*.aven.com +https://*.indriver.io +https://*.indriverjob.com +*.dibz.co.uk +*.bandcamp.com +*.bcbits.com +*.hypr.com +*.securevetsource.com +*.mytva.com +*.tva-energyright.com +*.tvaenergyrightsolutions.com +*.front.com +*.boozt.com +*.booztlet.com +*.trip.com +*.key.com +*.key2businesscard.com +*.keyapsolutions.com +*.keybank.com +*.keydirect.com +*.keyequipmentfinance.com +*.laurelroad.com +*.xup-onboarding.com +*.xuphub.com +*.xuppay-statement-analyzer.com +*.xuppay.com +*.xupservicing.com +*.xupsupport.com +qm-*.8x8.com +*.snapfish.com +*.derivws.com +*.mainstreamsasp.com +*.bovis.es +*.cbreglobalinvestors.com +*.cbregres.com +*.cbreim.com +*.cbreinvestmentmanagement.com +*.cbreinvestors.com +*.cbrevietnam.com +*.coldrivertax.com +*.commercialloanservices.com +*.corporateproperty.com.au +*.e2ctechnology.com +*.eashaw.co.uk +*.eashaw.com +*.envassetsvcs.com +*.facilitysource.com +*.floridavaluation.com +*.forumanalytics.com +*.hanaspaces.com +*.greatleasedeals.com +*.intego.dk +*.norland.sg +*.norlandcafm.co.uk +*.norlandenergy.com +*.norlandgreen.co.uk +*.norlandmanagedservices.com +*.norlandmanagedservices.ie +*.norlandmanagedservices.sg +*.norlandms.co.uk +*.norlandms.com +*.norlandms.ie +*.norlandprojects.co.uk +*.romonet.com +*.sequentra.com +*.siteready.com +*.sitereadyllc.com +*.spacespot.com +*.telfordhomes.london +*.thinkesi.com +*.uniongaming.com +*.usequities.com +*.yourhana.com +*.threatdown.com +*.bybit.com +*.10tenmagazine.com +http://*.grofers.com +https://*.corp.mongodb.com* +*.busch-jaeger.* +*.busch-jaeger.de +*.busch-jaeger.at +*.busch-jaeger.nl +*.busch-jaeger.nu +*.in.abb.com +*.ch.abb.com +*.fi.abb.com +*.pl.abb.com +*.cirrus.abb.com +*.stratus.abb.com +*.xc.abb.com +*.ability.abb +*.gb.abb.com +*.it.abb.com +*.cn.abb.com +*.de.abb.com +*.ru.abb.com +*.abb-drives.com +*.motion.abb.com +*.pdc.abb.com +*.evcharging.abb.com +*.motors.abb.com +*.motors.abb.com.cn +*.cms.abb +*.br-automation.com +*.abb.nl +*.abb.at +*.abb.de +*.abb.ca +*.abb.ch +*.abb.cn +*.abb.co.in +*.abb.fr +*.abb.in +*.abb.pl +*.abb.se +*.abb.net +*.111watches.com +*.54fossil.com +*.abacuswatches.com +*.abacuswatches.net +*.antima.ch +*.armani-watches.eu +*.b2btimeframes.com +*.cmd-network.com +*.cmdportfolio.com +*.colortheorywatches.com +*.datafossil.com +*.dieselgioielli.it +*.dieseljewellery.it +*.dieselorologi.it +*.dieseltimeframes.at +*.dieseltimeframes.cn +*.dieseltimeframes.co.kr +*.dieseltimeframes.co.nl +*.dieseltimeframes.co.uk +*.dieseltimeframes.de +*.dieseltimeframes.fr +*.dieseltimeframes.it +*.dieseltimeframes.jp +*.dieseltimeframes.kr +*.erelic.com +*.fgcdn.com +*.fgservices.com +*.fgtoolbox.com +*.fiftyfourfossil.com +*.forrus.com.hk +*.fossi.com +*.fossil-asia.com +*.fossil-polska.pl +*.fossil-schmuck.at +*.fossil-schmuck.de +*.fossil-uhren.de +*.fossil.asia +*.fossil.at +*.fossil.be +*.fossil.ch +*.fossil.cl +*.fossil.co +*.fossil.co.id +*.fossil.co.in +*.fossil.co.jp +*.fossil.co.kr +*.fossil.co.no +*.fossil.co.th +*.fossil.co.uk +*.fossil.co.za +*.fossil.com.es +*.fossil.com.lk +*.fossil.com.mo +*.fossil.com.mx +*.fossil.com.my +*.fossil.com.ph +*.fossil.com.pk +*.fossil.com.ro +*.fossil.com.tw +*.fossil.com.vn +*.fossil.de +*.fossil.es +*.fossil.eu +*.fossil.fr +*.fossil.hk +*.fossil.ie +*.fossil.in +*.fossil.it +*.fossil.kr +*.fossil.li +*.fossil.lk +*.fossil.mo +*.fossil.mx +*.fossil.my +*.fossil.net.cn +*.fossil.net.nz +*.fossil.nl +*.fossil.org.nz +*.fossil.ph +*.fossil.pt +*.fossil.se +*.fossil.sg +*.fossil.tw +*.fossil54.com +*.fossilaustralia.com.au +*.fossilcanada.ca +*.fossilcanada.com +*.fossilcare.com +*.fossilchina.cn +*.fossilchina.com.cn +*.fossilchina.xn--fiqs8s +*.fossilcollectorsclub.com +*.fossilcorporatemarkets.com +*.fossilcrm.com +*.fossildenmark.dk +*.fossilfiftyfour.com +*.fossilfootwear.ca +*.fossilfootwear.ch +*.fossilfootwear.cn +*.fossilfootwear.co.uk +*.fossilfootwear.com.es +*.fossilfootwear.com.fr +*.fossilfootwear.com.mo +*.fossilfootwear.com.mx +*.fossilfootwear.es +*.fossilfootwear.eu +*.fossilfootwear.hk +*.fossilfootwear.in +*.fossilfootwear.it +*.fossilfootwear.jp +*.fossilfootwear.kr +*.fossilfootwear.my +*.fossilfootwear.nl +*.fossilfootwear.ph +*.fossilfootwear.pk +*.fossilfootwear.sg +*.fossilfootwear.tw +*.fossilfootwear.vn +*.fossilfoundation.com +*.fossilfoundation.org +*.fossilglobal.com +*.fossilgroup.cn +*.fossilgroup.co.nz +*.fossilgroup.com.au +*.fossilgroup.com.bd +*.fossilgroup.fr +*.fossilgroup.hk +*.fossilgroup.in +*.fossilgroup.jp +*.fossilgroup.kr +*.fossilgroup.nl +*.fossilgroup.nz +*.fossilgroup.pt +*.fossilgroup.sg +*.fossilgroup.tw +*.fossilgroup.us +*.fossilhorologes.nl +*.fossilindia.com +*.fossiljapansalestore.com +*.fossilmalaysia.com +*.fossilnorway.co.no +*.fossilnorway.no +*.fossilnz.co.nz +*.fossilnz.net.nz +*.fossilnz.nz +*.fossilonline.co.za +*.fossilpolska.pl +*.fossilq.com +*.fossilq.tv +*.fossilqmuse.tv +*.fossilqpilot.tv +*.fossilqranger.tv +*.fossilqwanderer.tv +*.fossilqwatch.tv +*.fossilrevelver.tv +*.fossilsafeworkplace.com +*.fossilschmuck.at +*.fossilschmuck.com +*.fossilschmuck.de +*.fossilshoe.at +*.fossilshoe.ca +*.fossilshoe.ch +*.fossilshoe.cn +*.fossilshoe.co.uk +*.fossilshoe.com.es +*.fossilshoe.com.mo +*.fossilshoe.com.mx +*.fossilshoe.de +*.fossilshoe.es +*.fossilshoe.eu +*.fossilshoe.fr +*.fossilshoe.hk +*.fossilshoe.in +*.fossilshoe.it +*.fossilshoe.jp +*.fossilshoe.kr +*.fossilshoe.my +*.fossilshoe.net.cn +*.fossilshoe.nl +*.fossilshoe.org.cn +*.fossilshoe.ph +*.fossilshoe.pk +*.fossilshoe.sg +*.fossilshoe.tw +*.fossilshoe.vn +*.fossilshoes.at +*.fossilshoes.ch +*.fossilshoes.cn +*.fossilshoes.co.uk +*.fossilshoes.com.au +*.fossilshoes.com.mo +*.fossilshoes.com.mx +*.fossilshoes.de +*.fossilshoes.eu +*.fossilshoes.fr +*.fossilshoes.hk +*.fossilshoes.in +*.fossilshoes.jp +*.fossilshoes.kr +*.fossilshoes.my +*.fossilshoes.nl +*.fossilshoes.ph +*.fossilshoes.pk +*.fossilshoes.sg +*.fossilshoes.tw +*.fossilshoes.vn +*.fossilsignapore.sg +*.fossilsing.com.sg +*.fossilsingapore.com.sg +*.fossilsingapore.sg +*.fossilspecialmarkets.com +*.fossilstore.ca +*.fossilstores.ca +*.fossilsweden.se +*.fossiluhren.at +*.fossilunbound.com +*.fossilunbound.org +*.fossilwatch.ca +*.fossilwatches.info +*.fossilwatchesstore.com +*.fossilworkflow.com +*.googledev.fossil.com +*.inkandironswatches.com +*.irelic.com +*.karlwatches.com +*.lewatchcollections.com +*.logisav.com +*.maketimeforgood.com +*.metro-servicecenter.com +*.metroservicecenter.com +*.metroservicecentre.ca +*.metroservicecentrecanada.ca +*.metrowatchcompany.com +*.michele-watches.com +*.michele.asia +*.michele.co +*.michele.co.kr +*.michele.eu +*.michele.jp +*.michele.mobi +*.micheleuhren.de +*.michelewatch.co.uk +*.michelewatch.com +*.michelewatch.de +*.michelewatch.jp +*.michelewatch.net +*.michelewatches.biz +*.michelewatches.ch +*.michelewatches.co.uk +*.michelewatches.com +*.michelewatches.de +*.michelewatches.jp +*.michelewatches.net +*.michelewatches.org +*.michelewatches.us +*.michellewatch.com +*.michellewatches.com +*.modernwatch.com +*.modernwatch.net +*.modernwatchco.com +*.modernwatchco.net +*.modernwatchcompany.com +*.modernwatchcompany.net +*.modwatchco.com +*.modwatchco.net +*.monamiewatch.com +*.monamiewatches.com +*.morewearablewearable.com +*.mw-michele.com +*.mw-watches.com +*.mwmichele.com +*.mwwatches.com +*.myskagen.info +*.myskagen.net +*.myskagen.org +*.olieoliverwatches.com +*.oneelevenwatches.com +*.relic.co +*.relicbrand.com +*.relicbrand.net +*.relicshop.com +*.relicstore.com +*.relicwatch.com +*.relicwatches.com +*.relicwatches.net +*.shopcatchin.com +*.shopkatchin.com +*.skagen-designs.at +*.skagen-designs.be +*.skagen-designs.ch +*.skagen-designs.de +*.skagen-designs.lu +*.skagen-designs.nl +*.skagen-japan.com +*.skagen.ae +*.skagen.asia +*.skagen.bg +*.skagen.ch +*.skagen.co +*.skagen.co.il +*.skagen.co.in +*.skagen.co.nl +*.skagen.co.nz +*.skagen.co.th +*.skagen.co.uk +*.skagen.co.za +*.skagen.com.au +*.skagen.com.pl +*.skagen.com.tr +*.skagen.com.ua +*.skagen.de +*.skagen.de.com +*.skagen.es +*.skagen.fr +*.skagen.gr +*.skagen.hk +*.skagen.in +*.skagen.it +*.skagen.kr +*.skagen.mx +*.skagen.my +*.skagen.ph +*.skagen.pk +*.skagen.pt +*.skagen.ro +*.skagen.sk +*.skagen.tw +*.skagen.vn +*.skagen.xn--kpry57d +*.skagen20years.info +*.skagen20years.net +*.skagen20years.org +*.skagenbrand.at +*.skagenbrand.cn +*.skagenbrand.de +*.skagenbrand.hk +*.skagenbrand.it +*.skagenbrand.kr +*.skagenbrand.my +*.skagenbrand.sg +*.skagenbrand.tw +*.skagenclocks.biz +*.skagenclocks.com +*.skagenclocks.info +*.skagenclocks.mobi +*.skagenclocks.net +*.skagenclocks.org +*.skagenclocks.us +*.skagenconnected.com +*.skagencorporate.com +*.skagendenmark.ca +*.skagendenmark.cn +*.skagendenmark.fr +*.skagendenmark.hk +*.skagendenmark.kr +*.skagendenmark.tw +*.skagendesign.cn +*.skagendesign.hk +*.skagendesign.kr +*.skagendesign.tw +*.skagendesigns.at +*.skagendesigns.be +*.skagendesigns.biz +*.skagendesigns.cn +*.skagendesigns.co.uk +*.skagendesigns.com +*.skagendesigns.dk +*.skagendesigns.fr +*.skagendesigns.hk +*.skagendesigns.jp +*.skagendesigns.kr +*.skagendesigns.lu +*.skagendesigns.mobi +*.skagendesigns.nl +*.skagendesigns.org +*.skagendesigns.ru +*.skagendesigns.se +*.skagendesigns.us +*.skagendesignsmedia.com +*.skagendesings.com +*.skagengermany.de +*.skagenglobal.com +*.skagenhorloge.nl +*.skagenhorologe.nl +*.skagenhygge.co.uk +*.skagenhygge.com +*.skagenjewelry.com +*.skagenjewelry.info +*.skagenjewelry.net +*.skagenjewelry.org +*.skagenonline.com +*.skagenora.hu +*.skagenoutlet.com +*.skagenoutlet.info +*.skagenoutlet.net +*.skagenoutlet.org +*.skagenretail.com +*.skagenretail.info +*.skagenretail.net +*.skagenretail.org +*.skagensale.com +*.skagensale.net +*.skagensdesigns.cn +*.skagenshades.com +*.skagenshadows.com +*.skagenshadows.net +*.skagensite.com +*.skagensteel.com +*.skagensteel.info +*.skagensteel.net +*.skagensteel.org +*.skagenstore.ca +*.skagenstore.com +*.skagensunglasses.com +*.skagensunglasses.info +*.skagensunglasses.net +*.skagensunglasses.org +*.skagentitanium.biz +*.skagentitanium.com +*.skagentitanium.info +*.skagentitanium.mobi +*.skagentitanium.net +*.skagentitanium.org +*.skagentitanium.us +*.skagenuk.com +*.skagenwatch.at +*.skagenwatch.be +*.skagenwatch.bg +*.skagenwatch.cn +*.skagenwatch.co.nz +*.skagenwatch.co.uk +*.skagenwatch.com.au +*.skagenwatch.de +*.skagenwatch.dk +*.skagenwatch.es +*.skagenwatch.fr +*.skagenwatch.hk +*.skagenwatch.ie +*.skagenwatch.in +*.skagenwatch.info +*.skagenwatch.it +*.skagenwatch.jp +*.skagenwatch.kr +*.skagenwatch.mx +*.skagenwatch.net +*.skagenwatch.org +*.skagenwatch.pl +*.skagenwatch.se +*.skagenwatch.sg +*.skagenwatch.tw +*.skagenwatches.at +*.skagenwatches.biz +*.skagenwatches.ca +*.skagenwatches.cn +*.skagenwatches.de +*.skagenwatches.dk +*.skagenwatches.hk +*.skagenwatches.info +*.skagenwatches.it +*.skagenwatches.jp +*.skagenwatches.mx +*.skagenwatches.nl +*.skagenwholesale.com +*.skagenwholesale.info +*.skagenwholesale.net +*.skagenwholesale.org +*.skagn.com +*.skkagen.com +*.stpch.com +*.strlctr.com +*.swiss-stc.ch +*.swiss-stc.com +*.swisstp.com +*.ten10magazine.com +*.tentenmagazine.com +*.thefashioninfluencerslab.com +*.thefossilcollectorsclub.com +*.themorewearablewearable.com +*.themorewearablewearable.net +*.thinmeshwatch.com +*.uhren-fossil.de +*.watchdom.com.hk +*.watchkarl.com +*.watchstation.at +*.watchstation.be +*.watchstation.ch +*.watchstation.cl +*.watchstation.co +*.watchstation.co.uk +*.watchstation.com.au +*.watchstation.com.cn +*.watchstation.de +*.watchstation.es +*.watchstation.fr +*.watchstationglobal.com +*.wearablessupport.com +*.wearvolli.com +*.wsiwatches.cn +*.wsiwatches.co.in +*.wsiwatches.co.kr +*.wsiwatches.co.nz +*.wsiwatches.com +*.wsiwatches.com.au +*.wsiwatches.com.cn +*.wsiwatches.com.my +*.wsiwatches.com.ph +*.wsiwatches.com.sg +*.wsiwatches.com.tw +*.wsiwatches.hk +*.wsiwatches.in +*.wsiwatches.jp +*.wsiwatches.kr +*.wsiwatches.nz +*.wsiwatches.ph +*.wsiwatches.sg +*.xn--sbu07ojn6a.com +*.zegarkifossil.pl +*.zodiac.co +*.zodiacbrand.com +*.zodiacbrand.net +*.zodiacwatches.mobi +*.booking.com +*.rentalcars.com +*.fossil.com.br +*.fossilsg.com +*.watchstationindia.com +*.watchstationhk.com +*.emporioarmaniwatches.com +*.fossilmy.com +*.fossilhk.com +*.crypto.com +*.mona.co +*.000webhost.com +https://design.glassdoor.com/* +*.sf-cdn.com +*.lifetouch.com +*.photoccino.com +*.sbs.shutterfly.com +*.oaknorth.co.uk +*.oaknorth-it.com +*.oaknorth-prod.com +*.oaknorth.com +*.napoleoncasino.be +*.napoleondice.be +*.napoleongames.be +*.napoleonsports.be +*.sprint.dynatracelabs.com +*.sprint.apps.dynatracelabs.com +*.bionic.ai +*.superbet.pl +https://*.immedia-semi.com/* +https://*.blinkforhome.com/* +*.beta.lahitapiola.fi +https://*.avios.com +*.tide.co +*.vendasta.com +*.apigateway.co +*.vendasta-internal.com +*.yesware.com +*.cvedetails.com +*.ovo.id +*.taralite.com +*.amazon.cl +*.amazon.co.za +*.amazon.com.au +*.amazon.com.br +*.amazon.com.co +*.amazon.com.mx +*.amazon.com.ng +*.amazon.com.tr +*.amazon.pl +*.amazon.com.be +*.shopifycs.com +https://*.ui.com/distributors/ +https://*.ui.com/training/partners/ +*.worldcoin.org +*.consumer.worldcoin.org +*.worldcoin-distributors.com +*.worldcoin.dev +*.toolsforhumanity.com +*.inter.co +*.bancointer.com.br +*.cyrus-security.com +https://*.metamask.io +https://*.stanford.edu +*.century21.com +*.amazon.ae +*.amazon.ca +*.amazon.cn +*.amazon.co.jp +*.amazon.co.uk +*.amazon.de +*.amazon.eg +*.amazon.es +*.amazon.fr +*.amazon.in +*.amazon.it +*.amazon.nl +*.amazon.sa +*.amazon.se +*.amazon.sg +*.cb.dev +*.mmwebc.dev +*.shopify.io +*.realogy.com +*.bhgre.com +*.sothebysrealty.com +*.corcoran.com +*.cbcworldwide.com +*.nrtllc.com +*.coldwellbanker.com +*.linecorp.com +*.expediacruises.com +*.gethypr.com +*.dyson.com +*.okcoin.com +*.oklink.com +*.okg.com +*.bancobmg.com.br +*.bmgconsig.com.br +*.help.com.br +*.int.remitly.com +*.dev.remitly.com +*.east.fdbox.net +*.prod.fdbox.net +*.mgmt.fndlsb.net +*.prd.fndlsb.net +*inf.fndlsb.net +*.numberfire.com +*.canada.fanduel.com +*.century21global.com +*.c21.com +*.withspotify.com +*.byspotify.com +*.atspotify.com +*.avecspotify.com +*.enspotify.com +*.forspotify.com +*.fromspotify.com +*.tospotify.com +*.usend.com +*.usendbrazil.com +*.enviouchegou.com +*.pontualmt.net +*.pontualreports.net +*.pontualmoneytransfer.com +*.pontualmt.com +*.pontualconnect.com +*.transunion.com +*.tui.transunion.com +*.transunion.co.za +*.transunionafrica.com +*.transunioncibil.com +*.transunion.hk +*.transunion.ph +*.transunion.co.uk +*.transunion.co.br +*.transunion.do +*.chile.transunion.com +*.transunioncentralamerica.com +*.transunion.mx +*.transunion.ca +*.neustar +*.neustar.biz +*.neustarcare.com +*.npac.com +*.cibil.com +*.ionity.eu +*.ionity.cloud +www.aeromexico.com* +*.amazon.com +*.decisionpoint3.com +api.*.deliveroo.com +*.deliveroo.co.uk +*.deliveroo.fr +*.deliveroo.be +*.deliveroo.ie +*.deliveroo.it +*.deliveroo.com.hk +*.deliveroo.com.kw +*.deliveroo.com.qa +*.deliveroo.com.sg +*.deliveroo.ae +*.deliveroo.hk +https://scoreboardslauncher.williamhill.com/* +https://gamesrv1.*.czr.neo.americanwagering.com/ +https://caesars.com/sportsbook-and-casino/* +https://gamesrv1.*.us.williamhill.com +*.us.williamhill.com +https://caesarspalaceonline.com/* +*.williamhill.us +*.acgnet.com +*.guggenheimpartners.com +*.guggenheiminvestments.com +*.guggenheimsecurities.com +*.guggenheimpartners.jp +*.guggenheimpartnersmiddleeast.com +*.inv-info.com +*.wanlink.us +*.transparentvalue.com +*.accretiveasset.com +*.adventclaymore.com +*.advisorbenchmarking.com +*.advisorbenchmarking.net +*.advisorbenchmarking.org +*.aerocapitalpartners.com +*.aerofinancepartners.com +*.aeroleasefinance.com +*.alternativeinvestmentseducation.com +*.alternativesplatform.com +*.arctic-investment-compact.com +*.arctic-investment-compact.net +*.arctic-investment-compact.org +*.arctic-investment-protocol.com +*.arctic-investment-protocol.net +*.arctic-investment-protocol.org +*.arctic-protocol.com +*.arctic-protocol.net +*.arctic-protocol.org +*.arcticinvestmentcompact.com +*.arcticinvestmentcompact.net +*.arcticinvestmentcompact.org +*.arcticinvestmentprotocol.com +*.arcticinvestmentprotocol.net +*.arcticinvestmentprotocol.org +*.arcticprotocol.com +*.arcticprotocol.net +*.arcticprotocol.org +*.asmartcore.com +*.asmartercore.com +*.bigmadeeasy.com +*.blueprint-asp.com +*.blueprint401k.com +*.blueprint401k.net +*.bondladderingtool.com +*.bondladdertool.com +*.bondshares.ca +*.bondshares.net +*.bondsharesetf.ca +*.bondsharesetf.com +*.bondsharesetfs.ca +*.bondsharesetfs.com +*.bondsharesindexes.ca +*.bondsharesindices.ca +*.bscottminerd.com +*.buildyourbondladder.com +*.bulletbond.ca +*.bulletbondetf.ca +*.bulletbondetf.com +*.bulletbondetfs.ca +*.bulletbondetfs.com +*.bulletbondindexes.ca +*.bulletbondindices.ca +*.bulletbonds.ca +*.bulletbonds.com +*.bulletbondshares.ca +*.bulletbondshares.com +*.bulletetfs.ca +*.bulletetfs.com +*.bulletfunds.ca +*.bulletfunds.com +*.bulletsetfs.ca +*.bulletsetfs.com +*.bulletsfunds.ca +*.bulletsfunds.com +*.bulletshares.ca +*.bulletshares.co.uk +*.bulletshares.com +*.bulletshares.net +*.bulletshares.org +*.bulletsharesefts.com +*.bulletsharesetf.ca +*.bulletsharesetf.com +*.bulletsharesetfs.ca +*.bulletsharesetfs.com +*.bulletsharesfunds.ca +*.bulletsharesfunds.com +*.bulletsharesindexes.ca +*.bulletsharesindices.ca +*.byronscottminerd.com +*.cainhoycapital.co +*.cainhoycapital.net +*.cainhoycapital.org +*.cainhoycapitalllc.co +*.cainhoycapitalllc.com +*.cainhoycapitalllc.net +*.cainhoycapitalllc.org +*.cainhoycompany.co +*.cainhoycompany.com +*.cainhoycompany.net +*.cainhoycompany.org +*.capassurance.com +*.chcapbd.com +*.claymore.com +*.claymore401k.net +*.claymoreactiveetfs.com +*.claymoreactivetfs.com +*.claymoreaetfs.com +*.claymoreblueprint.com +*.claymoreblueprints.com +*.claymoreeconomics.com +*.claymoreefts.com +*.claymoreetf.com +*.claymoreetfs.com +*.claymorefunds.com +*.claymoreinvestments.com +*.claymoreinvestmentstrategy.com +*.claymoreresearch.com +*.claymoreretirement.com +*.claymoresecurities.com +*.claymorestrategy.com +*.claymoretf.com +*.clearspringlife.com +*.commoditiesshares.com +*.commodity-shares.com +*.corporatebondladder.com +*.covestrecapital.com +*.crotonlm.com +*.currency-shares.com +*.currencyshares.com +*.currencysharessucks.com +*.dial-etfs.com +*.dinarcurrencyshares.com +*.dollarcurrencyshares.com +*.dremanclaymore.com +*.endowmentstyleinvesting.com +*.equalweight.com +*.equalweightetfs.com +*.equalweighting.com +*.equalweightinvesting.com +*.equalweightinvestmentportfolio.com +*.equalweightinvestments.com +*.equalweightportfolio.com +*.equitrust.br.com +*.equitrust.de.com +*.equitrust.eu.com +*.equitrust.hk.cn +*.equitrust.jpn.com +*.equitrust.mobi +*.equitrust.us.com +*.equitrustfinancialgroup.com +*.essentialfrontier.com +*.essentialportfoliotheory.com +*.etfequalweighting.com +*.fandcclaymore.com +*.fccclaymore.com +*.fccmclaymore.com +*.fiduciaryclaymore.com +*.fixedincomebondladder.com +*.future-of-the-arctic.com +*.future-of-the-arctic.net +*.future-of-the-arctic.org +*.futureofthearctic.com +*.futureofthearctic.net +*.futureofthearctic.org +*.g.golf +*.galliumfunding.com +*.gbmlp.com +*.gcwealth.com +*.generationmortgage.com +*.getalts.com +*.getasmartercore.com +*.getequalweight.com +*.getequalweighted.com +*.getsmartbeta.com +*.ggtadvisers.com +*.ggtadvisors.com +*.ggtcapital.com +*.gia-global.com +*.glmarketingins.com +*.glmarketingllc.com +*.gnpartners.com +*.goal17partners.com +*.goclaymore.com +*.goequalweight.com +*.goequalweighted.com +*.gohandshakego.com +*.gohandshakego.net +*.gohandshakego.org +*.gotalts.com +*.gpam.com +*.gpamco.com +*.gpaminc.com +*.gpnewssite.com +*.gpsuisse.com +*.gpvp.com +*.gsecurities.com +*.gsgamma.com +*.gugadv.com +*.gugg.gp +*.guggenheim-advisor.biz +*.guggenheim-advisor.co +*.guggenheim-advisor.net +*.guggenheim-advisor.org +*.guggenheim-advisor.uk +*.guggenheim-advisors.co +*.guggenheim-advisors.com +*.guggenheim-advisors.uk +*.guggenheim-agoodname.com +*.guggenheim-alternative.com +*.guggenheim-alternatives.com +*.guggenheim-investments.com +*.guggenheim-partner.biz +*.guggenheim-partner.com +*.guggenheim-partner.info +*.guggenheim-partner.net +*.guggenheim-partner.org +*.guggenheim-partner.us +*.guggenheim-partners.biz +*.guggenheim-partners.co +*.guggenheim-partners.com +*.guggenheim-partners.info +*.guggenheim-partners.net +*.guggenheim-partners.nyc +*.guggenheim-partners.org +*.guggenheim-partners.tw +*.guggenheim.partners +*.guggenheim401k.com +*.guggenheimaam.com +*.guggenheimadvisor.biz +*.guggenheimadvisor.co +*.guggenheimadvisor.com +*.guggenheimadvisor.net +*.guggenheimadvisor.org +*.guggenheimadvisor.uk +*.guggenheimadvisors.co +*.guggenheimadvisors.com +*.guggenheimadvisors.uk +*.guggenheimaero.com +*.guggenheimaerocapital.com +*.guggenheimaerocapitalpartners.com +*.guggenheimaerofinance.com +*.guggenheimaerolease.com +*.guggenheimaeroleasefinance.com +*.guggenheimalternativeplatform.com +*.guggenheimalternatives.com +*.guggenheimalternativesplatform.com +*.guggenheimaltplatform.com +*.guggenheimaltsplatform.com +*.guggenheimam.com +*.guggenheimap.com +*.guggenheimassetadvisors.com +*.guggenheimassetmanagement.com +*.guggenheimbdc.com +*.guggenheimbulktrading.com +*.guggenheimcapital.com +*.guggenheimcapitalpartners.com +*.guggenheimcapitalpartners.net +*.guggenheimcapitalpartners.org +*.guggenheimcapmkts.com +*.guggenheimcif.com +*.guggenheimcm.com +*.guggenheimdistributors.com +*.guggenheimequity.com +*.guggenheimetfs.com +*.guggenheimfamilyoffice.com +*.guggenheimfinancial.com +*.guggenheimfixedincome.com +*.guggenheimfixedincomeadvantage.com +*.guggenheimfixedincomeetfs.com +*.guggenheimfixedincomeiq.com +*.guggenheimfixedincomemutualfunds.com +*.guggenheimfund.com +*.guggenheimfund.net +*.guggenheimfunding.com +*.guggenheimfunds.com +*.guggenheimfunds.net +*.guggenheimfundsolutions.com +*.guggenheimfutures.com +*.guggenheimggt.com +*.guggenheimgi.com +*.guggenheimgiving.com +*.guggenheimglobal.com +*.guggenheimglobalinvestors.com +*.guggenheimgroup.net +*.guggenheimgt.com +*.guggenheimia.com +*.guggenheimias.com +*.guggenheimindexservices.com +*.guggenheiminstitute.com +*.guggenheiminstitute.net +*.guggenheiminstitute.org +*.guggenheiminsurance.com +*.guggenheiminsurance.net +*.guggenheiminsurance.org +*.guggenheiminvestment.biz +*.guggenheiminvestment.com.cn +*.guggenheiminvestment.eu +*.guggenheiminvestment.info +*.guggenheiminvestment.jp +*.guggenheiminvestment.net +*.guggenheiminvestment.org +*.guggenheiminvestment.uk +*.guggenheiminvestment.us +*.guggenheiminvestmentadvisors.com +*.guggenheiminvestmentadvisory.com +*.guggenheiminvestmentadvisorysolutions.com +*.guggenheiminvestmentfinanicalprofessional.com +*.guggenheiminvestmentpartners.com +*.guggenheiminvestmentsadvisor.com +*.guggenheiminvestmentsales.com +*.guggenheiminvestmentsassetmanagement.com +*.guggenheiminvestmentsconnect.com +*.guggenheiminvestmentsfinancialprofessional.com +*.guggenheiminvestmentsfp.com +*.guggenheiminvestmentslearningcenter.com +*.guggenheiminvestor.com +*.guggenheimira.com +*.guggenheimkbbo.com +*.guggenheimkbbopartners.com +*.guggenheimlife.com +*.guggenheimlifeandannuity.com +*.guggenheimllc.com +*.guggenheimmanagement.com +*.guggenheimmarketcommentary.com +*.guggenheimmarketinsights.com +*.guggenheimmarketperspectives.com +*.guggenheimmb.com +*.guggenheimmiddleeast.com +*.guggenheimmortgagecapital.com +*.guggenheimnetwork.com +*.guggenheimnews.com +*.guggenheimnicklaus.com +*.guggenheimnicklauspartners.com +*.guggenheimoffshore.com +*.guggenheimparnters.com +*.guggenheimparters.com +*.guggenheimpartner.biz +*.guggenheimpartner.co +*.guggenheimpartner.info +*.guggenheimpartner.me +*.guggenheimpartner.net +*.guggenheimpartner.online +*.guggenheimpartner.org +*.guggenheimpartner.us +*.guggenheimpartners.biz +*.guggenheimpartners.cloud +*.guggenheimpartners.co +*.guggenheimpartners.info +*.guggenheimpartners.me +*.guggenheimpartners.mobi +*.guggenheimpartners.net +*.guggenheimpartners.nyc +*.guggenheimpartners.online +*.guggenheimpartners.org +*.guggenheimpartners.tw +*.guggenheimpartners.us +*.guggenheimpartners.ws +*.guggenheimpartnersla.com +*.guggenheimpartnersme.com +*.guggenheimpartnersmiddleeastlimited.com +*.guggenheimpartnersonline.com +*.guggenheimpartnersstore.com +*.guggenheimpensions.net +*.guggenheimplus.com +*.guggenheimportal.com +*.guggenheimrealestate.com +*.guggenheimresearch.com +*.guggenheimretailpartners.com +*.guggenheimretailproperties.com +*.guggenheimretailrealestate.com +*.guggenheimsales.com +*.guggenheimsecurelink.com +*.guggenheimservices.com +*.guggenheimshares.com +*.guggenheimsi.com +*.guggenheimsi.org +*.guggenheimspac1.com +*.guggenheimtrading.com +*.guggenheimtraininginstitute.com +*.guggenheimtrust.com +*.guggenheimucits.com +*.guggenheimventurepartners.com +*.guggenheimventures.com +*.guggenheimwm.com +*.guggenhiem-partner.biz +*.guggenhiem-partner.com +*.guggenhiem-partner.info +*.guggenhiem-partner.net +*.guggenhiem-partner.org +*.guggenhiem-partner.us +*.guggenhiem-partners.biz +*.guggenhiem-partners.com +*.guggenhiem-partners.info +*.guggenhiem-partners.net +*.guggenhiem-partners.org +*.guggenhiem-partners.us +*.guggenhiemparnters.com +*.guggenhiempartner.biz +*.guggenhiempartner.com +*.guggenhiempartner.info +*.guggenhiempartner.net +*.guggenhiempartner.org +*.guggenhiempartner.us +*.guggenhiempartners.biz +*.guggenhiempartners.com +*.guggenhiempartners.info +*.guggenhiempartners.net +*.guggenhiempartners.org +*.guggenhiempartners.us +*.gvp-capital.com +*.gvpcap.com +*.gvpcapital.com +*.heartmoor.com +*.hedge-fund-replication.com +*.hedge-fundreplication.com +*.hedgefund-replication.com +*.hegde-fund-replication.com +*.hegde-fundreplication.com +*.hegdefund-replication.com +*.hegdefundreplication.com +*.iguggenheim.com +*.iguggenheiminvestments.com +*.invinfo.com +*.ivyleagueinvesting.com +*.kronecurrencyshares.com +*.libhamp.com +*.linkssecurities.net +*.livingarctic.net +*.livingarctic.org +*.majorinminerd.com +*.mead-park.com +*.meadparkllc.com +*.meadparkmgmt.com +*.minerdperspectives.com +*.my-gi.com +*.my-gisales.com +*.myetlicpolicy.com +*.mygisales.com +*.myguggenheiminvestments.com +*.mypolicywithequitrustlife.com +*.new-north-compact.com +*.new-north-compact.net +*.new-north-compact.org +*.newnorthcompact.com +*.newnorthcompact.net +*.newnorthcompact.org +*.newnorthdevelopment.com +*.newnorthdevelopment.net +*.newnorthdevelopment.org +*.newnorthfund.com +*.newnorthfund.net +*.newnorthfund.org +*.notsominerdperspectives.com +*.oldmutualclaymore.com +*.oneguggenheim.com +*.performance-etf.com +*.performance-etfs.com +*.performanceetf.com +*.performanceetfs.com +*.pesocurrencyshares.com +*.pfn-usa.com +*.pillarfinancial.org +*.pillarmultifamily.com +*.poundcurrencyshares.com +*.privatefamilynetworks.com +*.rbpblendedindex.com +*.rbpinsights.com +*.rbpinstitute.com +*.rbpp.us +*.realcurrencyshares.com +*.relayrewards.com +*.responsible-arctic-development.com +*.responsible-arctic-development.net +*.responsible-arctic-development.org +*.responsible-arctic.com +*.responsible-arctic.net +*.responsible-arctic.org +*.responsiblearctic.com +*.responsiblearctic.net +*.responsiblearctic.org +*.responsiblearcticdevelopment.com +*.responsiblearcticdevelopment.net +*.responsiblearcticdevelopment.org +*.rydex-research.com +*.rydex-sgi-fp.com +*.rydex-sgi.com +*.rydexconnect.com +*.rydexfs.com +*.rydexfunds.com +*.rydexfunds.net +*.rydexfunds.org +*.rydexfundsfp.com +*.rydexfundsfp.net +*.rydexinvestments.com +*.rydexinvestmentservices.com +*.rydexinvestmentsfp.com +*.rydexlearninginstitute.com +*.rydexsgi.com +*.rydexuat.com +*.scottminerd.com +*.scottminerdperspectives.com +*.sg-investor.com +*.sg-investors.com +*.sgi-institutional.com +*.sgiconnect.com +*.skipviraghcharities.com +*.slicoi.com +*.smartercore.com +*.southbt.com +*.standardagents.com +*.standardlifeindiana.com +*.standardlifeofindiana.com +*.sterlingcurrencyshares.com +*.sustainable-arctic-development.com +*.sustainable-arctic-development.net +*.sustainable-arctic-development.org +*.sustainablearcticdevelopment.com +*.sustainablearcticdevelopment.net +*.sustainablearcticdevelopment.org +*.taderydex.com +*.taderydex.net +*.testgp.net +*.testgpfp.com +*.testmailgp.com +*.testmailgpdet.com +*.thelivingarctic.com +*.thelivingarctic.net +*.thelivingarctic.org +*.thesmartcore.com +*.traderydex.com +*.traderydex.net +*.transparentvaluations.com +*.transparentvalue.biz +*.transparentvalue.ch +*.transparentvalue.co.uk +*.transparentvalue.co.za +*.transparentvalue.de +*.transparentvalue.in +*.transparentvalue.info +*.transparentvalue.io +*.transparentvalue.net +*.transparentvalue.tel +*.transparentvalue.us +*.transparentvalueadvisortools.com +*.transparentvaluefunds.com +*.treelinecapco.com +*.tswclaymore.com +*.tvblendedindex.com +*.uitblueprints.com +*.uitconnect.com +*.uitconnect.net +*.westernclaymore.com +*.whypayhighfees.com +*.elcompanies.com +*.esteelauder.com +*.maccosmetics.com +*.clinique.com +*.jomalone.co.uk +*.esteelauder.co.uk +*.maccosmetics.co.uk +*.clinique.co.uk +*.jomalone.com +*.origins.co.uk +*.origins.com +*.cremedelamer.co.uk +*.cremedelamer.com +https://*.floqast.engineering +*.hoteltonight.com +*.fareharbor.engineering +*.kit.ro.co +*.varonis.net +*.nflxext.com +api*.netflix.com +*.prod.ftl.netflix.com +*.prod.cloud.netflix.com +*.nflxvideo.net +*.prod.dradis.netflix.com +*.nflximg.net +*.nflxso.net +*.nlfxvideo.net +*.zellepay.com +*.earlywarning.com +*.clearxchange.com +developer*.earlywarning.com +support*.earlywarning.com +api.zmsp.*.earlywarning.io +*.zelle.com +*.on.com +*.shayakahve.com.tr +*.certexpress.com +*.afossil.com +*.antimaprivatelabel.com +*.athletetiming.com +*.bigtic.com +*.bodysurfwatches.biz +*.bodysurfwatches.com +*.bodysurfwatches.info +*.bodysurfwatches.net +*.bodysurfwatches.org +*.buildawatch.net +*.defenderbrand.com +*.defendersports.com +*.dieseljewellery.co.uk +*.dieseljewellery.de +*.dieseljewelleryshop.co.uk +*.dieseljewelry.co.uk +*.dieselschmuck.de +*.dieselschmuckshop.de +*.dieseltimeframe.nl +*.dieseluhrenshop.de +*.dieselwatches.de +*.dieselwatchshop.co.uk +*.donghofossilchinhhang.com +*.efossil.pl +*.fosil.net +*.fossiil.com +*.fossil-handbags.net +*.fossil-latam.com +*.fossil-watch.com +*.fossil-watch.info +*.fossil-watches.info +*.fossil-watches.net +*.fossil.co.rs +*.fossil.com.ar +*.fossil.com.bo +*.fossil.com.pa +*.fossil.com.pt +*.fossil.com.py +*.fossil.com.uy +*.fossil.fi +*.fossil.mobi +*.fossil.paris +*.fossil.pk +*.fossil.sucks +*.fossil.tel +*.fossil30.com +*.fossilaccessories.com +*.fossilathletic.com +*.fossilathletic.net +*.fossilblue.com +*.fossilbolivia.com +*.fossilbrand.ca +*.fossilbrand.com +*.fossilbrands.com +*.fossilclothing.com +*.fossildanmark.dk +*.fossildeutschland.de +*.fossilfinland.com +*.fossilfinland.fi +*.fossilfootwear.at +*.fossilfootwear.biz +*.fossilfootwear.de +*.fossilfootwear.fr +*.fossilfootwear.info +*.fossilfootwear.net +*.fossilfootwear.org +*.fossilfootwear.us +*.fossilgen5.xyz +*.fossilgermany.de +*.fossilgroup.at +*.fossilgroup.ch +*.fossilgroup.de +*.fossilgroup.dk +*.fossilgroup.es +*.fossilgroup.io +*.fossilgroup.it +*.fossilgroup.lu +*.fossilgroup.no +*.fossilgroup.se +*.fossilitalia.it +*.fossilitaly.it +*.fossill.com +*.fossilladieswatch.com +*.fossilmadrid.es +*.fossilnet.com +*.fossilnorge.no +*.fossilpda.com +*.fossilportugal.com +*.fossilportugal.pt +*.fossilqpilot.com +*.fossilqranger.net +*.fossilqwanderer.com +*.fossilqwanderer.net +*.fossilrevelver.net +*.fossilrip.com +*.fossilripoff.com +*.fossilsdead.com +*.fossilshoe.biz +*.fossilshoe.info +*.fossilshoe.us +*.fossilshoes.biz +*.fossilshoes.info +*.fossilshoes.it +*.fossilshoes.net +*.fossilshoes.org +*.fossilstinks.com +*.fossilstore.net +*.fossilsucks.com +*.fossilsuomi.fi +*.fossilsux.com +*.fossilswiss.net +*.fossilswiss.us +*.fossiltime.com.my +*.fossiltincontest.com +*.fossilturkey.com.tr +*.fossilturkiye.com.tr +*.fossilvault.com +*.fossilwatch.co +*.fossilwatch.com +*.fossilwatch.net +*.fossilwatchbar.com +*.fossilwatchdeals.com +*.fossilwatches.biz +*.fossilwatches.com +*.fossilwatches.net +*.fossilwatches.org +*.fossilwatches.ph +*.fossilwatchesformen.ws +*.fossilwatchess.ws +*.fossilwatchout.com +*.fossilwatchreplicas.ws +*.fossilwear.com +*.fossilworldwide.com +*.freefossil.com +*.hatefossil.com +*.inkplusirons.com +*.inkplusironswatches.com +*.jinglemerrycheer.com +*.katchin.ae +*.katchin.af +*.katchin.am +*.katchin.app +*.katchin.ar +*.katchin.asia +*.katchin.at +*.katchin.be +*.katchin.biz +*.katchin.by +*.katchin.bz +*.katchin.ca +*.katchin.ch +*.katchin.cl +*.katchin.cm +*.katchin.cn +*.katchin.co +*.katchin.co.it +*.katchin.co.kr +*.katchin.co.uk +*.katchin.co.za +*.katchin.com.cn +*.katchin.com.es +*.katchin.com.my +*.katchin.cz +*.katchin.de +*.katchin.email +*.katchin.es +*.katchin.eu +*.katchin.exposed +*.katchin.fashion +*.katchin.fi +*.katchin.fr +*.katchin.gt +*.katchin.id +*.katchin.info +*.katchin.it +*.katchin.kr +*.katchin.li +*.katchin.lu +*.katchin.ly +*.katchin.ma +*.katchin.my +*.katchin.net +*.katchin.net.cn +*.katchin.ng +*.katchin.no +*.katchin.online +*.katchin.org +*.katchin.org.cn +*.katchin.ph +*.katchin.pk +*.katchin.pr +*.katchin.ru +*.katchin.si +*.katchin.site +*.katchin.su +*.katchin.tc +*.katchin.tips +*.katchin.tw +*.katchin.uk +*.katchin.us +*.katchin.uy +*.katchin.vg +*.katchin.vi +*.katchin.xn--fiqs8s +*.katchin.xyz +*.katchinaccessories.com +*.katchinbeauty.com +*.katchineyewear.com +*.katchinjewellery.com +*.katchinjewelry.com +*.katchinofficial.com +*.katchinwatch.com +*.katchinwear.com +*.katichwatches.com +*.meetthefossil.com +*.metro-servicecentercanada.com +*.metro-servicecentre.ca +*.metro-servicecentre.com +*.metro-servicecentrecanada.ca +*.metro-servicecentrecanada.com +*.metroservicecenter.net +*.metroservicecenter.org +*.metroservicecentercanada.com +*.metroservicecentre.com +*.metroservicecentrecanada.com +*.metrowatchco.com +*.michele.com.mo +*.michele.com.pt +*.michele.pk +*.michele.pt +*.michele.tel +*.michele.watch +*.misfitflare.de +*.misfitflash.com +*.misfitphase.de +*.misfitvapor.de +*.misfitwatches.store +*.misfitwearables.no +*.mywatchwarranty.com +*.olieoliver.com +*.relic.com.pt +*.relic.coupons +*.relic.gripe +*.relic.pt +*.relic.tel +*.relicwatches.org +*.shopkatchin.asia +*.shopkatchin.biz +*.shopkatchin.by +*.shopkatchin.ca +*.shopkatchin.cm +*.shopkatchin.cn +*.shopkatchin.co.in +*.shopkatchin.co.it +*.shopkatchin.co.uk +*.shopkatchin.com.cn +*.shopkatchin.com.es +*.shopkatchin.com.jm +*.shopkatchin.com.my +*.shopkatchin.com.py +*.shopkatchin.com.ve +*.shopkatchin.cz +*.shopkatchin.de +*.shopkatchin.dk +*.shopkatchin.es +*.shopkatchin.eu +*.shopkatchin.fi +*.shopkatchin.fr +*.shopkatchin.ie +*.shopkatchin.in +*.shopkatchin.info +*.shopkatchin.it +*.shopkatchin.jp +*.shopkatchin.lt +*.shopkatchin.lu +*.shopkatchin.ly +*.shopkatchin.ma +*.shopkatchin.my +*.shopkatchin.net +*.shopkatchin.net.cn +*.shopkatchin.nl +*.shopkatchin.no +*.shopkatchin.org +*.shopkatchin.org.cn +*.shopkatchin.pt +*.shopkatchin.si +*.shopkatchin.uk +*.shopkatchin.us +*.shopkatchin.uy +*.shopkatchin.vi +*.shopkatchin.xn--fiqs8s +*.skagen-latam.com +*.skagen.com.ar +*.skagen.com.br +*.skagen.com.pa +*.skagen.com.py +*.skagen.com.uy +*.skagen.com.ve +*.skagen.coupons +*.skagen.jp +*.skagen.lv +*.skagen.se +*.skagen.sucks +*.skagenconnected.de +*.skagendesign.es +*.skagendesign.it +*.skagenuhrdamen.de +*.skagenwatch.no +*.skagenwatchstore.com +*.stpmovement.ch +*.stpmovements.ch +*.stpmovements.com +*.swisstechnolgoyproduction.com +*.the-watch-station.com +*.thefossilfoundations.org +*.thelastmeter.com +*.thewatchstation.com +*.thewearablesresearchlab.com +*.threegirlsdesign.com +*.threegirlsdesigns.com +*.threegirlshop.com +*.threegirlstuff.com +*.topfossil.com +*.twentytwoeighty.com +*.watch-station-australia.com +*.watch-station.net +*.watchstation-1.com +*.watchstation-australia.com +*.watchstation-online.com +*.watchstation.ar +*.watchstation.asia +*.watchstation.biz +*.watchstation.ca +*.watchstation.cn +*.watchstation.co.kr +*.watchstation.co.za +*.watchstation.com.ar +*.watchstation.com.br +*.watchstation.com.es +*.watchstation.com.fr +*.watchstation.com.hk +*.watchstation.com.mx +*.watchstation.com.my +*.watchstation.com.pa +*.watchstation.com.ph +*.watchstation.com.pt +*.watchstation.com.py +*.watchstation.com.ro +*.watchstation.com.sg +*.watchstation.com.tw +*.watchstation.com.uy +*.watchstation.com.ve +*.watchstation.dk +*.watchstation.hk +*.watchstation.info +*.watchstation.it +*.watchstation.jp +*.watchstation.li +*.watchstation.mobi +*.watchstation.mx +*.watchstation.my +*.watchstation.no +*.watchstation.org +*.watchstation.ph +*.watchstation.pk +*.watchstation.pt +*.watchstation.ro +*.watchstation.sg +*.watchstation.tel +*.wear.gl +*.wsiservicecentre.com.my +*.xn--cjru17f.cn +*.zodiac--watches.com +*.zodiac.tel +*.cibilcreditreport.in +*.transuniondecisioncentre.co.in +*.transunionsolutions.co.in diff --git a/src/WINDOWS_APP_STORE_APP_ID.txt b/src/WINDOWS_APP_STORE_APP_ID.txt new file mode 100644 index 0000000..235b9c6 --- /dev/null +++ b/src/WINDOWS_APP_STORE_APP_ID.txt @@ -0,0 +1,6 @@ +9wzdncrfj3mb +HEY.exe +9wzdncrfj2g6 +gehmmocbbkpblljhkekmfhjpfbkclbph +9WZDNCRFJ10M +9n236hqqtvnh diff --git a/src/abb/URL.txt b/src/abb/URL.txt new file mode 100644 index 0000000..edc57e7 --- /dev/null +++ b/src/abb/URL.txt @@ -0,0 +1,8 @@ +*.abb.com +*.abb +*.tnb.com +*.abb.com.tr +*.abb.com.cn +*.baldor.com +*.cylon.com +abb.com.br diff --git a/src/abb/WILDCARD.txt b/src/abb/WILDCARD.txt new file mode 100644 index 0000000..975123f --- /dev/null +++ b/src/abb/WILDCARD.txt @@ -0,0 +1,52 @@ +http://*.abb.com +http://*.abb +http://*.tnb.com +http://*.abb.com.tr +http://*.abb.com.cn +http://*.baldor.com +http://*.cylon.com +*.abb.com +*.abb +*.tnb.com +*.abb.com.tr +*.abb.com.cn +*.baldor.com +*.cylon.com +*.busch-jaeger.* +*.busch-jaeger.de +*.busch-jaeger.at +*.busch-jaeger.nl +*.busch-jaeger.nu +*.in.abb.com +*.ch.abb.com +*.fi.abb.com +*.pl.abb.com +*.cirrus.abb.com +*.stratus.abb.com +*.xc.abb.com +*.ability.abb +*.gb.abb.com +*.it.abb.com +*.cn.abb.com +*.de.abb.com +*.ru.abb.com +*.abb-drives.com +*.motion.abb.com +*.pdc.abb.com +*.evcharging.abb.com +*.motors.abb.com +*.motors.abb.com.cn +*.cms.abb +*.br-automation.com +*.abb.nl +*.abb.at +*.abb.de +*.abb.ca +*.abb.ch +*.abb.cn +*.abb.co.in +*.abb.fr +*.abb.in +*.abb.pl +*.abb.se +*.abb.net diff --git a/src/abb/note.txt b/src/abb/note.txt new file mode 100644 index 0000000..7fb721b --- /dev/null +++ b/src/abb/note.txt @@ -0,0 +1 @@ +58246 https://hackerone.com/abb ABB Information Systems Ltd abb diff --git a/src/abb_information_systems/note.txt b/src/abb_information_systems/note.txt new file mode 100644 index 0000000..dbecb62 --- /dev/null +++ b/src/abb_information_systems/note.txt @@ -0,0 +1 @@ +58246 https://hackerone.com/abb_information_systems ABB Information Systems Ltd abb_information_systems diff --git a/src/abercrombie_fitch/APPLE_STORE_APP_ID.txt b/src/abercrombie_fitch/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..6d78d01 --- /dev/null +++ b/src/abercrombie_fitch/APPLE_STORE_APP_ID.txt @@ -0,0 +1,2 @@ +339041767 +383915209 diff --git a/src/abercrombie_fitch/GOOGLE_PLAY_APP_ID.txt b/src/abercrombie_fitch/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..aca478d --- /dev/null +++ b/src/abercrombie_fitch/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1,2 @@ +com.abercrombie.abercrombie +com.abercrombie.hollister diff --git a/src/abercrombie_fitch/URL.txt b/src/abercrombie_fitch/URL.txt new file mode 100644 index 0000000..e0129bb --- /dev/null +++ b/src/abercrombie_fitch/URL.txt @@ -0,0 +1,4 @@ +abercrombie.com +hollisterco.com +corporate.abercrombie.com +anfcorp.com diff --git a/src/abercrombie_fitch/note.txt b/src/abercrombie_fitch/note.txt new file mode 100644 index 0000000..125c6e0 --- /dev/null +++ b/src/abercrombie_fitch/note.txt @@ -0,0 +1 @@ +58228 https://hackerone.com/abercrombie_fitch Abercrombie & Fitch Management Co. abercrombie_fitch diff --git a/src/abn_amro_vdp/WILDCARD.txt b/src/abn_amro_vdp/WILDCARD.txt new file mode 100644 index 0000000..8c57dc4 --- /dev/null +++ b/src/abn_amro_vdp/WILDCARD.txt @@ -0,0 +1,16 @@ +*.abnamro.com +*.abnamro.nl +*.tikkie.me +*.aahg.nl +*.abnamrocomfin.com +*.abnamro.org +*.alfam.nl +*.bethmannbank.de +*neuflizeobc.fr +*abnamroprivatebanking.be +*.abnamro.be +*.florius.nl +*.moneyou.nl +*.abnamrolease.com +*.abnamroinvestmentsolutions.com +*.new10.com diff --git a/src/abn_amro_vdp/note.txt b/src/abn_amro_vdp/note.txt new file mode 100644 index 0000000..0fae572 --- /dev/null +++ b/src/abn_amro_vdp/note.txt @@ -0,0 +1 @@ +60539 https://hackerone.com/abn_amro_vdp ABN AMRO Bank VDP abn_amro_vdp diff --git a/src/aboitizpower_corporation/APPLE_STORE_APP_ID.txt b/src/aboitizpower_corporation/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..8441279 --- /dev/null +++ b/src/aboitizpower_corporation/APPLE_STORE_APP_ID.txt @@ -0,0 +1,2 @@ +https://apps.apple.com/ph/app/ap-watch-2/id1447462456 +https://apps.apple.com/ph/app/mobileap-aboitizpower/id1508234439 diff --git a/src/aboitizpower_corporation/GOOGLE_PLAY_APP_ID.txt b/src/aboitizpower_corporation/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..b6c9613 --- /dev/null +++ b/src/aboitizpower_corporation/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1,3 @@ +https://play.google.com/store/apps/details?id=com.aboitiz.watch +https://play.google.com/store/apps/details?id=com.aboitizceh&hl=en&gl=US +https://play.google.com/store/apps/details?id=com.outsystemsenterprise.apc1.DXPApp diff --git a/src/aboitizpower_corporation/OTHER.txt b/src/aboitizpower_corporation/OTHER.txt new file mode 100644 index 0000000..77b075f --- /dev/null +++ b/src/aboitizpower_corporation/OTHER.txt @@ -0,0 +1 @@ + All other applications (web sites, web applications, web services, and mobile applications) owned by AboitizPower and its Business Units diff --git a/src/aboitizpower_corporation/URL.txt b/src/aboitizpower_corporation/URL.txt new file mode 100644 index 0000000..5a8daf2 --- /dev/null +++ b/src/aboitizpower_corporation/URL.txt @@ -0,0 +1,30 @@ +aboitizpower.org +1882energyventures.com +1882energyventures.net +aboitizenergysolutions.com +aboitizpower.com.ph +aboitizpower.info +aboitizpower.net +aboitizpower.ph +aboitizpowercorporation.com.ph +aboitizpowercorporation.ph +aboitiztrading.com +adventenergy.com.ph +aesi.com.ph +apsiph.com +bettersolutions.com.ph +balambanenerzone.com +cleanergy.com.ph +cleanergy.ph +enerzone.com.ph +limaenerzone.com +mactanenerzone.com +prismenergy.com.ph +retailelectricity.com.ph +snaboitizpower.com +snap-res.com +subicenerzone.com +sustainablephilippines.com +veco.com.ph +visayanelectric.com.ph +visayanelectric.ph diff --git a/src/aboitizpower_corporation/WILDCARD.txt b/src/aboitizpower_corporation/WILDCARD.txt new file mode 100644 index 0000000..0b1f406 --- /dev/null +++ b/src/aboitizpower_corporation/WILDCARD.txt @@ -0,0 +1,9 @@ +*.aboitizpower.com +*.snaboitiz.com +*.enerzone.com.ph +*.cotabatolight.com +*.davaolight.com +*.oilbu.com +*.visayanelectric.com +*.hedcor.com +*.apps.sofa.csg.aboitizpower.org diff --git a/src/aboitizpower_corporation/note.txt b/src/aboitizpower_corporation/note.txt new file mode 100644 index 0000000..3a86b6f --- /dev/null +++ b/src/aboitizpower_corporation/note.txt @@ -0,0 +1 @@ +64556 https://hackerone.com/aboitizpower_corporation AboitizPower aboitizpower_corporation diff --git a/src/acronis/APPLE_STORE_APP_ID.txt b/src/acronis/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..bf94860 --- /dev/null +++ b/src/acronis/APPLE_STORE_APP_ID.txt @@ -0,0 +1,4 @@ +1118448159 +978342143 +429704844 +1192506963 diff --git a/src/acronis/DOWNLOADABLE_EXECUTABLES.txt b/src/acronis/DOWNLOADABLE_EXECUTABLES.txt new file mode 100644 index 0000000..e8e3a41 --- /dev/null +++ b/src/acronis/DOWNLOADABLE_EXECUTABLES.txt @@ -0,0 +1,8 @@ +Acronis Agent +Acronis Cyber Protect +Acronis Cyber Protect Home Office (formerly Acronis True Image) +Acronis DeviceLock DLP +Acronis Snap Deploy +Acronis Cyber Files +Other Acronis executables +Acronis Cloud Manager diff --git a/src/acronis/GOOGLE_PLAY_APP_ID.txt b/src/acronis/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..461abae --- /dev/null +++ b/src/acronis/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1,2 @@ +com.acronis.acronistrueimage +com.acronis.abc diff --git a/src/acronis/OTHER.txt b/src/acronis/OTHER.txt new file mode 100644 index 0000000..79d5363 --- /dev/null +++ b/src/acronis/OTHER.txt @@ -0,0 +1,2 @@ +Acronis Cyber Infrastructure +Other Acronis Domains diff --git a/src/acronis/URL.txt b/src/acronis/URL.txt new file mode 100644 index 0000000..44fd0a9 --- /dev/null +++ b/src/acronis/URL.txt @@ -0,0 +1,8 @@ +beta-baas.acronis.com +*-api-*.acronis.com +*.acronis.com +account.acronis.com +*.5nine.com +*.devicelock.com +*.acronis.work +beta-cloud.acronis.com diff --git a/src/acronis/WILDCARD.txt b/src/acronis/WILDCARD.txt new file mode 100644 index 0000000..a3cd5be --- /dev/null +++ b/src/acronis/WILDCARD.txt @@ -0,0 +1,10 @@ +http://*-api-*.acronis.com +http://*.acronis.com +http://*.5nine.com +http://*.devicelock.com +http://*.acronis.work +*-api-*.acronis.com +*.acronis.com +*.5nine.com +*.devicelock.com +*.acronis.work diff --git a/src/acronis/note.txt b/src/acronis/note.txt new file mode 100644 index 0000000..02097db --- /dev/null +++ b/src/acronis/note.txt @@ -0,0 +1 @@ +13428 https://hackerone.com/acronis Acronis acronis diff --git a/src/adobe/APPLE_STORE_APP_ID.txt b/src/adobe/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..11d0048 --- /dev/null +++ b/src/adobe/APPLE_STORE_APP_ID.txt @@ -0,0 +1,5 @@ +com.iphone.workfront +com.frame.FrameIO +com.adobe.lrmobilephone +com.adobe.lrmobile +com.adobe.PSMobile diff --git a/src/adobe/DOWNLOADABLE_EXECUTABLES.txt b/src/adobe/DOWNLOADABLE_EXECUTABLES.txt new file mode 100644 index 0000000..c3a7d86 --- /dev/null +++ b/src/adobe/DOWNLOADABLE_EXECUTABLES.txt @@ -0,0 +1,32 @@ +Adobe Acrobat Reader DC +Photoshop +Lightroom +After Effects +Animate +Audition +Adobe AIR +Bridge +Character Animator +Creative Cloud Desktop Application +Digital Editions +Dreamweaver +Flash Player +Fonts +Framemaker +Illustrator +InCopy +InDesign +Media Encoder +Prelude +Premiere Pro +XD +Adobe Campaign +Adobe Experience Manager (AEM) +Lightroom Classic +XMP Toolkit +Distiller +Premiere Rush +Premiere Elements +Dimension +ColdFusion +Substance 3D diff --git a/src/adobe/GOOGLE_PLAY_APP_ID.txt b/src/adobe/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..4cc4026 --- /dev/null +++ b/src/adobe/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1,6 @@ +com.adobe.reader +com.workfront.android.aware +com.adobe.lrmobile +com.adobe.scan.android +com.adobe.fas +com.adobe.echosign diff --git a/src/adobe/OTHER.txt b/src/adobe/OTHER.txt new file mode 100644 index 0000000..e36655c --- /dev/null +++ b/src/adobe/OTHER.txt @@ -0,0 +1,5 @@ +Adobe Commerce, Commerce B2B and Commerce Open Source +Other +Workfront Outlook Plugin +ContentCal +C2PA Tool diff --git a/src/adobe/SOURCE_CODE.txt b/src/adobe/SOURCE_CODE.txt new file mode 100644 index 0000000..69dea80 --- /dev/null +++ b/src/adobe/SOURCE_CODE.txt @@ -0,0 +1,4 @@ +https://github.com/adobe/svg-native-viewer +https://github.com/adobe/* +https://github.com/contentauth/c2pa-js +https://github.com/contentauth/c2pa-rs diff --git a/src/adobe/URL.txt b/src/adobe/URL.txt new file mode 100644 index 0000000..d91b2bf --- /dev/null +++ b/src/adobe/URL.txt @@ -0,0 +1,91 @@ +marketplace.magento.com +magentocommerce.com +repo.magento.com +magento.com +u.magento.com +imagine.magento.com +magentolive.com +account.magento.com +accounts.magento.cloud +*.acrobat.com +*.adobe.io +*.adobeaemcloud.com +*.adobecqms.net +*.bizible.com +*.marketo.com +*.mixamo.com +*.omniture.com +*.phonegap.com +*.tubemogul.com +*.typekit.com +account.adobe.com +accounts.adobe.com +acrobat.adobe.com +acrobatoauth.adobe.com +adminconsole.adobe.com +adobeid.services.adobe.com +adobelogin.com +adobestock.com +assets.adobe.com +auth.services.adobe.com +behance.net +campaign.adobe.com +captivateprime.adobe.com +cbconnection.adobe.com +cloud.acrobat.com +coldfusion.adobe.com +commerce.adobe.com +community.adobe.com +create.adobe.com +creative.adobe.com +creativecloud.adobe.com +documentcloud.adobe.com +documents.adobe.com +edex.adobe.com +exchange.adobe.com +experience.adobe.com +experiencecloud.adobe.com +fonts.adobe.com +gps.echosign.com +helpx.adobe.com +licenses.adobe.com +licensing.adobe.com +lightroom.adobe.com +marketing-assets.adobe.com +marketing.adobe.com +mobilemarketing.adobe.com +partners.adobe.com +photoshop.com +platform.adobe.com +portfolio.adobe.com +secure.echosign.com +shop.adobe.com +spark.adobe.com +status.adobe.com +stock.adobe.com +substance3d.com +theblog.adobe.com +xd.adobe.com +*.adobe.com +*.scene7.com +*.tt.omtrdc.net +*.adobeconnect.com +*.testdrive.workfront.com +*.proofhq.com +accounts.frame.io +app.frame.io +api.frame.io +api-v2.frame.io +components.frame.io +stream.frame.io +updates.frame.io +workflow.frame.io +developer.frame.io +applications.frame.io +socket.frame.io +contributor.stock.adobe.com +nicetryapril.na1.echosignsandbox.com +marketo.com +firefly.adobe.com +https://contentcredentials.org/verify +https://contentcredentials.org/ diff --git a/src/adobe/note.txt b/src/adobe/note.txt new file mode 100644 index 0000000..ea123a4 --- /dev/null +++ b/src/adobe/note.txt @@ -0,0 +1 @@ +347 https://hackerone.com/adobe Adobe adobe diff --git a/src/aeromexico_vdp/URL.txt b/src/aeromexico_vdp/URL.txt new file mode 100644 index 0000000..8449bef --- /dev/null +++ b/src/aeromexico_vdp/URL.txt @@ -0,0 +1,7 @@ +https://www.aeromexicobusiness.com +https://www.aeromexicovacations.com +https://www.aeromexicorewards.com +https://www.aeromexico.com/es-mx/aeromexico-rewards +https://amfacturacion.aeromexico.com +https://facturacion.aeromexico.com +https://portalfacturacioncargo.aeromexico.com diff --git a/src/aeromexico_vdp/WILDCARD.txt b/src/aeromexico_vdp/WILDCARD.txt new file mode 100644 index 0000000..1922f6e --- /dev/null +++ b/src/aeromexico_vdp/WILDCARD.txt @@ -0,0 +1 @@ +www.aeromexico.com* diff --git a/src/aeromexico_vdp/note.txt b/src/aeromexico_vdp/note.txt new file mode 100644 index 0000000..504a6a4 --- /dev/null +++ b/src/aeromexico_vdp/note.txt @@ -0,0 +1 @@ +72870 https://hackerone.com/aeromexico_vdp Aeromexico VDP aeromexico_vdp diff --git a/src/affirm/GOOGLE_PLAY_APP_ID.txt b/src/affirm/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..98e6a4d --- /dev/null +++ b/src/affirm/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.affirm.central.audit diff --git a/src/affirm/OTHER.txt b/src/affirm/OTHER.txt new file mode 100644 index 0000000..b64d29f --- /dev/null +++ b/src/affirm/OTHER.txt @@ -0,0 +1 @@ +com.affirm.internal.hackerone diff --git a/src/affirm/URL.txt b/src/affirm/URL.txt new file mode 100644 index 0000000..966fc1e --- /dev/null +++ b/src/affirm/URL.txt @@ -0,0 +1,13 @@ +https://hackerone.affirm-odin.com +https://dashboard.dev.return.ly +https://TEST-STORE-SUBDOMAIN.dev.return.ly +https://direct-hackerone.affirm-odin.com/ +https://vcn-hackerone.affirm-odin.com/ +http://dashboard.returnly.com/ +https://TEST-STORE-SUBDOMAIN.returnly.com/ +hackerone.affirm-odin.com +direct-hackerone.affirm-odin.com +vcn-hackerone.affirm-odin.com +helpcenter.affirm.ca +helpcenter.affirm.com +sandbox.affirm.com diff --git a/src/affirm/note.txt b/src/affirm/note.txt new file mode 100644 index 0000000..27371ea --- /dev/null +++ b/src/affirm/note.txt @@ -0,0 +1 @@ +24883 https://hackerone.com/affirm Affirm affirm diff --git a/src/agoric-vdp/SOURCE_CODE.txt b/src/agoric-vdp/SOURCE_CODE.txt new file mode 100644 index 0000000..051f582 --- /dev/null +++ b/src/agoric-vdp/SOURCE_CODE.txt @@ -0,0 +1,2 @@ +https://github.com/Agoric/ses-shim +https://github.com/Agoric/agoric-sdk diff --git a/src/agoric-vdp/note.txt b/src/agoric-vdp/note.txt new file mode 100644 index 0000000..8a0af47 --- /dev/null +++ b/src/agoric-vdp/note.txt @@ -0,0 +1 @@ +37451 https://hackerone.com/agoric-vdp Agoric agoric-vdp diff --git a/src/agoric/SOURCE_CODE.txt b/src/agoric/SOURCE_CODE.txt new file mode 100644 index 0000000..dcab929 --- /dev/null +++ b/src/agoric/SOURCE_CODE.txt @@ -0,0 +1,6 @@ +https://github.com/endojs/endo/tree/master/packages/ses +https://github.com/Agoric/agoric-sdk/tree/master/packages/ERTP +https://github.com/Agoric/agoric-sdk/tree/master/packages/zoe +https://github.com/Agoric/agoric-sdk/tree/master/packages/run-protocol +https://github.com/endojs +https://github.com/Agoric/agoric-sdk/tree/master/packages/inter-protocol diff --git a/src/agoric/note.txt b/src/agoric/note.txt new file mode 100644 index 0000000..5c77268 --- /dev/null +++ b/src/agoric/note.txt @@ -0,0 +1 @@ +55361 https://hackerone.com/agoric Agoric agoric diff --git a/src/aig/URL.txt b/src/aig/URL.txt new file mode 100644 index 0000000..ea35b37 --- /dev/null +++ b/src/aig/URL.txt @@ -0,0 +1,67 @@ +www.aiginsurance.com +www.aigdirect.com +www.myaig.com +*.aig.com +*.myretirementmanager.com +*.travelguard.com +www.layahealthcare.ie +www.aig.com +www.aigrs.com +www.aigprivateclient.com +www.lexingtoninsurance.com +www.lifeandretirement.aig.com +www-400.aig.com.hk/AIUEJB/b2b/Login.jsp +www.travelguard.com +www-1.aig.com +www.myretirementmanager.com +www.vfis.com +www.glatfelters.com +https://www.aiglife.co.uk/insurance/CBS +https://www.aiglife.co.uk/insurance/sbs +https://www.aiglife.co.uk/insurance/directline/lifeinsurance/ +https://www.aiglife.co.uk/Insurance/natwest/ProductSelection +https://www.aiglife.co.uk/insurance/YBS +https://www.aiglife.co.uk/insurance/churchill/lifeinsurance/ +https://www.aiglife.co.uk/Insurance/rbs/ProductSelection +https://www.aiglife.co.uk/insurance/ulsterbank +www.aig.sg +www.aig.com.br +https://www-264.aig.com +www-402.aigdirect.com +www.americanhome.co.jp +www.aigportal.de +https://travel.aig.co.jp +www-264.aig.com +www.aiglife.co.uk/insurance/CBS +www.aiglife.co.uk/insurance/sbs +www.aiglife.co.uk/insurance/directline/lifeinsurance/ +www.aiglife.co.uk/Insurance/natwest/ProductSelection +www.aiglife.co.uk/insurance/YBS +travel.aig.co.jp +www.aiglife.co.uk/insurance/churchill/lifeinsurance/ +www.aiglife.co.uk/Insurance/rbs/ProductSelection +www.aiglife.co.uk/insurance/ulsterbank +www.corebridgefinancial.com +*.corebridgefinancial.com +*.aig.co.jp +www.cropriskservices.com +cg.cropriskservices.com/CustomerGateway/Login?returnUrl=%2fCustomerGateway +services.aig.co.il +www.aig.co.il +sales.aig.co.il +www-1008.aig.com +www.rapidcover.ie +www-417.aig.ie +*.aig.ie +www.vfisu.com +www.vfisal.com +www.iafcf.org +http://www.aiglife.co.uk/insurance/cbs +http://www.aiglife.co.uk/insurance/sbs +http://www.aiglife.co.uk/insurance/directline/lifeinsurance/ +http://www.aiglife.co.uk/insurance/natwest/productselection +http://www.aiglife.co.uk/insurance/ybs +http://www.aiglife.co.uk/insurance/churchill/lifeinsurance/ +http://www.aiglife.co.uk/insurance/rbs/productselection +http://www.aiglife.co.uk/insurance/ulsterbank +http://cg.cropriskservices.com/customergateway/login?returnurl=%2fcustomergateway diff --git a/src/aig/WILDCARD.txt b/src/aig/WILDCARD.txt new file mode 100644 index 0000000..efa09fe --- /dev/null +++ b/src/aig/WILDCARD.txt @@ -0,0 +1,9 @@ +http://*.aig.com +http://*.myretirementmanager.com +http://*.corebridgefinancial.com +http://*.aig.co.jp +http://*.aig.ie +*.aig.com +*.myretirementmanager.com +*.corebridgefinancial.com +*.aig.co.jp diff --git a/src/aig/note.txt b/src/aig/note.txt new file mode 100644 index 0000000..dbc0fc6 --- /dev/null +++ b/src/aig/note.txt @@ -0,0 +1 @@ +49422 https://hackerone.com/aig AIG aig diff --git a/src/airbnb/APPLE_STORE_APP_ID.txt b/src/airbnb/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..a37a47e --- /dev/null +++ b/src/airbnb/APPLE_STORE_APP_ID.txt @@ -0,0 +1,2 @@ +com.airbnb.app +com.luxuryretreats.ios diff --git a/src/airbnb/GOOGLE_PLAY_APP_ID.txt b/src/airbnb/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..3fae630 --- /dev/null +++ b/src/airbnb/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.airbnb.android diff --git a/src/airbnb/OTHER.txt b/src/airbnb/OTHER.txt new file mode 100644 index 0000000..9b2de67 --- /dev/null +++ b/src/airbnb/OTHER.txt @@ -0,0 +1 @@ +Localized airbnb sites listed at the link below: diff --git a/src/airbnb/URL.txt b/src/airbnb/URL.txt new file mode 100644 index 0000000..486d3fe --- /dev/null +++ b/src/airbnb/URL.txt @@ -0,0 +1,28 @@ +www.airbnb.com +next.airbnb.com +api.airbnb.com +support-api.airbnb.com +assets.airbnb.com +m.airbnb.com +omgpro.airbnb.com +one.airbnb.com +open.airbnb.com +callbacks.airbnb.com +*.airbnb.com +*.airbnbcitizen.com +*.atairbnb.com +*.withairbnb.com +*.byairbnb.com +*.muscache.com +*.airbnb-aws.com +*.luxuryretreats.com +luckeyhomes.com +luckey.fr +luckey.app +luckey.in +demo.urbandoor.com +provider.demo.urbandoor.com +admin.demo.urbandoor.com +*.hoteltonight-test.com +luckey.partners +www.hoteltonight.com diff --git a/src/airbnb/WILDCARD.txt b/src/airbnb/WILDCARD.txt new file mode 100644 index 0000000..6521f11 --- /dev/null +++ b/src/airbnb/WILDCARD.txt @@ -0,0 +1 @@ +*.hoteltonight.com diff --git a/src/airbnb/note.txt b/src/airbnb/note.txt new file mode 100644 index 0000000..75de591 --- /dev/null +++ b/src/airbnb/note.txt @@ -0,0 +1 @@ +1080 https://hackerone.com/airbnb Airbnb airbnb diff --git a/src/airtable/SOURCE_CODE.txt b/src/airtable/SOURCE_CODE.txt new file mode 100644 index 0000000..0167286 --- /dev/null +++ b/src/airtable/SOURCE_CODE.txt @@ -0,0 +1 @@ +airtable.js SDK (https://www.npmjs.com/package/airtable) diff --git a/src/airtable/URL.txt b/src/airtable/URL.txt new file mode 100644 index 0000000..2814809 --- /dev/null +++ b/src/airtable/URL.txt @@ -0,0 +1,5 @@ +staging.airtable.com +*.staging-airtableblocks.com +*.staging.airtable.com +api-staging.airtable.com +https://staging.airtable.com/admin diff --git a/src/airtable/WILDCARD.txt b/src/airtable/WILDCARD.txt new file mode 100644 index 0000000..6d24353 --- /dev/null +++ b/src/airtable/WILDCARD.txt @@ -0,0 +1,4 @@ +http://*.staging-airtableblocks.com +http://*.staging.airtable.com +*.staging-airtableblocks.com +*.staging.airtable.com diff --git a/src/airtable/note.txt b/src/airtable/note.txt new file mode 100644 index 0000000..62fb8b2 --- /dev/null +++ b/src/airtable/note.txt @@ -0,0 +1 @@ +1069 https://hackerone.com/airtable Airtable airtable diff --git a/src/aiven_ltd/OTHER.txt b/src/aiven_ltd/OTHER.txt new file mode 100644 index 0000000..024d59e --- /dev/null +++ b/src/aiven_ltd/OTHER.txt @@ -0,0 +1,13 @@ +github.com/aiven +Aiven for Apache Kafka managed and hosted service +Aiven for M3 managed and hosted service +Aiven for PostgreSQL managed and hosted service +Aiven for MySQL managed and hosted service +Aiven for OpenSearch managed and hosted service +Aiven for Apache Cassandra managed and hosted service +Aiven for Redis managed and hosted service +Aiven for InfluxDB managed and hosted service +Aiven for Grafana managed and hosted service +Aiven for Apache Flink (beta) managed and hosted service +Aiven for Clickhouse (beta) managed and hosted service +CTF challenge: ed25519 SSH host key of falcon-bug-bounty-flag-pgsql-dev-sandbox.aivencloud.com diff --git a/src/aiven_ltd/URL.txt b/src/aiven_ltd/URL.txt new file mode 100644 index 0000000..e7adf8b --- /dev/null +++ b/src/aiven_ltd/URL.txt @@ -0,0 +1,5 @@ +www.aiven.io +console.aiven.io +api.aiven.io +aivencloud.com +help.aiven.io diff --git a/src/aiven_ltd/note.txt b/src/aiven_ltd/note.txt new file mode 100644 index 0000000..2b974e9 --- /dev/null +++ b/src/aiven_ltd/note.txt @@ -0,0 +1 @@ +45650 https://hackerone.com/aiven_ltd Aiven Ltd aiven_ltd diff --git a/src/aktia/URL.txt b/src/aktia/URL.txt new file mode 100644 index 0000000..a9fdc8b --- /dev/null +++ b/src/aktia/URL.txt @@ -0,0 +1,18 @@ +www.aktia.fi +auth.aktia.fi +ebank.aktia.fi +ftn.aktia.fi +mobile-auth.aktia.fi +mobile-gateway.aktia.fi +www.aktia.com +app.aktia.fi +impakti.fi +varainhoito.aktia.fi +wealth-api.aktia.fi +*.aktia.fi +aktiawallet.fi +store.aktiawallet.fi +asuntolaina.aktiawallet.fi +lender.aktiawallet.fi +www.aktiawallet.fi +investors.aktia.com diff --git a/src/aktia/WILDCARD.txt b/src/aktia/WILDCARD.txt new file mode 100644 index 0000000..1bc3a98 --- /dev/null +++ b/src/aktia/WILDCARD.txt @@ -0,0 +1,3 @@ +http://*.aktia.fi +*.aktia.fi +*.aktiawallet.fi diff --git a/src/aktia/note.txt b/src/aktia/note.txt new file mode 100644 index 0000000..2031dbc --- /dev/null +++ b/src/aktia/note.txt @@ -0,0 +1 @@ +51928 https://hackerone.com/aktia Aktia aktia diff --git a/src/alchemyplatform/SMART_CONTRACT.txt b/src/alchemyplatform/SMART_CONTRACT.txt new file mode 100644 index 0000000..52df8d5 --- /dev/null +++ b/src/alchemyplatform/SMART_CONTRACT.txt @@ -0,0 +1,6 @@ +https://etherscan.io/address/0x0046000000000151008789797b54fdb500E2a61e +https://etherscan.io/address/0xcE0000007B008F50d762D155002600004cD6c647 +https://etherscan.io/address/0x0000003E0000a96de4058e1E02a62FaaeCf23d8d +https://etherscan.io/address/0x000000e92d78d90000007f0082006fda09bd5f11 +https://etherscan.io/address/0x000000000000204327E6669f00901a57CE15aE15 +https://etherscan.io/address/0x000000000000a53f64b7bcf4cd59624943c43fc7 diff --git a/src/alchemyplatform/SOURCE_CODE.txt b/src/alchemyplatform/SOURCE_CODE.txt new file mode 100644 index 0000000..d3927a4 --- /dev/null +++ b/src/alchemyplatform/SOURCE_CODE.txt @@ -0,0 +1 @@ +https://github.com/alchemyplatform/modular-account diff --git a/src/alchemyplatform/note.txt b/src/alchemyplatform/note.txt new file mode 100644 index 0000000..052b808 --- /dev/null +++ b/src/alchemyplatform/note.txt @@ -0,0 +1 @@ +76876 https://hackerone.com/alchemyplatform Alchemy Insights, Inc. alchemyplatform diff --git a/src/aleo/SOURCE_CODE.txt b/src/aleo/SOURCE_CODE.txt new file mode 100644 index 0000000..503e999 --- /dev/null +++ b/src/aleo/SOURCE_CODE.txt @@ -0,0 +1,2 @@ +https://github.com/AleoHQ/snarkOS/ +https://github.com/AleoHQ/snarkVM/ diff --git a/src/aleo/note.txt b/src/aleo/note.txt new file mode 100644 index 0000000..08f60c8 --- /dev/null +++ b/src/aleo/note.txt @@ -0,0 +1 @@ +63689 https://hackerone.com/aleo Aleo aleo diff --git a/src/algolia/URL.txt b/src/algolia/URL.txt new file mode 100644 index 0000000..180034a --- /dev/null +++ b/src/algolia/URL.txt @@ -0,0 +1,4 @@ +www.algolia.com +*.algolia.net +*.algolianet.com +dashboard.algolia.com diff --git a/src/algolia/WILDCARD.txt b/src/algolia/WILDCARD.txt new file mode 100644 index 0000000..e078950 --- /dev/null +++ b/src/algolia/WILDCARD.txt @@ -0,0 +1,4 @@ +http://*.algolia.net +http://*.algolianet.com +*.algolia.net +*.algolianet.com diff --git a/src/algolia/note.txt b/src/algolia/note.txt new file mode 100644 index 0000000..b748f89 --- /dev/null +++ b/src/algolia/note.txt @@ -0,0 +1 @@ +443 https://hackerone.com/algolia Algolia algolia diff --git a/src/alibaba/URL.txt b/src/alibaba/URL.txt new file mode 100644 index 0000000..fcb2a37 --- /dev/null +++ b/src/alibaba/URL.txt @@ -0,0 +1,13 @@ +*.alibaba.com +*.aliexpress.com +*.taobao.com +*.tmall.com +*.aliyun.com +*.alibabacloud.com +*.alibaba-inc.com +*.aliyun-inc.com +www.alibabagroup.com +*.alimama.com +*.Daraz.com +*.aliexpress.ru +*.1688.com diff --git a/src/alibaba/WILDCARD.txt b/src/alibaba/WILDCARD.txt new file mode 100644 index 0000000..1bef4cb --- /dev/null +++ b/src/alibaba/WILDCARD.txt @@ -0,0 +1,24 @@ +http://*.alibaba.com +http://*.aliexpress.com +http://*.taobao.com +http://*.tmall.com +http://*.aliyun.com +http://*.alibabacloud.com +http://*.alibaba-inc.com +http://*.aliyun-inc.com +http://*.alimama.com +http://*.daraz.com +http://*.aliexpress.ru +http://*.1688.com +*.alibaba.com +*.aliexpress.com +*.taobao.com +*.tmall.com +*.aliyun.com +*.alibabacloud.com +*.alibaba-inc.com +*.aliyun-inc.com +*.alimama.com +*.Daraz.com +*.aliexpress.ru +*.1688.com diff --git a/src/alibaba/note.txt b/src/alibaba/note.txt new file mode 100644 index 0000000..d2cc0fd --- /dev/null +++ b/src/alibaba/note.txt @@ -0,0 +1 @@ +46581 https://hackerone.com/alibaba Alibaba BBP alibaba diff --git a/src/allegion/APPLE_STORE_APP_ID.txt b/src/allegion/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..b775ca7 --- /dev/null +++ b/src/allegion/APPLE_STORE_APP_ID.txt @@ -0,0 +1,29 @@ +com.schlage.overtur +com.allegion.access.store +com.schlage.engage +com.allegion.sense.store +com.allegion.freestyle +com.allegion.cisa.smartaccess +com.allegion.IFkey +com.my-mobilekey.key4friends +com.simonsvoss.mobilekey.adminapp +https://apps.apple.com/au/app/schlage-breeze-guest/id1533768823 +https://apps.apple.com/au/app/schlage-breeze-hotel/id1533768772 +https://apps.apple.com/au/app/schlage-breeze/id1510864627 +https://apps.apple.com/in/app/gainsborough-freestyle/id1522406111 +https://apps.apple.com/la/app/isel/id1220364077 +https://apps.apple.com/la/app/schlage-base/id1634746027 +https://apps.apple.com/us/app/key/id1150331435 +https://apps.apple.com/us/app/key4friends/id1141846653 +https://apps.apple.com/us/app/kryptonite-locks-lights-app/id1534328893 +https://apps.apple.com/us/app/mobilekey/id1231074427 +https://apps.apple.com/us/app/pure-mobile/id1194728322 +https://apps.apple.com/us/app/schlage-home/id1038212933 +https://apps.apple.com/us/app/schlage-mobile-access/id1505710549 +https://apps.apple.com/us/app/yonomi/id991840741 +https://apps.apple.com/us/app/zentra-access/id1593437290 +https://itunes.apple.com/app/id1038212933 +https://itunes.apple.com/app/id1462089647 +https://itunes.apple.com/app/id920140172 +com.allegion.cisa.openx +com.allegion.cisa.openxkey diff --git a/src/allegion/GOOGLE_PLAY_APP_ID.txt b/src/allegion/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..5acada7 --- /dev/null +++ b/src/allegion/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1,32 @@ +com.schlage.overtur +com.allegion.schlagemobileaccess +com.allegion.tigershark +com.allegion.stingray +com.allegion.leopard +com.simonsvoss.mobilekey.adminapp +com.simonsvoss.mobilekey.key4android +com.interflex.key +com.allegion.teachin +com.allegion.cisa.smartaccess +com.allegion.freestyle +https://play.google.com/store/apps/details?id=com.allegion.cisa.smartaccess +https://play.google.com/store/apps/details?id=com.allegion.freestyle +https://play.google.com/store/apps/details?id=com.allegion.leopard +https://play.google.com/store/apps/details?id=com.allegion.schlagemobileaccess +https://play.google.com/store/apps/details?id=com.allegion.stingray +https://play.google.com/store/apps/details?id=com.allegion.teachin +https://play.google.com/store/apps/details?id=com.allegion.tigershark +https://play.google.com/store/apps/details?id=com.breeze.hotel +https://play.google.com/store/apps/details?id=com.breeze.lock&hl=en_AU +https://play.google.com/store/apps/details?id=com.breezehotel.staff&hl=en_US +https://play.google.com/store/apps/details?id=com.isonas.puremobile&hl=en_US&gl=US +https://play.google.com/store/apps/details?id=com.schlage.overtur +https://play.google.com/store/apps/details?id=com.schlage.smart +https://play.google.com/store/apps/details?id=com.schlageabode.lock&hl=en_NZ +https://play.google.com/store/apps/details?id=com.simonsvoss.mobilekey.adminapp +https://play.google.com/store/apps/details?id=com.simonsvoss.mobilekey.key4android +https://play.google.com/store/apps/details?id=com.sp_expert_connect.app +https://play.google.com/store/apps/details?id=com.yonomi +https://play.google.com/store/apps/details?id=com.yudu.kryptonite.na&hl=en_US&gl=US +com.allegion.cisa.openx +com.allegion.cisa.openx_key diff --git a/src/allegion/HARDWARE.txt b/src/allegion/HARDWARE.txt new file mode 100644 index 0000000..2237567 --- /dev/null +++ b/src/allegion/HARDWARE.txt @@ -0,0 +1,23 @@ +Schlage NDE/NDEB +Schlage Encode +Von Duprin RU/RM +Schlage Control +Schlage GWE Gateway +Schlage CTE Single Door Controller +Schlage LE/LEB +Interflex Terminals access control +Interflex Terminals time recording +Interflex controllers +Interflex desktop readers and encoders +eSigno Lock 2 +Wall Reader 2 +Encoder 2 +BLEGateway (IF-4041) +eServer +Aero USB RFID Reader +MyEVO Lock Controller +MyEVO RFID Transponder +Domo Connexa Button +OpenX eCylinder +OpenX eHandle +OpenX Wall Reader diff --git a/src/allegion/OTHER.txt b/src/allegion/OTHER.txt new file mode 100644 index 0000000..04ae8ef --- /dev/null +++ b/src/allegion/OTHER.txt @@ -0,0 +1,10 @@ +Interflex Software IF-6040 +Interflex Software SP-EXPERT +Interflex Software IF-6020 +Interflex Managed Services (cloud) +https://cisasmartaccess.allegion.com/login +https://keycontrol.allegion.com/it +CISA Aero PMS Service (Windows) +Smart Software 4 +CISA Reader App (Windows) +CISA Reader App (iMac) diff --git a/src/allegion/URL.txt b/src/allegion/URL.txt new file mode 100644 index 0000000..cec2c68 --- /dev/null +++ b/src/allegion/URL.txt @@ -0,0 +1,33 @@ +*.allegion.com +www.specadsystems.com +www.isonas.com +www.krytonitelock.com +www.republicdoor.com +www.schlage.com +www.fireglass.com +*.yonomi.co +www.trelock.com +www.simons-voss.com +www.interflex.de +www.gainsboroughhardware.com.au +www.fshlocking.com.au +www.allegion.co.uk +www.cisa.com +brio.com.au +brionz.com +briouk.com +briousa.com +www.bricard.com +www.axasecurity.com +www.ausloc.com +*.allegionengage.com +*.isonaspureaccesscloud.com +*.my-mobilekey.com +www.yonomi.com +www.interflex.com +www.normbau.de +www.planopunkt.com +zentra.co +zeroplus.co.uk +www.bossdoorcontrols.com +www.boss-idc.com diff --git a/src/allegion/WILDCARD.txt b/src/allegion/WILDCARD.txt new file mode 100644 index 0000000..6c56098 --- /dev/null +++ b/src/allegion/WILDCARD.txt @@ -0,0 +1,10 @@ +http://*.allegion.com +http://*.yonomi.co +http://*.allegionengage.com +http://*.isonaspureaccesscloud.com +http://*.my-mobilekey.com +*.allegion.com +*.yonomi.co +*.allegionengage.com +*.isonaspureaccesscloud.com +*.my-mobilekey.com diff --git a/src/allegion/note.txt b/src/allegion/note.txt new file mode 100644 index 0000000..e2ec99c --- /dev/null +++ b/src/allegion/note.txt @@ -0,0 +1 @@ +55426 https://hackerone.com/allegion Allegion allegion diff --git a/src/allegro/URL.txt b/src/allegro/URL.txt new file mode 100644 index 0000000..8aea880 --- /dev/null +++ b/src/allegro/URL.txt @@ -0,0 +1 @@ +*.allegro.pl.allegrosandbox.pl diff --git a/src/allegro/WILDCARD.txt b/src/allegro/WILDCARD.txt new file mode 100644 index 0000000..df743ad --- /dev/null +++ b/src/allegro/WILDCARD.txt @@ -0,0 +1,2 @@ +http://*.allegro.pl.allegrosandbox.pl +*.allegro.pl.allegrosandbox.pl diff --git a/src/allegro/note.txt b/src/allegro/note.txt new file mode 100644 index 0000000..a617a1e --- /dev/null +++ b/src/allegro/note.txt @@ -0,0 +1 @@ +37660 https://hackerone.com/allegro Allegro allegro diff --git a/src/alohi/APPLE_STORE_APP_ID.txt b/src/alohi/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..6e540aa --- /dev/null +++ b/src/alohi/APPLE_STORE_APP_ID.txt @@ -0,0 +1,5 @@ +1170782544 +1478723637 +plus.scan.ScanPlus +plus.sign.SignPlus +plus.fax.FaxPlus diff --git a/src/alohi/GOOGLE_PLAY_APP_ID.txt b/src/alohi/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..bf5cd5a --- /dev/null +++ b/src/alohi/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1,3 @@ +plus.fax.android +plus.sign.android +plus.scan.android diff --git a/src/alohi/OTHER.txt b/src/alohi/OTHER.txt new file mode 100644 index 0000000..c7d7b5e --- /dev/null +++ b/src/alohi/OTHER.txt @@ -0,0 +1 @@ +FAX Programmable API diff --git a/src/alohi/URL.txt b/src/alohi/URL.txt new file mode 100644 index 0000000..b601bf1 --- /dev/null +++ b/src/alohi/URL.txt @@ -0,0 +1,3 @@ +*.sign.plus +www.alohi.com +*.fax.plus diff --git a/src/alohi/WILDCARD.txt b/src/alohi/WILDCARD.txt new file mode 100644 index 0000000..445e853 --- /dev/null +++ b/src/alohi/WILDCARD.txt @@ -0,0 +1,4 @@ +http://*.sign.plus +http://*.fax.plus +*.sign.plus +*.fax.plus diff --git a/src/alohi/note.txt b/src/alohi/note.txt new file mode 100644 index 0000000..fa07319 --- /dev/null +++ b/src/alohi/note.txt @@ -0,0 +1 @@ +56034 https://hackerone.com/alohi Alohi alohi diff --git a/src/alsco/URL.txt b/src/alsco/URL.txt new file mode 100644 index 0000000..63087ad --- /dev/null +++ b/src/alsco/URL.txt @@ -0,0 +1,3 @@ +http://checksw.com +royal.checksw.com +checksw.com diff --git a/src/alsco/note.txt b/src/alsco/note.txt new file mode 100644 index 0000000..a7caccf --- /dev/null +++ b/src/alsco/note.txt @@ -0,0 +1 @@ +58856 https://hackerone.com/alsco ALSCO alsco diff --git a/src/alshaya/APPLE_STORE_APP_ID.txt b/src/alshaya/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..d258dac --- /dev/null +++ b/src/alshaya/APPLE_STORE_APP_ID.txt @@ -0,0 +1,6 @@ +1445040108 +1541576878 +1547602361 +1559906965 +1563808574 +1664702687 diff --git a/src/alshaya/GOOGLE_PLAY_APP_ID.txt b/src/alshaya/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..866a241 --- /dev/null +++ b/src/alshaya/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1,6 @@ +https://play.google.com/store/apps/details?id=com.hm.mena +market://details?id=com.aeo.mena +market://details?id=com.aloyoga.mena +market://details?id=com.bbw.mena +market://details?id=com.footlocker.mena +market://details?id=com.vs.mena diff --git a/src/alshaya/OTHER_IPA.txt b/src/alshaya/OTHER_IPA.txt new file mode 100644 index 0000000..da0d2b5 --- /dev/null +++ b/src/alshaya/OTHER_IPA.txt @@ -0,0 +1 @@ +id1563808574 diff --git a/src/alshaya/URL.txt b/src/alshaya/URL.txt new file mode 100644 index 0000000..cad9558 --- /dev/null +++ b/src/alshaya/URL.txt @@ -0,0 +1,58 @@ +boysweb.shaya.com.tr +boyswebtest.shaya.com.tr +onlinepos.shaya.com.tr +opsassistbrandedsolutions.shaya.com.tr +pmp.shaya.com.tr +sbuxopsassist.shaya.com.tr +vpn.shaya.com.tr +ae.boots.com +bn.boots.com +kw.boots.com +qt.boots.com +sa.boots.com +ae.hm.com +eg.hm.com +kw.hm.com +qa.hm.com +sa.hm.com +ae.cos.com +kw.cos.com +sa.cos.com +ae.cosstores.com +kw.cosstores.com +sa.cosstores.com +ae.shopjustice.me +kw.shopjustice.me +sa.shopjustice.me +card.starbucks.com.kz +ccareapuat.alshaya.com +coms.carrier.alshaya.com +comsuat.carrier.alshaya.com +customercare.alshaya.com +dev.alshaya.com +devimages.alshaya.com +gtmsservice.alshaya.com +internaljobs.alshaya.com +jenkins.alshaya.com +jobsearch.alshaya.com +onlinestaffstore.alshaya.com +prodimages.alshaya.com +suppliertraining.alshaya.com +bakimonarim.shaya.com.tr +kuwait.kidzania.com +www.visionexpress.me +www.tekzone.me +bathandbodyworks.ro +victoriassecret.cz +thebodyshop.cz +starbucks.az +shayakahve.com.tr +ae.charlottetilbury.com +bathandbodyworks.ro/ +ae.charlottetilbury.com/ +www.shayakahve.com.tr/ +www.starbucks.az/ +en.www.tekzone.me +thebodyshop.cz/ +victoriassecret.cz/ +victoriassecret.ro/ diff --git a/src/alshaya/WILDCARD.txt b/src/alshaya/WILDCARD.txt new file mode 100644 index 0000000..3dc0241 --- /dev/null +++ b/src/alshaya/WILDCARD.txt @@ -0,0 +1,73 @@ +*.shaya.com.tr +*.starbucks.com.kz +*.aloyoga.ae +*.aloyoga.com.kw +*.aloyoga.com.qa +*.alshayaenterprises.com +*.americaneagle.ae +*.americaneagle.com.bh +*.americaneagle.com.eg +*.americaneagle.com.jo +*.americaneagle.com.kw +*.americaneagle.com.qa +*.americaneagle.com.sa +*.bathandbodyworks.ae +*.westelm.com.sa +*.westelm.com.kw +*.westelm.ae +*.victoriassecret.pl +*.victoriassecret.com.tr +*.victoriassecret.com.sa +*.victoriassecret.com.qa +*.victoriassecret.com.kw +*.victoriassecret.ae +*.victoriassecreatbeauty.ro +*.thebodyshop.qa +*.thebodyshop.pl +*.thebodyshop.com.tr +*.thebodyshop.com.kw +*.thebodyshop.com.eg +*.thebodyshop.com.bh +*.starbuckscardtr.com +*.starbucks.com.tr +*.shakeshack.co.uk +*.potterybarnkids.com.sa +*.potterybarnkids.com.kw +*.potterybarnkids.ae +*.potterybarn.com.sa +*.potterybarn.com.kw +*.potterybarn.ae +*.paylessshoes.ae +*.payless.com.kw +*.muji.qa +*.muji.com.sa +*.muji.com.kw +*.muji.bh +*.muji.ae +*.mothercare.qa +*.mothercare.com.sa +*.mothercare.com.kw +*.mothercare.com.eg +*.mothercare.ae +*.kidzaniakuwait-tickets.com +*.footlocker.qa +*.footlocker.com.eg +*.footlocker.com.bh +*.footlocker.ae +*.debenhams.sa +*.debenhams.com.kw +*.debenhams.ae +*.bathandbodyworks.pl +*.bathandbodyworks.jo +*.bathandbodyworks.com.tr +*.bathandbodyworks.com.sa +*.bathandbodyworks.com.qa +*.bathandbodyworks.com.kw +*.bathandbodyworks.com.eg +*.bathandbodyworks.com.bh +*.alshaya.com +*.carrier.alshaya.com +*.supplier.alshaya.com +*.starbucks.az +*.tamanna.com +*.shayakahve.com.tr diff --git a/src/alshaya/note.txt b/src/alshaya/note.txt new file mode 100644 index 0000000..6efca1c --- /dev/null +++ b/src/alshaya/note.txt @@ -0,0 +1 @@ +63712 https://hackerone.com/alshaya Alshaya alshaya diff --git a/src/alvosec/URL.txt b/src/alvosec/URL.txt new file mode 100644 index 0000000..4dbbb58 --- /dev/null +++ b/src/alvosec/URL.txt @@ -0,0 +1,5 @@ +www.alvosec.com +dns.alvosec.com +cloud.alvosec.com +mail.alvosec.com +proton-api.alvosec.com diff --git a/src/alvosec/note.txt b/src/alvosec/note.txt new file mode 100644 index 0000000..1d6d77f --- /dev/null +++ b/src/alvosec/note.txt @@ -0,0 +1 @@ +16420 https://hackerone.com/alvosec Alvosec alvosec diff --git a/src/amazonvrp-devices/APPLE_STORE_APP_ID.txt b/src/amazonvrp-devices/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..6b910f7 --- /dev/null +++ b/src/amazonvrp-devices/APPLE_STORE_APP_ID.txt @@ -0,0 +1,8 @@ +944011620 +302584613 +1496435377 +947984433 +1324809509 +621574163 +1291586307 +1528364633 diff --git a/src/amazonvrp-devices/GOOGLE_PLAY_APP_ID.txt b/src/amazonvrp-devices/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..ec0ef41 --- /dev/null +++ b/src/amazonvrp-devices/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1,8 @@ +com.amazon.kindle +com.amazon.healthtech.malibu +com.amazon.storm.lightning.client.aosp +com.amazon.tahoe.freetime +com.amazon.dee.app +com.amazon.clouddrive.photos +com.amazon.cosmos +com.amazon.tails diff --git a/src/amazonvrp-devices/HARDWARE.txt b/src/amazonvrp-devices/HARDWARE.txt new file mode 100644 index 0000000..39d4360 --- /dev/null +++ b/src/amazonvrp-devices/HARDWARE.txt @@ -0,0 +1,6 @@ +Tablets +Echo Family Devices +FireTV +Kindle E-Reader +Luna +Halo diff --git a/src/amazonvrp-devices/OTHER.txt b/src/amazonvrp-devices/OTHER.txt new file mode 100644 index 0000000..01ea8a0 --- /dev/null +++ b/src/amazonvrp-devices/OTHER.txt @@ -0,0 +1 @@ +Other diff --git a/src/amazonvrp-devices/URL.txt b/src/amazonvrp-devices/URL.txt new file mode 100644 index 0000000..7fdb9f8 --- /dev/null +++ b/src/amazonvrp-devices/URL.txt @@ -0,0 +1,14 @@ +read.amazon.com +alexaanswers.amazon.com +blueprints.amazon.com +creator.amazon.com +amazon.com/hz/mycd/* +a4k.amazon.com +developer.amazon.com/apps-and-games/* +developer.amazon.com/alexa/* +alexa.amazon.com +skills-store.amazon.com +www.amazon.com/photos/* +api.amazonalexa.com/* +https://www.amazon.com/luna/* +https://luna.amazon.com/* diff --git a/src/amazonvrp-devices/note.txt b/src/amazonvrp-devices/note.txt new file mode 100644 index 0000000..c43b9ee --- /dev/null +++ b/src/amazonvrp-devices/note.txt @@ -0,0 +1 @@ +55148 https://hackerone.com/amazonvrp-devices Amazon Vulnerability Research Program - Devices amazonvrp-devices diff --git a/src/amazonvrp/APPLE_STORE_APP_ID.txt b/src/amazonvrp/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..0a4c3ec --- /dev/null +++ b/src/amazonvrp/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +297606951 diff --git a/src/amazonvrp/GOOGLE_PLAY_APP_ID.txt b/src/amazonvrp/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..23d9467 --- /dev/null +++ b/src/amazonvrp/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.amazon.mShop.android.shopping diff --git a/src/amazonvrp/OTHER.txt b/src/amazonvrp/OTHER.txt new file mode 100644 index 0000000..0d2101b --- /dev/null +++ b/src/amazonvrp/OTHER.txt @@ -0,0 +1,11 @@ +Other Amazon Retail Sites +Other Amazon Retail Mobile Apps +Amazon Retail Subsidiaries +Other Amazon Retail Assets (if you are not sure about the asset scope, please use this one) +Other Amazon Retail Sites (Please only actively test explicitly stated scope) +Other Amazon Retail Mobile Apps (Please only actively test explicitly stated scope) +Amazon Retail Subsidiaries (Please only actively test explicitly stated scope) +Other Amazon Retail Assets (Please only actively test explicitly stated scope) +www.amazon.in specific areas of note +https://www.amazonpay.in/* +Amazon Subsidiaries (Please only actively test explicitly stated scope) diff --git a/src/amazonvrp/URL.txt b/src/amazonvrp/URL.txt new file mode 100644 index 0000000..6084555 --- /dev/null +++ b/src/amazonvrp/URL.txt @@ -0,0 +1,97 @@ +https://smile.amazon.* +https://flex.amazon.* +https://logistics.amazon.* +https://org.amazon.* +www.amazon.* +https://primenow.amazon.* +https://pay.amazon.* +https://fresh.amazon.* +https://photos.amazon.* +https://prime.amazon.* +https://music.amazon.com +https://manufacturing.amazon.* +https://freight.amazon.* +https://shopbylook.amazon.* +chat.amazon.com +https://affiliate-program.amazon.com +https://track.amazon.com +https://api.amazon.com +https://manufacturing.amazon.com +https://www.amazon.com/dppui/* +https://www.amazon.com/gp/buy/* +www.amazon.com/cpe/yourpayments/wallet +https://www.amazon.com/amazoncash +apay-us.amazon.com +payments.amazon.* +smile.amazon.* +flex.amazon.* +logistics.amazon.* +org.amazon.* +primenow.amazon.* +pay.amazon.* +fresh.amazon.* +photos.amazon.* +prime.amazon.* +music.amazon.com +manufacturing.amazon.* +freight.amazon.* +shopbylook.amazon.* +affiliate-program.amazon.com +track.amazon.com +api.amazon.com +manufacturing.amazon.com +http://www.amazon.com/cpe/yourpayments/wallet +https://www.amazonpay.in/* +https://www.amazon.in/wealth/* +https://amazonpay.amazon.in/* +aax-us-iad.amazon.com +aca-livecards-service.amazon.com +address-photos.amazon.com +ads-setu-proxy.amazon.com +alexa-comms-mobile-service-na.amazon.com +cloudaccesstelemetry-us-east-1.amazon.com +completion.amazon.com +data-na.amazon.com +dolphin.amazon.com +dss-na.amazon.com +ftvmps-na.amazon.com +ftvpes-na.amazon.com +ftvr-na.amazon.com +ftvsacs-na.amazon.com +gateway-ink.amazon.com +imdbtv-backend-na.amazon.com +mas-ext.amazon.com +mas-sdk.amazon.com +msh.amazon.com +music-api.amazon.com +music-hints-na.amazon.com +musicapp.amazon.com +musiccentral.amazon.com +pitangui.amazon.com +preview-flex-capacity-na.amazon.com +prod-dp-discovery-us-east-1.amazon.com +rabbitinstruction-na.amazon.com +relay.amazon.com +sellercentral.amazon.com +spapi-na.amazon.com +a4k.amazon.com +advertising-api.amazon.com +advertising.amazon.com +appstore-tv-prod-na.amazon.com +cscentral.amazon.com +av-na.amazon.com +dcape-na.amazon.com +dna.amazon.com +dv-manifest-service-na-prod.amazon.com +flex-capacity-na.amazon.com +kca.amazon.com +kwis-opf.amazon.com +mag-na.amazon.com +merch.amazon.com +mlis.amazon.com +music-xray-service.amazon.com +na.account.amazon.com +paragon-na.amazon.com +read.amazon.com +updates.amazon.com +amazonpayinsurance.in diff --git a/src/amazonvrp/WILDCARD.txt b/src/amazonvrp/WILDCARD.txt new file mode 100644 index 0000000..8a8827f --- /dev/null +++ b/src/amazonvrp/WILDCARD.txt @@ -0,0 +1,26 @@ +*.amazon.cl +*.amazon.co.za +*.amazon.com.au +*.amazon.com.br +*.amazon.com.co +*.amazon.com.mx +*.amazon.com.ng +*.amazon.com.tr +*.amazon.pl +*.amazon.com.be +*.amazon.ae +*.amazon.ca +*.amazon.cn +*.amazon.co.jp +*.amazon.co.uk +*.amazon.de +*.amazon.eg +*.amazon.es +*.amazon.fr +*.amazon.in +*.amazon.it +*.amazon.nl +*.amazon.sa +*.amazon.se +*.amazon.sg +*.amazon.com diff --git a/src/amazonvrp/note.txt b/src/amazonvrp/note.txt new file mode 100644 index 0000000..fc4c5af --- /dev/null +++ b/src/amazonvrp/note.txt @@ -0,0 +1 @@ +44002 https://hackerone.com/amazonvrp Amazon Vulnerability Research Program amazonvrp diff --git a/src/amber-ai/note.txt b/src/amber-ai/note.txt new file mode 100644 index 0000000..8779f71 --- /dev/null +++ b/src/amber-ai/note.txt @@ -0,0 +1 @@ +56098 https://hackerone.com/amber-ai AMBER AI amber-ai diff --git a/src/american_systems_bbp/URL.txt b/src/american_systems_bbp/URL.txt new file mode 100644 index 0000000..a7259d5 --- /dev/null +++ b/src/american_systems_bbp/URL.txt @@ -0,0 +1,26 @@ +*.alexamerican.com +*.alexamericansystems.com +*.americansystems.com +*.ascvpc.com +*.ascsites.com +*.ascgov.com +*.ddlomni.com +*.nhaero.com +*.americansystems.info +*.amsyscorp.com +*.2asc.com +*.americanalliant.com +*.asc.name +*.digitalaccess.com +*.americansystemsuniversity.com +*.americansystems.org +*.thoughtmill.com +*.american-systems.org +*.american-systems.com +*.asextranet.com +*.emsolutionsinc.com +*.emsolve.com +*.essworld.net +*.nswccd-fbw-scs.com +*.asvpc.com +*.alex-as.com diff --git a/src/american_systems_bbp/note.txt b/src/american_systems_bbp/note.txt new file mode 100644 index 0000000..401b9f8 --- /dev/null +++ b/src/american_systems_bbp/note.txt @@ -0,0 +1 @@ +48095 https://hackerone.com/american_systems_bbp AMERICAN SYSTEMS american_systems_bbp diff --git a/src/amitree_inc/OTHER.txt b/src/amitree_inc/OTHER.txt new file mode 100644 index 0000000..2a05135 --- /dev/null +++ b/src/amitree_inc/OTHER.txt @@ -0,0 +1 @@ +Amitree Chrome extension https://chrome.google.com/webstore/detail/folio/ecaieeiecbdhkcgknidmfelflleobbnp?hl=en diff --git a/src/amitree_inc/URL.txt b/src/amitree_inc/URL.txt new file mode 100644 index 0000000..b7aaf50 --- /dev/null +++ b/src/amitree_inc/URL.txt @@ -0,0 +1 @@ +www.amitree.com diff --git a/src/amitree_inc/note.txt b/src/amitree_inc/note.txt new file mode 100644 index 0000000..3323be7 --- /dev/null +++ b/src/amitree_inc/note.txt @@ -0,0 +1 @@ +40637 https://hackerone.com/amitree_inc Amitree Inc amitree_inc diff --git a/src/anywhererealestate/URL.txt b/src/anywhererealestate/URL.txt new file mode 100644 index 0000000..02560b9 --- /dev/null +++ b/src/anywhererealestate/URL.txt @@ -0,0 +1,16 @@ +*.realogy.* +*.bhgre.* +*.century21.* +*.coldwellbanker.* +*.cbcworldwide.* +*.corcoran.* +*.era.com +*.sothebysrealty.* +*.nrtllc.* +*.trgc.com +*.leadrouter.com +*.cartus.* +*.mycbdesk.com +new.myzap.com +*.anywhere.re +*.cartus.com diff --git a/src/anywhererealestate/WILDCARD.txt b/src/anywhererealestate/WILDCARD.txt new file mode 100644 index 0000000..8ab8240 --- /dev/null +++ b/src/anywhererealestate/WILDCARD.txt @@ -0,0 +1,38 @@ +http://*.realogy.* +http://*.bhgre.* +http://*.century21.* +http://*.coldwellbanker.* +http://*.cbcworldwide.* +http://*.corcoran.* +http://*.era.com +http://*.sothebysrealty.* +http://*.nrtllc.* +http://*.trgc.com +http://*.leadrouter.com +http://*.cartus.com +http://*.mycbdesk.com +http://*.anywhere.re +*.realogy.* +*.bhgre.* +*.century21.* +*.coldwellbanker.* +*.cbcworldwide.* +*.corcoran.* +*.era.com +*.sothebysrealty.* +*.nrtllc.* +*.trgc.com +*.leadrouter.com +*.cartus.com +*.mycbdesk.com +*.anywhere.re +*.century21.com +*.realogy.com +*.bhgre.com +*.sothebysrealty.com +*.corcoran.com +*.cbcworldwide.com +*.nrtllc.com +*.coldwellbanker.com +*.century21global.com +*.c21.com diff --git a/src/anywhererealestate/note.txt b/src/anywhererealestate/note.txt new file mode 100644 index 0000000..559b34d --- /dev/null +++ b/src/anywhererealestate/note.txt @@ -0,0 +1 @@ +50349 https://hackerone.com/anywhererealestate Anywhere Real Estate anywhererealestate diff --git a/src/aodocs/OTHER.txt b/src/aodocs/OTHER.txt new file mode 100644 index 0000000..d35860a --- /dev/null +++ b/src/aodocs/OTHER.txt @@ -0,0 +1 @@ +AODocs Smartbar Chrome Extension diff --git a/src/aodocs/URL.txt b/src/aodocs/URL.txt new file mode 100644 index 0000000..4aefc1a --- /dev/null +++ b/src/aodocs/URL.txt @@ -0,0 +1 @@ +https://ao-docs.appspot.com/api/explorer diff --git a/src/aodocs/note.txt b/src/aodocs/note.txt new file mode 100644 index 0000000..f2ead12 --- /dev/null +++ b/src/aodocs/note.txt @@ -0,0 +1 @@ +40811 https://hackerone.com/aodocs AODocs aodocs diff --git a/src/aon/OTHER.txt b/src/aon/OTHER.txt new file mode 100644 index 0000000..1c14796 --- /dev/null +++ b/src/aon/OTHER.txt @@ -0,0 +1 @@ +All internet-facing Aon assets are in scope diff --git a/src/aon/note.txt b/src/aon/note.txt new file mode 100644 index 0000000..c3cfbc6 --- /dev/null +++ b/src/aon/note.txt @@ -0,0 +1 @@ +70006 https://hackerone.com/aon Aon aon diff --git a/src/apache_kafka_h1c/SOURCE_CODE.txt b/src/apache_kafka_h1c/SOURCE_CODE.txt new file mode 100644 index 0000000..412041d --- /dev/null +++ b/src/apache_kafka_h1c/SOURCE_CODE.txt @@ -0,0 +1 @@ +https://github.com/apache/kafka diff --git a/src/apache_kafka_h1c/note.txt b/src/apache_kafka_h1c/note.txt new file mode 100644 index 0000000..425895d --- /dev/null +++ b/src/apache_kafka_h1c/note.txt @@ -0,0 +1 @@ +36867 https://hackerone.com/apache_kafka_h1c Apache Kafka (European Commission - DIGIT) apache_kafka_h1c diff --git a/src/apitest/note.txt b/src/apitest/note.txt new file mode 100644 index 0000000..9420134 --- /dev/null +++ b/src/apitest/note.txt @@ -0,0 +1 @@ +10543 https://hackerone.com/apitest APITest.IO apitest diff --git a/src/apnic/CIDR.txt b/src/apnic/CIDR.txt new file mode 100644 index 0000000..91219dd --- /dev/null +++ b/src/apnic/CIDR.txt @@ -0,0 +1,2 @@ +203.119.102.40/32 +203.133.248.0/22 diff --git a/src/apnic/OTHER.txt b/src/apnic/OTHER.txt new file mode 100644 index 0000000..770a9c1 --- /dev/null +++ b/src/apnic/OTHER.txt @@ -0,0 +1,2 @@ +* IPv4 addresses +* IPv6 addresses diff --git a/src/apnic/URL.txt b/src/apnic/URL.txt new file mode 100644 index 0000000..5fd6118 --- /dev/null +++ b/src/apnic/URL.txt @@ -0,0 +1,14 @@ +*.apnic.net +*.apnic.foundation +*.isif.asia +*.seedalliance.net +*.apidt.org +orbit.apnic.net +ftp.apnic.net +stats.labs.apnic.net +aso.apnic.net +nori.apnic.net +rsync.apnic.net +registry-testbed.apnic.net +rpki.apnic.net +submission.apnic.net diff --git a/src/apnic/WILDCARD.txt b/src/apnic/WILDCARD.txt new file mode 100644 index 0000000..179f79c --- /dev/null +++ b/src/apnic/WILDCARD.txt @@ -0,0 +1,10 @@ +http://*.apnic.net +http://*.apnic.foundation +http://*.isif.asia +http://*.seedalliance.net +http://*.apidt.org +*.apnic.net +*.apnic.foundation +*.isif.asia +*.seedalliance.net +*.apidt.org diff --git a/src/apnic/note.txt b/src/apnic/note.txt new file mode 100644 index 0000000..e8df3a4 --- /dev/null +++ b/src/apnic/note.txt @@ -0,0 +1 @@ +54565 https://hackerone.com/apnic APNIC apnic diff --git a/src/arkadiyt-projects/SOURCE_CODE.txt b/src/arkadiyt-projects/SOURCE_CODE.txt new file mode 100644 index 0000000..fdefac7 --- /dev/null +++ b/src/arkadiyt-projects/SOURCE_CODE.txt @@ -0,0 +1,7 @@ +https://github.com/arkadiyt/ssrf_filter +https://github.com/arkadiyt/bounty-targets +https://github.com/arkadiyt/aws_public_ips +https://github.com/arkadiyt/zoom-redirector +https://github.com/arkadiyt/protodump +https://github.com/arkadiyt/ddexport +https://github.com/arkadiyt/free-ft diff --git a/src/arkadiyt-projects/URL.txt b/src/arkadiyt-projects/URL.txt new file mode 100644 index 0000000..69d0ca3 --- /dev/null +++ b/src/arkadiyt-projects/URL.txt @@ -0,0 +1 @@ +*.arkadiyt.com diff --git a/src/arkadiyt-projects/WILDCARD.txt b/src/arkadiyt-projects/WILDCARD.txt new file mode 100644 index 0000000..f02e8e3 --- /dev/null +++ b/src/arkadiyt-projects/WILDCARD.txt @@ -0,0 +1,2 @@ +http://*.arkadiyt.com +*.arkadiyt.com diff --git a/src/arkadiyt-projects/note.txt b/src/arkadiyt-projects/note.txt new file mode 100644 index 0000000..3a96ab5 --- /dev/null +++ b/src/arkadiyt-projects/note.txt @@ -0,0 +1 @@ +29833 https://hackerone.com/arkadiyt-projects arkadiyt-projects arkadiyt-projects diff --git a/src/arkose_labs/URL.txt b/src/arkose_labs/URL.txt new file mode 100644 index 0000000..64d166b --- /dev/null +++ b/src/arkose_labs/URL.txt @@ -0,0 +1,8 @@ +client-api.arkoselabs.com +cdn.arkoselabs.com +customer-sessions.arkoselabs.com +portal.arkoselabs.com +verify.arkoselabs.com +iframe.arkoselabs.com +www.arkoselabs.com +demo.arkoselabs.com diff --git a/src/arkose_labs/note.txt b/src/arkose_labs/note.txt new file mode 100644 index 0000000..f303e4b --- /dev/null +++ b/src/arkose_labs/note.txt @@ -0,0 +1 @@ +58609 https://hackerone.com/arkose_labs Arkose Labs arkose_labs diff --git a/src/aspen/SOURCE_CODE.txt b/src/aspen/SOURCE_CODE.txt new file mode 100644 index 0000000..300a07a --- /dev/null +++ b/src/aspen/SOURCE_CODE.txt @@ -0,0 +1 @@ +https://github.com/AspenWeb diff --git a/src/aspen/note.txt b/src/aspen/note.txt new file mode 100644 index 0000000..8e33dd7 --- /dev/null +++ b/src/aspen/note.txt @@ -0,0 +1 @@ +9520 https://hackerone.com/aspen Aspen aspen diff --git a/src/att/OTHER.txt b/src/att/OTHER.txt new file mode 100644 index 0000000..50836b3 --- /dev/null +++ b/src/att/OTHER.txt @@ -0,0 +1,2 @@ +Please refer to the policy page for scope +Other Assets diff --git a/src/att/note.txt b/src/att/note.txt new file mode 100644 index 0000000..01a51e2 --- /dev/null +++ b/src/att/note.txt @@ -0,0 +1 @@ +122 https://hackerone.com/att AT&T att diff --git a/src/automation-anywhere/URL.txt b/src/automation-anywhere/URL.txt new file mode 100644 index 0000000..7e89016 --- /dev/null +++ b/src/automation-anywhere/URL.txt @@ -0,0 +1,7 @@ +automationanywhere.university +https://apeople.automationanywhere.com/ +https://botstore.automationanywhere.com/ +*.my.automationanywhere.digital +14west-1.my.automationanywhere.digital +1775.my.automationanywhere.digital +botstore.automationanywhere.com diff --git a/src/automation-anywhere/WILDCARD.txt b/src/automation-anywhere/WILDCARD.txt new file mode 100644 index 0000000..7a7a294 --- /dev/null +++ b/src/automation-anywhere/WILDCARD.txt @@ -0,0 +1,2 @@ +http://*.my.automationanywhere.digital +*.my.automationanywhere.digital diff --git a/src/automation-anywhere/note.txt b/src/automation-anywhere/note.txt new file mode 100644 index 0000000..a04945d --- /dev/null +++ b/src/automation-anywhere/note.txt @@ -0,0 +1 @@ +55190 https://hackerone.com/automation-anywhere Automation Anywhere automation-anywhere diff --git a/src/automattic/APPLE_STORE_APP_ID.txt b/src/automattic/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..23d4a72 --- /dev/null +++ b/src/automattic/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +com.tumblr.tumblr diff --git a/src/automattic/GOOGLE_PLAY_APP_ID.txt b/src/automattic/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..c0aa355 --- /dev/null +++ b/src/automattic/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.tumblr diff --git a/src/automattic/OTHER.txt b/src/automattic/OTHER.txt new file mode 100644 index 0000000..08464fa --- /dev/null +++ b/src/automattic/OTHER.txt @@ -0,0 +1,4 @@ +WooCommerce +Crowdsignal +WordPress.com VIP +WordPress Plugins & Themes diff --git a/src/automattic/SOURCE_CODE.txt b/src/automattic/SOURCE_CODE.txt new file mode 100644 index 0000000..e4d89f3 --- /dev/null +++ b/src/automattic/SOURCE_CODE.txt @@ -0,0 +1 @@ +Jetpack diff --git a/src/automattic/URL.txt b/src/automattic/URL.txt new file mode 100644 index 0000000..fdca256 --- /dev/null +++ b/src/automattic/URL.txt @@ -0,0 +1,18 @@ +api.tumblr.com +safe.tumblr.com +secure.tumblr.com +assets.tumblr.com +embed.tumblr.com +*.tumblr.com +www.tumblr.com +t.umblr.com +*.srvcs.tumblr.com +wordpress.com +akismet.com +mailpoet.com +my.pressable.com +simplenote.com +simperium.com +intensedebate.com +happy.tools +gravatar.com diff --git a/src/automattic/WILDCARD.txt b/src/automattic/WILDCARD.txt new file mode 100644 index 0000000..27d322a --- /dev/null +++ b/src/automattic/WILDCARD.txt @@ -0,0 +1,4 @@ +http://*.tumblr.com +http://*.srvcs.tumblr.com +*.tumblr.com +*.srvcs.tumblr.com diff --git a/src/automattic/note.txt b/src/automattic/note.txt new file mode 100644 index 0000000..9b127dd --- /dev/null +++ b/src/automattic/note.txt @@ -0,0 +1 @@ +111 https://hackerone.com/automattic Automattic automattic diff --git a/src/auvik/URL.txt b/src/auvik/URL.txt new file mode 100644 index 0000000..1229031 --- /dev/null +++ b/src/auvik/URL.txt @@ -0,0 +1,4 @@ +*.auvik.com +www.saaslio.com +app.saaslio.com +demo.saaslio.com diff --git a/src/auvik/WILDCARD.txt b/src/auvik/WILDCARD.txt new file mode 100644 index 0000000..3ed3511 --- /dev/null +++ b/src/auvik/WILDCARD.txt @@ -0,0 +1,2 @@ +http://*.auvik.com +*.auvik.com diff --git a/src/auvik/note.txt b/src/auvik/note.txt new file mode 100644 index 0000000..f28299c --- /dev/null +++ b/src/auvik/note.txt @@ -0,0 +1 @@ +54808 https://hackerone.com/auvik Auvik auvik diff --git a/src/av/CIDR.txt b/src/av/CIDR.txt new file mode 100644 index 0000000..cc4ba9c --- /dev/null +++ b/src/av/CIDR.txt @@ -0,0 +1 @@ +195.19.210.0/24 diff --git a/src/av/URL.txt b/src/av/URL.txt new file mode 100644 index 0000000..8457949 --- /dev/null +++ b/src/av/URL.txt @@ -0,0 +1,3 @@ +*.av.ru +*.azbukavkusa.ru +jobazbuka.ru diff --git a/src/av/WILDCARD.txt b/src/av/WILDCARD.txt new file mode 100644 index 0000000..334154e --- /dev/null +++ b/src/av/WILDCARD.txt @@ -0,0 +1,4 @@ +http://*.av.ru +http://*.azbukavkusa.ru +*.av.ru +*.azbukavkusa.ru diff --git a/src/av/note.txt b/src/av/note.txt new file mode 100644 index 0000000..b8e2bcd --- /dev/null +++ b/src/av/note.txt @@ -0,0 +1 @@ +48395 https://hackerone.com/av Azbuka Vkusa av diff --git a/src/avalara/URL.txt b/src/avalara/URL.txt new file mode 100644 index 0000000..ca6d656 --- /dev/null +++ b/src/avalara/URL.txt @@ -0,0 +1,12 @@ +*.avalara.com +*.avalara.net +*.avalara.io +*.papercrane.io +*.inposia.com +*.netleglobal.com +*.crowdreason.com +*.track1099.com +*.3ce.com +*.davosalestax.com +*.ttrus.com +*.impendulo.com diff --git a/src/avalara/WILDCARD.txt b/src/avalara/WILDCARD.txt new file mode 100644 index 0000000..bd07b15 --- /dev/null +++ b/src/avalara/WILDCARD.txt @@ -0,0 +1,25 @@ +http://*.avalara.com +http://*.avalara.net +http://*.avalara.io +http://*.papercrane.io +http://*.inposia.com +http://*.netleglobal.com +http://*.crowdreason.com +http://*.track1099.com +http://*.3ce.com +http://*.davosalestax.com +http://*.ttrus.com +http://*.impendulo.com +*.avalara.com +*.avalara.net +*.avalara.io +*.papercrane.io +*.inposia.com +*.netleglobal.com +*.crowdreason.com +*.track1099.com +*.3ce.com +*.davosalestax.com +*.ttrus.com +*.impendulo.com +*.certexpress.com diff --git a/src/avalara/note.txt b/src/avalara/note.txt new file mode 100644 index 0000000..a2963a2 --- /dev/null +++ b/src/avalara/note.txt @@ -0,0 +1 @@ +57405 https://hackerone.com/avalara Avalara avalara diff --git a/src/aven_response/URL.txt b/src/aven_response/URL.txt new file mode 100644 index 0000000..ab95070 --- /dev/null +++ b/src/aven_response/URL.txt @@ -0,0 +1,3 @@ +aven.com +my.aven.com +notary.aven.com diff --git a/src/aven_response/WILDCARD.txt b/src/aven_response/WILDCARD.txt new file mode 100644 index 0000000..374be08 --- /dev/null +++ b/src/aven_response/WILDCARD.txt @@ -0,0 +1 @@ +*.aven.com diff --git a/src/aven_response/note.txt b/src/aven_response/note.txt new file mode 100644 index 0000000..c80e580 --- /dev/null +++ b/src/aven_response/note.txt @@ -0,0 +1 @@ +69749 https://hackerone.com/aven_response Aven (Response) aven_response diff --git a/src/badoo/note.txt b/src/badoo/note.txt new file mode 100644 index 0000000..38a71dd --- /dev/null +++ b/src/badoo/note.txt @@ -0,0 +1 @@ +1926 https://hackerone.com/badoo Badoo badoo diff --git a/src/baidu/URL.txt b/src/baidu/URL.txt new file mode 100644 index 0000000..877f79b --- /dev/null +++ b/src/baidu/URL.txt @@ -0,0 +1,12 @@ +simeji.me +facemojikeyboard.com +mediago.io +popin.cc +dubox.com +creativeappnow.com +simejiglobal.com +baidu.jp +smj.io +terabox.com +http://qa.gbu-alert.com/ +api.facemojikeyboard.com diff --git a/src/baidu/note.txt b/src/baidu/note.txt new file mode 100644 index 0000000..ef8d535 --- /dev/null +++ b/src/baidu/note.txt @@ -0,0 +1 @@ +65386 https://hackerone.com/baidu Baidu baidu diff --git a/src/banco_bmg/APPLE_STORE_APP_ID.txt b/src/banco_bmg/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..964dbb3 --- /dev/null +++ b/src/banco_bmg/APPLE_STORE_APP_ID.txt @@ -0,0 +1,11 @@ +https://apps.apple.com/br/app/bmg-empresas/id1502415444 +https://apps.apple.com/br/app/bmg-token/id1259944970 +https://apps.apple.com/br/app/cart%C3%A3o-le-biscuit/id1611065956 +https://apps.apple.com/br/app/cart%C3%A3o-novo-mundo/id1575971612 +https://apps.apple.com/br/app/conta-digital-bmg-empr%C3%A9stimos/id1396096726 +https://apps.apple.com/br/app/conta-digital-corinthians-bmg/id1450986344 +https://apps.apple.com/br/app/conta-digital-galo-bmg/id1458354196 +https://apps.apple.com/br/app/conta-digital-vasco-bmg/id1459647814 +https://apps.apple.com/br/app/conta-digital-voz%C3%A3o-bmg/id1580606314 +https://apps.apple.com/br/app/sou-parceiro-bmg/id1483246549 +https://apps.apple.com/br/developer/banco-bmg/id1259944969?see-all=i-phone-apps diff --git a/src/banco_bmg/GOOGLE_PLAY_APP_ID.txt b/src/banco_bmg/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..9ba6c3a --- /dev/null +++ b/src/banco_bmg/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1,12 @@ +https://play.google.com/store/apps/details?id=br.com.bancobmg.alemhorizonte +https://play.google.com/store/apps/details?id=br.com.bancobmg.bancodigital +https://play.google.com/store/apps/details?id=br.com.bancobmg.bancodigital.atletico +https://play.google.com/store/apps/details?id=br.com.bancobmg.bancodigital.corban +https://play.google.com/store/apps/details?id=br.com.bancobmg.bancodigital.corinthians +https://play.google.com/store/apps/details?id=br.com.bancobmg.bancodigital.lebiscuit +https://play.google.com/store/apps/details?id=br.com.bancobmg.bancodigital.novomundo +https://play.google.com/store/apps/details?id=br.com.bancobmg.bancodigital.vasco +https://play.google.com/store/apps/details?id=br.com.bancobmg.bancodigital.vozao +https://play.google.com/store/apps/details?id=br.com.bancobmg.meubmgpj +https://play.google.com/store/apps/details?id=br.com.bmg.token +https://play.google.com/store/apps/developer?id=BMG+Banco+Digital diff --git a/src/banco_bmg/WILDCARD.txt b/src/banco_bmg/WILDCARD.txt new file mode 100644 index 0000000..603753e --- /dev/null +++ b/src/banco_bmg/WILDCARD.txt @@ -0,0 +1,3 @@ +*.bancobmg.com.br +*.bmgconsig.com.br +*.help.com.br diff --git a/src/banco_bmg/note.txt b/src/banco_bmg/note.txt new file mode 100644 index 0000000..28b3840 --- /dev/null +++ b/src/banco_bmg/note.txt @@ -0,0 +1 @@ +74937 https://hackerone.com/banco_bmg Banco BMG VDP banco_bmg diff --git a/src/basecamp/APPLE_STORE_APP_ID.txt b/src/basecamp/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..99bbbf1 --- /dev/null +++ b/src/basecamp/APPLE_STORE_APP_ID.txt @@ -0,0 +1,2 @@ +com.basecamp.bc3-ios +com.hey.app.ios diff --git a/src/basecamp/DOWNLOADABLE_EXECUTABLES.txt b/src/basecamp/DOWNLOADABLE_EXECUTABLES.txt new file mode 100644 index 0000000..9db3b24 --- /dev/null +++ b/src/basecamp/DOWNLOADABLE_EXECUTABLES.txt @@ -0,0 +1,4 @@ +basecamp3.exe +Basecamp.app +HEY.app +hey-mail diff --git a/src/basecamp/GOOGLE_PLAY_APP_ID.txt b/src/basecamp/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..cc554f1 --- /dev/null +++ b/src/basecamp/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1,2 @@ +com.basecamp.bc3 +com.basecamp.hey diff --git a/src/basecamp/SOURCE_CODE.txt b/src/basecamp/SOURCE_CODE.txt new file mode 100644 index 0000000..a428d1d --- /dev/null +++ b/src/basecamp/SOURCE_CODE.txt @@ -0,0 +1 @@ +ONCE: Campfire diff --git a/src/basecamp/URL.txt b/src/basecamp/URL.txt new file mode 100644 index 0000000..b03e7f9 --- /dev/null +++ b/src/basecamp/URL.txt @@ -0,0 +1,4 @@ +3.basecamp.com +launchpad.37signals.com +*.hey.com +world.hey.com diff --git a/src/basecamp/WILDCARD.txt b/src/basecamp/WILDCARD.txt new file mode 100644 index 0000000..7a751f8 --- /dev/null +++ b/src/basecamp/WILDCARD.txt @@ -0,0 +1,2 @@ +http://*.hey.com +*.hey.com diff --git a/src/basecamp/WINDOWS_APP_STORE_APP_ID.txt b/src/basecamp/WINDOWS_APP_STORE_APP_ID.txt new file mode 100644 index 0000000..70c396e --- /dev/null +++ b/src/basecamp/WINDOWS_APP_STORE_APP_ID.txt @@ -0,0 +1 @@ +HEY.exe diff --git a/src/basecamp/note.txt b/src/basecamp/note.txt new file mode 100644 index 0000000..78b3578 --- /dev/null +++ b/src/basecamp/note.txt @@ -0,0 +1 @@ +67 https://hackerone.com/basecamp Basecamp basecamp diff --git a/src/beiersdorf/note.txt b/src/beiersdorf/note.txt new file mode 100644 index 0000000..802df54 --- /dev/null +++ b/src/beiersdorf/note.txt @@ -0,0 +1 @@ +52544 https://hackerone.com/beiersdorf Beiersdorf beiersdorf diff --git a/src/bigmonocle/note.txt b/src/bigmonocle/note.txt new file mode 100644 index 0000000..b866e0a --- /dev/null +++ b/src/bigmonocle/note.txt @@ -0,0 +1 @@ +221 https://hackerone.com/bigmonocle Big Monocle bigmonocle diff --git a/src/bime/note.txt b/src/bime/note.txt new file mode 100644 index 0000000..49e0727 --- /dev/null +++ b/src/bime/note.txt @@ -0,0 +1 @@ +7068 https://hackerone.com/bime Bime bime diff --git a/src/binary/OTHER_APK.txt b/src/binary/OTHER_APK.txt new file mode 100644 index 0000000..5e18ef1 --- /dev/null +++ b/src/binary/OTHER_APK.txt @@ -0,0 +1 @@ +com.binary.ticktrade diff --git a/src/binary/SOURCE_CODE.txt b/src/binary/SOURCE_CODE.txt new file mode 100644 index 0000000..0124e48 --- /dev/null +++ b/src/binary/SOURCE_CODE.txt @@ -0,0 +1 @@ +github.com/binary-com diff --git a/src/binary/URL.txt b/src/binary/URL.txt new file mode 100644 index 0000000..957061b --- /dev/null +++ b/src/binary/URL.txt @@ -0,0 +1,14 @@ +cashier.binary.com +crypto-cashier.binary.com +secure-dfadmin.binary.com +*.binaryws.com +*.deriv.com +app.deriv.com +smarttrader.deriv.com +cashier.deriv.com +*.deriv.cloud +webtrader.binary.com +binary.bot +tradingview.binary.com +charts.binary.com +*.binary.com diff --git a/src/binary/WILDCARD.txt b/src/binary/WILDCARD.txt new file mode 100644 index 0000000..37724cf --- /dev/null +++ b/src/binary/WILDCARD.txt @@ -0,0 +1,8 @@ +http://*.binaryws.com +http://*.deriv.com +http://*.deriv.cloud +http://*.binary.com +*.binaryws.com +*.deriv.com +*.deriv.cloud +*.binary.com diff --git a/src/binary/note.txt b/src/binary/note.txt new file mode 100644 index 0000000..e4ab24d --- /dev/null +++ b/src/binary/note.txt @@ -0,0 +1,2 @@ +2706 https://hackerone.com/binary Binary.com binary +2706 https://hackerone.com/binary Deriv.com binary diff --git a/src/bitaccess/URL.txt b/src/bitaccess/URL.txt new file mode 100644 index 0000000..b0cab6f --- /dev/null +++ b/src/bitaccess/URL.txt @@ -0,0 +1 @@ +bitaccess.com diff --git a/src/bitaccess/note.txt b/src/bitaccess/note.txt new file mode 100644 index 0000000..68951db --- /dev/null +++ b/src/bitaccess/note.txt @@ -0,0 +1 @@ +8619 https://hackerone.com/bitaccess bitaccess bitaccess diff --git a/src/bitmex/APPLE_STORE_APP_ID.txt b/src/bitmex/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..45fd827 --- /dev/null +++ b/src/bitmex/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +1589023233 diff --git a/src/bitmex/GOOGLE_PLAY_APP_ID.txt b/src/bitmex/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..21f7fb3 --- /dev/null +++ b/src/bitmex/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.bitmex.app.android diff --git a/src/bitmex/OTHER.txt b/src/bitmex/OTHER.txt new file mode 100644 index 0000000..753be38 --- /dev/null +++ b/src/bitmex/OTHER.txt @@ -0,0 +1,3 @@ +All Other BitMEX Assets +https://play.google.com/store/apps/details?id=com.bitmex.app.android.testnet +https://testflight.apple.com/join/533gFghn diff --git a/src/bitmex/URL.txt b/src/bitmex/URL.txt new file mode 100644 index 0000000..d604b3e --- /dev/null +++ b/src/bitmex/URL.txt @@ -0,0 +1,2 @@ +testnet.bitmex.com +*.bitmex.com diff --git a/src/bitmex/WILDCARD.txt b/src/bitmex/WILDCARD.txt new file mode 100644 index 0000000..0cf5189 --- /dev/null +++ b/src/bitmex/WILDCARD.txt @@ -0,0 +1,2 @@ +http://*.bitmex.com +*.bitmex.com diff --git a/src/bitmex/note.txt b/src/bitmex/note.txt new file mode 100644 index 0000000..3589746 --- /dev/null +++ b/src/bitmex/note.txt @@ -0,0 +1 @@ +24323 https://hackerone.com/bitmex BitMEX bitmex diff --git a/src/bitso/APPLE_STORE_APP_ID.txt b/src/bitso/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..d408323 --- /dev/null +++ b/src/bitso/APPLE_STORE_APP_ID.txt @@ -0,0 +1,2 @@ +1292836438 +1539469172 diff --git a/src/bitso/GOOGLE_PLAY_APP_ID.txt b/src/bitso/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..13c4e9b --- /dev/null +++ b/src/bitso/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1,2 @@ +com.bitso.wallet +com.bitso.alpha diff --git a/src/bitso/URL.txt b/src/bitso/URL.txt new file mode 100644 index 0000000..0abeb67 --- /dev/null +++ b/src/bitso/URL.txt @@ -0,0 +1,6 @@ +bitso.com +api.bitso.com +bitso.com/alpha +nvio.mx +nvio.ar +http://bitso.com/alpha diff --git a/src/bitso/note.txt b/src/bitso/note.txt new file mode 100644 index 0000000..1f89871 --- /dev/null +++ b/src/bitso/note.txt @@ -0,0 +1 @@ +193 https://hackerone.com/bitso Bitso bitso diff --git a/src/bitwarden/APPLE_STORE_APP_ID.txt b/src/bitwarden/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..823b9bd --- /dev/null +++ b/src/bitwarden/APPLE_STORE_APP_ID.txt @@ -0,0 +1,2 @@ +com.8bit.bitwarden +com.bitwarden.authenticator diff --git a/src/bitwarden/DOWNLOADABLE_EXECUTABLES.txt b/src/bitwarden/DOWNLOADABLE_EXECUTABLES.txt new file mode 100644 index 0000000..ab5d1ba --- /dev/null +++ b/src/bitwarden/DOWNLOADABLE_EXECUTABLES.txt @@ -0,0 +1,2 @@ +https://github.com/bitwarden/desktop/releases/latest +https://github.com/bitwarden/cli/releases/latest diff --git a/src/bitwarden/GOOGLE_PLAY_APP_ID.txt b/src/bitwarden/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..301d859 --- /dev/null +++ b/src/bitwarden/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1,2 @@ +com.x8bit.bitwarden +com.bitwarden.authenticator diff --git a/src/bitwarden/OTHER.txt b/src/bitwarden/OTHER.txt new file mode 100644 index 0000000..ea7ebe8 --- /dev/null +++ b/src/bitwarden/OTHER.txt @@ -0,0 +1,5 @@ +https://chrome.google.com/webstore/detail/bitwarden-free-password-m/nngceckbapebfimnlniiiahkandclblb?hl=en +https://addons.mozilla.org/en-US/firefox/addon/bitwarden-password-manager/ +https://www.microsoft.com/store/p/bitwarden-free-password-manager/9p6kxl0svnnl +https://addons.opera.com/extensions/details/bitwarden-free-password-manager/ +https://safari-extensions.apple.com/details/?id=com.bitwarden.safari-LTZ2PFU5D6 diff --git a/src/bitwarden/SOURCE_CODE.txt b/src/bitwarden/SOURCE_CODE.txt new file mode 100644 index 0000000..2be4549 --- /dev/null +++ b/src/bitwarden/SOURCE_CODE.txt @@ -0,0 +1,2 @@ +https://github.com/bitwarden +https://github.com/passwordless diff --git a/src/bitwarden/URL.txt b/src/bitwarden/URL.txt new file mode 100644 index 0000000..0768eba --- /dev/null +++ b/src/bitwarden/URL.txt @@ -0,0 +1,6 @@ +bitwarden.com +api.bitwarden.com +identity.bitwarden.com +vault.bitwarden.com +help.bitwarden.com +v4.passwordless.dev diff --git a/src/bitwarden/note.txt b/src/bitwarden/note.txt new file mode 100644 index 0000000..af944ed --- /dev/null +++ b/src/bitwarden/note.txt @@ -0,0 +1 @@ +21024 https://hackerone.com/bitwarden Bitwarden bitwarden diff --git a/src/blackrock/CIDR.txt b/src/blackrock/CIDR.txt new file mode 100644 index 0000000..14a07d4 --- /dev/null +++ b/src/blackrock/CIDR.txt @@ -0,0 +1 @@ +69.52.0.0/16 diff --git a/src/blackrock/OTHER.txt b/src/blackrock/OTHER.txt new file mode 100644 index 0000000..0d40e92 --- /dev/null +++ b/src/blackrock/OTHER.txt @@ -0,0 +1 @@ +*.isharesonline.com diff --git a/src/blackrock/URL.txt b/src/blackrock/URL.txt new file mode 100644 index 0000000..bdf262f --- /dev/null +++ b/src/blackrock/URL.txt @@ -0,0 +1,2 @@ +*.blackrock.com +*.ishares.com diff --git a/src/blackrock/note.txt b/src/blackrock/note.txt new file mode 100644 index 0000000..1ced789 --- /dev/null +++ b/src/blackrock/note.txt @@ -0,0 +1 @@ +48976 https://hackerone.com/blackrock BlackRock blackrock diff --git a/src/blend-labs/URL.txt b/src/blend-labs/URL.txt new file mode 100644 index 0000000..ed55171 --- /dev/null +++ b/src/blend-labs/URL.txt @@ -0,0 +1,2 @@ +https://knox.beta.blendlabs.com/ +knox.beta.blendlabs.com diff --git a/src/blend-labs/note.txt b/src/blend-labs/note.txt new file mode 100644 index 0000000..93d246d --- /dev/null +++ b/src/blend-labs/note.txt @@ -0,0 +1 @@ +54544 https://hackerone.com/blend-labs Blend Labs blend-labs diff --git a/src/blockchain/APPLE_STORE_APP_ID.txt b/src/blockchain/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..3d1aecf --- /dev/null +++ b/src/blockchain/APPLE_STORE_APP_ID.txt @@ -0,0 +1,2 @@ +493253309 +1557515848 diff --git a/src/blockchain/GOOGLE_PLAY_APP_ID.txt b/src/blockchain/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..af2ce4e --- /dev/null +++ b/src/blockchain/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1,2 @@ +piuk.blockchain.android +com.blockchain.exchange diff --git a/src/blockchain/URL.txt b/src/blockchain/URL.txt new file mode 100644 index 0000000..c251f6a --- /dev/null +++ b/src/blockchain/URL.txt @@ -0,0 +1,4 @@ +*.blockchain.com +www.blockchain.info +api.blockchain.info +ws.blockchain.info diff --git a/src/blockchain/WILDCARD.txt b/src/blockchain/WILDCARD.txt new file mode 100644 index 0000000..0e3e822 --- /dev/null +++ b/src/blockchain/WILDCARD.txt @@ -0,0 +1,2 @@ +http://*.blockchain.com +*.blockchain.com diff --git a/src/blockchain/note.txt b/src/blockchain/note.txt new file mode 100644 index 0000000..1fd3858 --- /dev/null +++ b/src/blockchain/note.txt @@ -0,0 +1 @@ +424 https://hackerone.com/blockchain Blockchain blockchain diff --git a/src/blockfi/APPLE_STORE_APP_ID.txt b/src/blockfi/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..fbf50fe --- /dev/null +++ b/src/blockfi/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +1506274532 diff --git a/src/blockfi/GOOGLE_PLAY_APP_ID.txt b/src/blockfi/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..85f1148 --- /dev/null +++ b/src/blockfi/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.blockfi.mobile diff --git a/src/blockfi/URL.txt b/src/blockfi/URL.txt new file mode 100644 index 0000000..a931159 --- /dev/null +++ b/src/blockfi/URL.txt @@ -0,0 +1 @@ +*.blockfi.com diff --git a/src/blockfi/note.txt b/src/blockfi/note.txt new file mode 100644 index 0000000..9aba237 --- /dev/null +++ b/src/blockfi/note.txt @@ -0,0 +1 @@ +49756 https://hackerone.com/blockfi BlockFi blockfi diff --git a/src/blockio/note.txt b/src/blockio/note.txt new file mode 100644 index 0000000..d9b9634 --- /dev/null +++ b/src/blockio/note.txt @@ -0,0 +1 @@ +504 https://hackerone.com/blockio Block.io blockio diff --git a/src/blueapron/URL.txt b/src/blueapron/URL.txt new file mode 100644 index 0000000..816ed93 --- /dev/null +++ b/src/blueapron/URL.txt @@ -0,0 +1,3 @@ +https://blog.blueapron.com/ +www.blueapron.com +http://www.blueapron.com/graphql diff --git a/src/blueapron/note.txt b/src/blueapron/note.txt new file mode 100644 index 0000000..0829406 --- /dev/null +++ b/src/blueapron/note.txt @@ -0,0 +1 @@ +50163 https://hackerone.com/blueapron Blue Apron, LLC VDP blueapron diff --git a/src/bmwgroup/OTHER.txt b/src/bmwgroup/OTHER.txt new file mode 100644 index 0000000..5fec497 --- /dev/null +++ b/src/bmwgroup/OTHER.txt @@ -0,0 +1,2 @@ +Automotive Security +Other Vulnerabilities diff --git a/src/bmwgroup/URL.txt b/src/bmwgroup/URL.txt new file mode 100644 index 0000000..5029b2f --- /dev/null +++ b/src/bmwgroup/URL.txt @@ -0,0 +1,6 @@ +www.bmw.de +www.mini.de +www.bmw-motorrad.de +configure.bmw.de +configure.mini.de +konfigurator.bmw-motorrad.de diff --git a/src/bmwgroup/note.txt b/src/bmwgroup/note.txt new file mode 100644 index 0000000..75bdaf2 --- /dev/null +++ b/src/bmwgroup/note.txt @@ -0,0 +1 @@ +39833 https://hackerone.com/bmwgroup BMW Group bmwgroup diff --git a/src/bookingcom/URL.txt b/src/bookingcom/URL.txt new file mode 100644 index 0000000..2ad9e88 --- /dev/null +++ b/src/bookingcom/URL.txt @@ -0,0 +1,41 @@ +booking.com +secure.booking.com +careers.booking.com +account.booking.com +taxi.booking.com +widget.rentalcars.com +cars.booking.com +supplier.auth.toag.booking.com +metasearch-api.booking.com +experiences.booking.com +flights.booking.com +https://iphone-xml.booking.com/json/ +webhooks.booking.com +admin.booking.com +chat.booking.com +autocomplete.booking.com +distribution-xml.booking.com +accommodations.booking.com +portal.taxi.booking.com +secure-supply-xml.booking.com +https://secure-iphone-xml.booking.com/json/ +kyc-onboarding.booking.com +paymentcomponent.booking.com +taxis.booking.com +paybridge.booking.com +phone-validation.taxi.booking.com +indicative-pricing.taxi.booking.com +paynotifications.booking.com +supply-xml.booking.com +http://secure-iphone-xml.booking.com/json/ +spark.fareharbor.com +www.fareharbor.com +teleport.fareharbor.engineering +demo.fareharbor.com +readonly.fareharbor.com +marketing.fareharbor.com +sites.fareharbor.com +compass.fareharbor.com +fhdn.fareharbor.com +tableau.fareharbor.engineering +fareharborsites.com diff --git a/src/bookingcom/WILDCARD.txt b/src/bookingcom/WILDCARD.txt new file mode 100644 index 0000000..2ba5f8d --- /dev/null +++ b/src/bookingcom/WILDCARD.txt @@ -0,0 +1,3 @@ +*.booking.com +*.rentalcars.com +*.fareharbor.engineering diff --git a/src/bookingcom/note.txt b/src/bookingcom/note.txt new file mode 100644 index 0000000..b721c2c --- /dev/null +++ b/src/bookingcom/note.txt @@ -0,0 +1 @@ +1078 https://hackerone.com/bookingcom Booking.com bookingcom diff --git a/src/boozt/APPLE_STORE_APP_ID.txt b/src/boozt/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..bed6214 --- /dev/null +++ b/src/boozt/APPLE_STORE_APP_ID.txt @@ -0,0 +1,2 @@ +com.boozt.app +com.boozt.booztlet diff --git a/src/boozt/GOOGLE_PLAY_APP_ID.txt b/src/boozt/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..09b4462 --- /dev/null +++ b/src/boozt/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1,2 @@ +com.boozt +com.booztlet diff --git a/src/boozt/WILDCARD.txt b/src/boozt/WILDCARD.txt new file mode 100644 index 0000000..82e1796 --- /dev/null +++ b/src/boozt/WILDCARD.txt @@ -0,0 +1,2 @@ +*.boozt.com +*.booztlet.com diff --git a/src/boozt/note.txt b/src/boozt/note.txt new file mode 100644 index 0000000..b097648 --- /dev/null +++ b/src/boozt/note.txt @@ -0,0 +1,2 @@ +1453 https://hackerone.com/boozt Boozt Fashion AB boozt +59152 https://hackerone.com/boozt Boozt Fashion AB boozt diff --git a/src/brave/APPLE_STORE_APP_ID.txt b/src/brave/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..27086b0 --- /dev/null +++ b/src/brave/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +com.brave.ios.browser diff --git a/src/brave/DOWNLOADABLE_EXECUTABLES.txt b/src/brave/DOWNLOADABLE_EXECUTABLES.txt new file mode 100644 index 0000000..3f84b95 --- /dev/null +++ b/src/brave/DOWNLOADABLE_EXECUTABLES.txt @@ -0,0 +1,9 @@ +https://laptop-updates.brave.com/latest/osx +https://laptop-updates.brave.com/latest/winx64 +https://laptop-updates.brave.com/latest/winia32 +https://laptop-updates.brave.com/latest/dev/debian64 +https://laptop-updates.brave.com/latest/dev/ubuntu64 +https://laptop-updates.brave.com/latest/mint64 +https://laptop-updates.brave.com/latest/fedora64 +https://laptop-updates.brave.com/latest/openSUSE64 +https://laptop-updates.brave.com/latest/linux64 diff --git a/src/brave/GOOGLE_PLAY_APP_ID.txt b/src/brave/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..a97e01e --- /dev/null +++ b/src/brave/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1,2 @@ +com.brave.browser +com.brave.browser_beta diff --git a/src/brave/OTHER.txt b/src/brave/OTHER.txt new file mode 100644 index 0000000..a26dcfe --- /dev/null +++ b/src/brave/OTHER.txt @@ -0,0 +1,5 @@ +0x0d8775f648430679a709e98d2b0cb6250d2887ef +0x44fcfabfbe32024a01b778c025d70498382cced0 +0x7c31560552170ce96c4a7b018e93cddc19dc61b6 +0xfbfa258b9028c7d4fc52ce28031469214d10daeb +0x67fa2c06c9c6d4332f330e14a66bdf1873ef3d2b diff --git a/src/brave/SOURCE_CODE.txt b/src/brave/SOURCE_CODE.txt new file mode 100644 index 0000000..5ad77da --- /dev/null +++ b/src/brave/SOURCE_CODE.txt @@ -0,0 +1,9 @@ +https://github.com/brave/brave-core +https://github.com/brave-intl/bat-ledger +https://github.com/brave-intl/bat-client +https://github.com/brave-intl/bat-balance +https://github.com/brave-intl/bat-publisher +https://github.com/brave-intl/publishers +https://github.com/brave/vault-updater +https://github.com/brave-intl/bat-go +https://github.com/brave/brave-ios diff --git a/src/brave/URL.txt b/src/brave/URL.txt new file mode 100644 index 0000000..78763a1 --- /dev/null +++ b/src/brave/URL.txt @@ -0,0 +1,6 @@ +brave.com +basicattentiontoken.org +creators.basicattentiontoken.org +search.brave.com +talk.brave.com +account.brave.com diff --git a/src/brave/note.txt b/src/brave/note.txt new file mode 100644 index 0000000..be8f469 --- /dev/null +++ b/src/brave/note.txt @@ -0,0 +1 @@ +15688 https://hackerone.com/brave Brave Software brave diff --git a/src/brightspeed/URL.txt b/src/brightspeed/URL.txt new file mode 100644 index 0000000..bd6619e --- /dev/null +++ b/src/brightspeed/URL.txt @@ -0,0 +1,4 @@ +brightspeed.com +brightspeed.service-now.com +brightspeedtsm.service-now.com +gobrightspeed.net diff --git a/src/brightspeed/WILDCARD.txt b/src/brightspeed/WILDCARD.txt new file mode 100644 index 0000000..6ae7115 --- /dev/null +++ b/src/brightspeed/WILDCARD.txt @@ -0,0 +1 @@ +*.brightspeed.com diff --git a/src/brightspeed/note.txt b/src/brightspeed/note.txt new file mode 100644 index 0000000..604f3ca --- /dev/null +++ b/src/brightspeed/note.txt @@ -0,0 +1 @@ +62920 https://hackerone.com/brightspeed Brightspeed brightspeed diff --git a/src/btfs/note.txt b/src/btfs/note.txt new file mode 100644 index 0000000..cc3e3e4 --- /dev/null +++ b/src/btfs/note.txt @@ -0,0 +1 @@ +45735 https://hackerone.com/btfs BTFS btfs diff --git a/src/bumble/APPLE_STORE_APP_ID.txt b/src/bumble/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..cf0f632 --- /dev/null +++ b/src/bumble/APPLE_STORE_APP_ID.txt @@ -0,0 +1,10 @@ +930441707 +351331194 +403684733 +com.flashgap.fruits +com.badoo.hotornot +com.blendr.Blendriphone +com.sgiggle.Mango +6444040977 +1660741163 +1604650263 diff --git a/src/bumble/GOOGLE_PLAY_APP_ID.txt b/src/bumble/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..ac67cb3 --- /dev/null +++ b/src/bumble/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1,10 @@ +com.bumble.app +com.badoo.mobile +com.badoo.twa +com.flashgap.fruitz +com.hotornot.app +com.sgiggle.mango +com.bumblebff.app +com.studio.projects.zodia +com.sgiggle.Mango +com.official.rnapp diff --git a/src/bumble/URL.txt b/src/bumble/URL.txt new file mode 100644 index 0000000..2f45226 --- /dev/null +++ b/src/bumble/URL.txt @@ -0,0 +1,21 @@ +www.bumble.com +bma.bumble.com +badoo.com +eu1.badoo.com +us1.badoo.com +corp.badoo.com +m.badoo.com +meu1.badoo.com +mus1.badoo.com +hotornot.com +bma.badoo.com +badoocdn.com +translate.badoo.com +ccardseu1.badoo.com +ccardsus1.badoo.com +chatdate.app +heyfiesta.com +blendr.com +com.blendr.mobile +zodia.studio +getofficial.co diff --git a/src/bumble/note.txt b/src/bumble/note.txt new file mode 100644 index 0000000..76d3862 --- /dev/null +++ b/src/bumble/note.txt @@ -0,0 +1 @@ +21554 https://hackerone.com/bumble Bumble bumble diff --git a/src/bybit_fintech/APPLE_STORE_APP_ID.txt b/src/bybit_fintech/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..1d8d47f --- /dev/null +++ b/src/bybit_fintech/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +https://apps.apple.com/us/app/bybit-app/id1488296980 diff --git a/src/bybit_fintech/GOOGLE_PLAY_APP_ID.txt b/src/bybit_fintech/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..c73edf2 --- /dev/null +++ b/src/bybit_fintech/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +https://play.google.com/store/apps/details?id=com.bybit.app&hl=en diff --git a/src/bybit_fintech/OTHER.txt b/src/bybit_fintech/OTHER.txt new file mode 100644 index 0000000..469ae7a --- /dev/null +++ b/src/bybit_fintech/OTHER.txt @@ -0,0 +1 @@ +Web3 Smart Contract diff --git a/src/bybit_fintech/WILDCARD.txt b/src/bybit_fintech/WILDCARD.txt new file mode 100644 index 0000000..730cedb --- /dev/null +++ b/src/bybit_fintech/WILDCARD.txt @@ -0,0 +1 @@ +*.bybit.com diff --git a/src/bybit_fintech/note.txt b/src/bybit_fintech/note.txt new file mode 100644 index 0000000..feeb83b --- /dev/null +++ b/src/bybit_fintech/note.txt @@ -0,0 +1 @@ +71387 https://hackerone.com/bybit_fintech Bybit Fintech Ltd bybit_fintech diff --git a/src/c2fo/note.txt b/src/c2fo/note.txt new file mode 100644 index 0000000..dada327 --- /dev/null +++ b/src/c2fo/note.txt @@ -0,0 +1 @@ +75 https://hackerone.com/c2fo C2FO c2fo diff --git a/src/caesars-digital/APPLE_STORE_APP_ID.txt b/src/caesars-digital/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..087f3ef --- /dev/null +++ b/src/caesars-digital/APPLE_STORE_APP_ID.txt @@ -0,0 +1,5 @@ +1526689858 +1413099571 +1505343389 +6446176419 +1615039001 diff --git a/src/caesars-digital/GOOGLE_PLAY_APP_ID.txt b/src/caesars-digital/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..49bbb22 --- /dev/null +++ b/src/caesars-digital/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1,4 @@ +com.awi.cz.whrp +com.awi.whrp +com.williamhill.us.nj.sports +com.caesarsdigital.igaming.caesarspalaceonline diff --git a/src/caesars-digital/OTHER.txt b/src/caesars-digital/OTHER.txt new file mode 100644 index 0000000..20bb3ce --- /dev/null +++ b/src/caesars-digital/OTHER.txt @@ -0,0 +1,4 @@ +wss://api.americanwagering.com/* +wss://diffusion-*.us.williamhill.com +Tier 1: +Tier 2: diff --git a/src/caesars-digital/URL.txt b/src/caesars-digital/URL.txt new file mode 100644 index 0000000..00cc7e4 --- /dev/null +++ b/src/caesars-digital/URL.txt @@ -0,0 +1,12 @@ +sportsbook.caesars.com +api.americanwagering.com +caesarspalaceonline.com +https://caesarspalaceonline.com/us/wv/casino +https://caesarspalaceonline.com/mi/wv/casino +https://caesarspalaceonline.com/ca/on/casino +https://caesarspalaceonline.com/us/nj/casino +https://caesarspalaceonline.com/us/pa/casino +williamhill.us +wsop.com +www.wsop.com +cms.wsop.com diff --git a/src/caesars-digital/WILDCARD.txt b/src/caesars-digital/WILDCARD.txt new file mode 100644 index 0000000..fac6a44 --- /dev/null +++ b/src/caesars-digital/WILDCARD.txt @@ -0,0 +1,7 @@ +https://scoreboardslauncher.williamhill.com/* +https://gamesrv1.*.czr.neo.americanwagering.com/ +https://caesars.com/sportsbook-and-casino/* +https://gamesrv1.*.us.williamhill.com +*.us.williamhill.com +https://caesarspalaceonline.com/* +*.williamhill.us diff --git a/src/caesars-digital/note.txt b/src/caesars-digital/note.txt new file mode 100644 index 0000000..0eb0fa4 --- /dev/null +++ b/src/caesars-digital/note.txt @@ -0,0 +1 @@ +59658 https://hackerone.com/caesars-digital Caesars Digital caesars-digital diff --git a/src/cakebet/note.txt b/src/cakebet/note.txt new file mode 100644 index 0000000..6e11a9f --- /dev/null +++ b/src/cakebet/note.txt @@ -0,0 +1 @@ +7954 https://hackerone.com/cakebet Cakebet cakebet diff --git a/src/cal_com_inc/URL.txt b/src/cal_com_inc/URL.txt new file mode 100644 index 0000000..7d02858 --- /dev/null +++ b/src/cal_com_inc/URL.txt @@ -0,0 +1 @@ +app.cal.com diff --git a/src/cal_com_inc/note.txt b/src/cal_com_inc/note.txt new file mode 100644 index 0000000..1b68b3e --- /dev/null +++ b/src/cal_com_inc/note.txt @@ -0,0 +1 @@ +69735 https://hackerone.com/cal_com_inc Cal.com, Inc cal_com_inc diff --git a/src/callsign/GOOGLE_PLAY_APP_ID.txt b/src/callsign/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..0b096ca --- /dev/null +++ b/src/callsign/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.callsign.app.android diff --git a/src/callsign/URL.txt b/src/callsign/URL.txt new file mode 100644 index 0000000..e4aa08a --- /dev/null +++ b/src/callsign/URL.txt @@ -0,0 +1,6 @@ +app.s02.callsign.com +*.s02.callsign.com +b2b.s02.callsign.com +https://southfields-v2.s02.t00-csglobal.a2develop.com/ +*.* +southfields-v2.s02.t00-csglobal.a2develop.com diff --git a/src/callsign/WILDCARD.txt b/src/callsign/WILDCARD.txt new file mode 100644 index 0000000..026393a --- /dev/null +++ b/src/callsign/WILDCARD.txt @@ -0,0 +1,4 @@ +http://*.s02.callsign.com +http://*.* +*.s02.callsign.com +*.* diff --git a/src/callsign/note.txt b/src/callsign/note.txt new file mode 100644 index 0000000..7efad83 --- /dev/null +++ b/src/callsign/note.txt @@ -0,0 +1 @@ +49225 https://hackerone.com/callsign Callsign callsign diff --git a/src/canada_goose_inc/URL.txt b/src/canada_goose_inc/URL.txt new file mode 100644 index 0000000..fbb39d5 --- /dev/null +++ b/src/canada_goose_inc/URL.txt @@ -0,0 +1,3 @@ +canadagoose.com +service.canadagoose.com +api.canadagoose.com diff --git a/src/canada_goose_inc/note.txt b/src/canada_goose_inc/note.txt new file mode 100644 index 0000000..8f2cf9f --- /dev/null +++ b/src/canada_goose_inc/note.txt @@ -0,0 +1 @@ +57677 https://hackerone.com/canada_goose_inc Canada Goose Inc. canada_goose_inc diff --git a/src/capital-one/APPLE_STORE_APP_ID.txt b/src/capital-one/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..f5a8e1d --- /dev/null +++ b/src/capital-one/APPLE_STORE_APP_ID.txt @@ -0,0 +1,9 @@ +907613256 +1291519134 +1109537081 +808215470 +1008234539 +407558537 +1450441660 +1380744689 +481679012 diff --git a/src/capital-one/GOOGLE_PLAY_APP_ID.txt b/src/capital-one/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..19dd4f8 --- /dev/null +++ b/src/capital-one/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1,8 @@ +com.capitalone.credittracker +com.capitalone.intellix.mobile.prod +com.konylabs.capitalone +ca.capitalone.enterprisemobilebanking +com.capitalone.atwork +com.capitalone.tz +com.ie.capitalone.uk +com.ukcapitalone.creditWise diff --git a/src/capital-one/OTHER.txt b/src/capital-one/OTHER.txt new file mode 100644 index 0000000..edfab5a --- /dev/null +++ b/src/capital-one/OTHER.txt @@ -0,0 +1 @@ +Eno® Browser Extension diff --git a/src/capital-one/URL.txt b/src/capital-one/URL.txt new file mode 100644 index 0000000..902f2c3 --- /dev/null +++ b/src/capital-one/URL.txt @@ -0,0 +1,16 @@ +*.capitalone.com +*.paribus.co +*.capitalone360.com +*.wikibuy.com +*.capitalone.ca +*.capitalone.co.uk +*.capitalonebank.com +*.bluetarp.com +*.unitedincome.com +*.usejewel.com +*.luma.co.uk +*.capitalonecareers.co.uk +*.capitalonecards.com +*.theunioncard.com +*.teamstercardnow.com +*.capitaloneshopping.com diff --git a/src/capital-one/note.txt b/src/capital-one/note.txt new file mode 100644 index 0000000..38df9fa --- /dev/null +++ b/src/capital-one/note.txt @@ -0,0 +1 @@ +36569 https://hackerone.com/capital-one Capital One capital-one diff --git a/src/cardano-foundation/DOWNLOADABLE_EXECUTABLES.txt b/src/cardano-foundation/DOWNLOADABLE_EXECUTABLES.txt new file mode 100644 index 0000000..30199de --- /dev/null +++ b/src/cardano-foundation/DOWNLOADABLE_EXECUTABLES.txt @@ -0,0 +1,2 @@ +Cardano-Node +Cardano-Wallet diff --git a/src/cardano-foundation/note.txt b/src/cardano-foundation/note.txt new file mode 100644 index 0000000..4f76db3 --- /dev/null +++ b/src/cardano-foundation/note.txt @@ -0,0 +1 @@ +53276 https://hackerone.com/cardano-foundation Cardano Foundation cardano-foundation diff --git a/src/casper/URL.txt b/src/casper/URL.txt new file mode 100644 index 0000000..2920d92 --- /dev/null +++ b/src/casper/URL.txt @@ -0,0 +1,8 @@ +www.casper.com +bedpost.casper.com +operator.casper.tools +casper.com/admin +casper.com +legacy.casper.com/admin +legacy.casper.com +http://legacy.casper.com/admin diff --git a/src/casper/note.txt b/src/casper/note.txt new file mode 100644 index 0000000..48a6c29 --- /dev/null +++ b/src/casper/note.txt @@ -0,0 +1 @@ +15673 https://hackerone.com/casper Casper casper diff --git a/src/caterpillar/note.txt b/src/caterpillar/note.txt new file mode 100644 index 0000000..48ba1fd --- /dev/null +++ b/src/caterpillar/note.txt @@ -0,0 +1 @@ +54523 https://hackerone.com/caterpillar Caterpillar caterpillar diff --git a/src/cbre/URL.txt b/src/cbre/URL.txt new file mode 100644 index 0000000..a8da1a9 --- /dev/null +++ b/src/cbre/URL.txt @@ -0,0 +1,609 @@ +*.cbre.* +*.trammellcrow.com +*.cbre-heery.com +*.cbrebuild.com +*.cbreonline.com.mx +*.cbre-ea.com +*.cbreacquisitionholdings.com +*.cbreapps.com +*.cbrecap.com +*.cbreclarion.com +*.cbreemea.com +*.cbrehotels.com +*.cbrekorea.com +*.cbremega.com +*.cbremelody.com +*.cbreresidential.es +*.cbrevaluation.com.vn +*.centermanagement.ch +*.fameco.com +*.famecoretail.com +*.greensoluce.com +*.hanaworkplaces.com +*.pkfc.com +*.axisvalue.com +mainstreamsasp.com +cbre-ea.com +dev.cbre-ea.com +qc.cbre-ea.com +test.cbre-ea.com +uaganon.cbre-ea.com +www.cbre-ea.com +www.test.cbre-ea.com +apps.facilitysource.com +autodiscover.facilitysource.com +blog.facilitysource.com +exchange.facilitysource.com +facilitysource.com +go.facilitysource.com +jobs.facilitysource.com +learning.facilitysource.com +mail.facilitysource.com +media.facilitysource.com +prtg.facilitysource.com +www.exchange.facilitysource.com +www.facilitysource.com +www.mail.facilitysource.com +www.prtg.facilitysource.com +cbrichardellis.com +cookie.cbrichardellis.com +gkc1.cbrichardellis.com +gkc2.cbrichardellis.com +gkc3.cbrichardellis.com +itrack.cbrichardellis.com +itrackii.cbrichardellis.com +japandesk.cbrichardellis.com +library.cbrichardellis.com +mail.cbrichardellis.com +navigator.cbrichardellis.com +piq.cbrichardellis.com +premier.cbrichardellis.com +search.cbrichardellis.com +searchnav.cbrichardellis.com +vol.cbrichardellis.com +vpn.cbrichardellis.com +webmail.cbrichardellis.com +www.cbrichardellis.com +www2.cbrichardellis.com +2fa.cbre.com +aac01.mydevices.cbre.com +activate-ui-blue.vas-plat.cbre.com +activate-ui-green.vas-plat.cbre.com +activate-ui-red.vas-plat.cbre.com +activate-ui-stg-green.vas-plat.cbre.com +activate-ui-stg.vas-plat.cbre.com +activate-ui-uat-green.vas-plat.cbre.com +activate-ui-uat.vas-plat.cbre.com +activate-ui.vas-plat.cbre.com +activesync.cbre.com +ad.experience.cbre.com +admin-blueprint.cbre.com +adobecloudlm.cbre.com +ae-tm.nonprod.cbre.com +ae-uat.nonprod.cbre.com +agent.cbre.com +agile.cbre.com +agribusiness.cbre.com +aloha-api-docs-dev.cbre.com +aloha-api-docs-qa.cbre.com +aloha-api-docs-stage.cbre.com +aloha-api-docs.cbre.com +aloha-api.cbre.com +aloha-api.dev.cbre.com +aloha-api.qa.cbre.com +aloha-assets.cbre.com +aloha-assets.nonprod.cbre.com +amex.locator.cbre.com +amlapi.cbre.com +analytics.cbre.com +angulardemo.emerald.cbre.com +annualreport.cbre.com +answers.chatbot.cbre.com +apacbi.cbre.com +apacgenetec.cbre.com +apacmysupplier.cbre.com +apacresearch-tm.nonprod.cbre.com +apacresearch.cbre.com +apbrazil-api-dev.cbre.com +apbrazil-api-qa.cbre.com +apbrazil-api-uat.cbre.com +apbrazil-api.cbre.com +apbrazil-dev.cbre.com +apbrazil-nonprod.cbre.com +apbrazil-qa.cbre.com +apbrazil-uat.cbre.com +apbrazil.cbre.com +api-agile.cbre.com +api-dev.cbre.com +api-dev.smartfm.cbre.com +api-prod.experience.cbre.com +api-qa.smartfm.cbre.com +api-sb.experience.cbre.com +api-test.cbre.com +api-tgm-dr.green.cbre.com +api-tgm-uat.green.cbre.com +api-tgm.green.cbre.com +api-uat.cbre.com +api-uat.smartfm.cbre.com +api-ukplatform.cbre.com +api.aggregate.cbre.com +api.autobuild.cbre.com +api.avm.cbre.com +api.benchmarker.cbre.com +api.bluesky.cbre.com +api.brokerhub.cbre.com +api.builder.cbre.com +api.cbre.com +api.dealiq.cbre.com +api.dev.forecaster.research.cbre.com +api.dev.locator.research.cbre.com +api.dev.performanceiq.cbre.com +api.devx.cbre.com +api.ea.login.cbre.com +api.experience.cbre.com +api.forecaster.cbre.com +api.forecaster.research.cbre.com +api.gsi.cbre.com +api.locator.cbre.com +api.locator.research.cbre.com +api.merge.locator.research.cbre.com +api.miq.cbre.com +api.myproperty.cbre.com +api.officeready.cbre.com +api.performanceiq.cbre.com +api.permissionsmanagement.cbre.com +api.pjm.cbre.com +api.pjmtech.cbre.com +api.qa.performanceiq.cbre.com +api.select.cbre.com +api.smartfm.cbre.com +api.staging.dealiq.cbre.com +api.staging.forecaster.research.cbre.com +api.staging.locator.research.cbre.com +api.test.forecaster.research.cbre.com +api.test.locator.research.cbre.com +apiapac-test.cbre.com +apiapac.cbre.com +apiausy-test.cbre.com +api.fmpilot2.com +autodiscover.fmpilot2.com +azqa-api.fmpilot2.com +azqa-dat.fmpilot2.com +azqa-int.fmpilot2.com +azqa-reporting.fmpilot2.com +azqa-sso.fmpilot2.com +azqa-ssoadmin.fmpilot2.com +azqa-ww2.fmpilot2.com +azqa.fmpilot2.com +azstaging-api-gateway.fmpilot2.com +azstaging-api.fmpilot2.com +azstaging-dat.fmpilot2.com +azstaging-int.fmpilot2.com +azstaging-reporting.fmpilot2.com +azstaging-sso.fmpilot2.com +azstaging-ssoadmin.fmpilot2.com +azstaging-thddat.fmpilot2.com +azstaging-ww2.fmpilot2.com +azstaging.fmpilot2.com +cpr.fmpilot2.com +dat.fmpilot2.com +demo-api.fmpilot2.com +demo.fmpilot2.com +dev-api.fmpilot2.com +dev-dat.fmpilot2.com +dev-int.fmpilot2.com +dev-reporting.fmpilot2.com +dev-serviceapi.fmpilot2.com +dev-sso.fmpilot2.com +dev-ssoadmin.fmpilot2.com +dev-ww2.fmpilot2.com +dev.fmpilot2.com +dynamicdispatch.fmpilot2.com +fmpilot2.com +ftp.fmpilot2.com +ifm-staging.fmpilot2.com +ifm.fmpilot2.com +integration.fmpilot2.com +iwp.fmpilot2.com +jenkins.fmpilot2.com +m-api.fmpilot2.com +o1.ptr7391.fmpilot2.com +perfomance.fmpilot2.com +preprod.fmpilot2.com +qa.fmpilot2.com +regression-api.fmpilot2.com +regression-dat.fmpilot2.com +regression-int.fmpilot2.com +regression-reporting.fmpilot2.com +regression-sso.fmpilot2.com +regression-ssoadmin.fmpilot2.com +regression-ww2.fmpilot2.com +regression.fmpilot2.com +reporting.fmpilot2.com +serviceapi.fmpilot2.com +smtp.fmpilot2.com +sql2019-api.fmpilot2.com +sql2019-dat.fmpilot2.com +sql2019-integration.fmpilot2.com +sql2019-ww2.fmpilot2.com +sql2019.fmpilot2.com +staging-api.fmpilot2.com +staging.fmpilot2.com +tableau.fmpilot2.com +temp-api.fmpilot2.com +temp-integration.fmpilot2.com +temp.fmpilot2.com +test.fmpilot2.com +testing.fmpilot2.com +thd-azstaging.fmpilot2.com +thd.fmpilot2.com +training.fmpilot2.com +ww2.fmpilot2.com +www.fmpilot2.com +www.iwp.fmpilot2.com +www.staging.fmpilot2.com +apiaz-dev.cbre.com +apiaz-test.cbre.com +apiaz.cbre.com +apiazapac-test.cbre.com +apiazapac.cbre.com +apiazemea-test.cbre.com +apiazemea.cbre.com +apiemea-test.cbre.com +apikey-test.cbre.com +apikey-uat.cbre.com +apikey.cbre.com +apimanager-uat.cbre.com +appdproxytest.cbre.com +apps.thelobby.cbre.com +apps.uat.thelobby.cbre.com +appstore.cbre.com +apuacmysupplier.cbre.com +ar-tm.nonprod.cbre.com +ar-uat.nonprod.cbre.com +archive.cbre.com +argentina.preview.cbre.com +argusweb.cbre.com +arguswebgi-test.cbre.com +arguswebgi.cbre.com +artifactory-dr.gcsonp.cbre.com +artifactory-new.gcso.cbre.com +artifactory-new.gcsonp.cbre.com +artifactory-staging.gcso.cbre.com +artifactory-staging.gcsonp.cbre.com +artifactory.gcso.cbre.com +artifactory.gcsonp.cbre.com +artifactory.pnonprod.gcso.cbre.com +as.myim.cbre.com +asianavigator.cbre.com +assetintel-qa.cbre.com +assetintel-uat.cbre.com +assetintel.cbre.com +assetiq.cbre.com +assetiqdev.cbre.com +assetiqpes.cbre.com +assetiqrec.cbre.com +assetiqtest.cbre.com +assetiquat.cbre.com +assetview.cbre.com +at-tm.nonprod.cbre.com +at-uat.nonprod.cbre.com +ataccama-dev.cbre.com +ataccama-dev2.cbre.com +ataccama-nonprod.cbre.com +ataccama-qa.cbre.com +ataccama-staging.cbre.com +ataccama-test.cbre.com +ataccama-uat.cbre.com +ataccama.cbre.com +atcouchdb-east.cbre.com +atcouchdb-west.cbre.com +atcouchdb.cbre.com +atcouchdbdev.cbre.com +atcouchdbdr.cbre.com +atcouchdbdrstaging.cbre.com +atcouchdbstaging-east.cbre.com +atcouchdbstaging-west.cbre.com +atcouchdbstaging.cbre.com +atcouchdbtest.cbre.com +aternity.cbre.com +au-uat.nonprod.cbre.com +authnavigator.cbre.com +authoring.cbre.com +autodiscover.cbre.com +ava-dev.cbre.com +ava-dr.cbre.com +ava-uat.cbre.com +ava.cbre.com +avaapi-dev.cbre.com +avaapi-dr.cbre.com +avaapi-uat.cbre.com +avaapi.cbre.com +avacs-dev.cbre.com +avacs-dr.cbre.com +avacs-uat.cbre.com +avacs.cbre.com +avm.cbre.com +axiscp-test.cbre.com +az.experience.cbre.com +b2c.experience.cbre.com +bam.cbre.com +bamdev.cbre.com +bamdevmapexportapi.cbre.com +bamdevmaplogoapi.cbre.com +bamdevmapstoreapi.cbre.com +bamdevmapuserapi.cbre.com +bammapexportapi.cbre.com +bammaplogoapi.cbre.com +bammapstoreapi.cbre.com +bammapuserapi.cbre.com +bampilot.cbre.com +bampilotmapexportapi.cbre.com +bampilotmaplogoapi.cbre.com +bampilotmapstoreapi.cbre.com +bampilotmapuserapi.cbre.com +bamstaging.cbre.com +bamstagingmapexportapi.cbre.com +bamstagingmapstoreapi.cbre.com +bamstagingmapuserapi.cbre.com +bamuat.cbre.com +bamuatmapexportapi.cbre.com +bamuatmaplogoapi.cbre.com +bamuatmapstoreapi.cbre.com +bamuatmapuserapi.cbre.com +be-tm.nonprod.cbre.com +be-uat.nonprod.cbre.com +benchmarker.cbre.com +bg-tm.nonprod.cbre.com +bg-uat.nonprod.cbre.com +bh-tm.nonprod.cbre.com +bh-uat.nonprod.cbre.com +bi.cbre.com +blue.api-dev.cbre.com +blue.api-gwm-dev.cbre.com +blue.api.cbre.com +blue.apikey-dev.cbre.com +blue.apikey.cbre.com +blue.apimanager-dev.cbre.com +blue.apimanager.cbre.com +blue.developer-dev.cbre.com +blue.developer.cbre.com +blueprint.cbre.com +bluesky.cbre.com +bo2.gcso.cbre.com +borrowerportal.uat.cbre.com +borrowerservices.cbre.com +borrowerservices.uat.cbre.com +boss.cbre.com +bossearch-dev.cbre.com +bossearch.cbre.com +bpworkplacetoolkit.cbre.com +bq.cbre.com +br-tm.nonprod.cbre.com +br-uat.nonprod.cbre.com +brand.cbre.com +brokerdashboard.cbre.com +brokerhub-dev.cbre.com +brokerhub-qa.cbre.com +brokerhub-uat.cbre.com +brokerhub.cbre.com +bt.locator.cbre.com +btuat.locator.cbre.com +build.cbre.com +build3ddev.cbre.com +build3dpes.cbre.com +build3dstaging.cbre.com +build3dtest.cbre.com +build3duat.cbre.com +builder.cbre.com +bulgaria.preview.cbre.com +businessanalytics2.cbre.com +businessinsights.cbre.com +ca-uat.nonprod.cbre.com +calc.cbre.com +calcstaging.cbre.com +cap-tm.nonprod.cbre.com +cap-uat.nonprod.cbre.com +capitalflow.cbre.com +capitalflows.cbre.com +capitalmarkets.cbre.com +caproxy.cbre.com +caproxyfte.cbre.com +caproxyuat.cbre.com +capstonepipeline-dev.cbre.com +capstonepipeline-test.cbre.com +capstonepipeline.cbre.com +careers.cbre.com +casso.cbre.com +cassofte.cbre.com +cassouat.cbre.com +cbftp-azure.cbre.com +cbftp-dev-azure.cbre.com +cbftp-dev.cbre.com +cbftp-dr.cbre.com +cbftp-test-azure.cbre.com +cbftp-test.cbre.com +cbftp.cbre.com +cbre.com +cbre.locator.cbre.com +cbreapps.cbre.com +cbredemoutility-dev.cbre.com +cbredemoutility-test.cbre.com +cbredemoutility.cbre.com +cbrehotels.preview.cbre.com +cbreim-uat.nonprod.cbre.com +cbreloanflow.cbre.com +cbremarketrentcycle-uat.cbre.com +cbremarketrentcycle.cbre.com +cbrenow.cbre.com +cbrenowdev.cbre.com +cbrenowdev3.cbre.com +cbrenowpreprod.cbre.com +cbrenowsandbox.cbre.com +cbrenowtest.cbre.com +cbrepursuits.cbre.com +cbreresidential-uat.nonprod.cbre.com +cbreuat.locator.cbre.com +cbreyardi.cbre.com +ccoe.cbre.com +ccsg.cbre.com +cdm-api-dev.cbre.com +cdm-api-dr.cbre.com +cdm-api-qa.cbre.com +cdm-api-uat.cbre.com +cdm-api.cbre.com +cdm-dev.cbre.com +cdm-dr.cbre.com +cdm-nonprod.cbre.com +cdm-prod.cbre.com +cdm-qa.cbre.com +cdm-uat.cbre.com +cdm.cbre.com +ch-tm.nonprod.cbre.com +ch-uat.nonprod.cbre.com +chatbot.cbre.com +chef.cloudeng.cbre.com +chinataxplus.cbre.com +ciqtops2-prod.cbre.com +ciqtops2-test.cbre.com +ckc-staging.cbre.com +ckc.cbre.com +ckc.glb.cbre.com +cl-tm.nonprod.cbre.com +cl-uat.nonprod.cbre.com +clarion-tm.nonprod.cbre.com +clarion-uat.nonprod.cbre.com +clients.cbre.com +cloudops-atlantis.cbre.com +cloudops.cbre.com +cloudpermissions-dev.cbre.com +cloudpermissions-nonprod.cbre.com +cloudpermissions.cbre.com +cloudtest.cbre.com +cmms-auth-e-blue.serviceinsight.cbre.com +cmms-auth-e-green.serviceinsight.cbre.com +cmms-auth-w-blue.serviceinsight.cbre.com +cmms-auth-w-green.serviceinsight.cbre.com +cmms-auth.serviceinsight.cbre.com +cmms-east-gw.serviceinsight.cbre.com +cmms-emea-gw-c-blue.serviceinsight.cbre.com +cmms-emea-gw-c-green.serviceinsight.cbre.com +cmms-emea-gw-e-blue.serviceinsight.cbre.com +cmms-emea-gw-e-green.serviceinsight.cbre.com +cmms-gw-c-blue.serviceinsight.cbre.com +cmms-gw-c-green.serviceinsight.cbre.com +cmms-gw-e-blue.serviceinsight.cbre.com +cmms-gw-e-green.serviceinsight.cbre.com +cmms-gw-w-blue.serviceinsight.cbre.com +cmms-gw-w-green.serviceinsight.cbre.com +cmms-west-gw.serviceinsight.cbre.com +cmms.serviceinsight.cbre.com +cms.cbre.com +cms2.cbre.com +cmsauthoring.cbre.com +cn-uat.nonprod.cbre.com +co-tm.nonprod.cbre.com +co-uat.nonprod.cbre.com +codeengine-prod-console.cbre.com +codeengine-prod.cbre.com +colombia.preview.cbre.com +columbus.cbre.com +commercialloanservices.uat.cbre.com +confluence.cbre.com +connectedadvantage.cbre.com +core.cbre.com +coreclient-ui-blue.vas-plat.cbre.com +coreclient-ui-green.vas-plat.cbre.com +coreclient-ui-red.vas-plat.cbre.com +coreclient-ui-stg-green.vas-plat.cbre.com +coreclient-ui-stg.vas-plat.cbre.com +coreclient-ui-uat-green.vas-plat.cbre.com +coreclient-ui-uat.vas-plat.cbre.com +coreclient-ui.vas-plat.cbre.com +cort.cbre.com +costargw-dev.cbre.com +costargw.cbre.com +costlab.cbre.com +costlibrary.cbre.com +crm-int-dr.cbre.com +crm-int.cbre.com +crm.cbre.com +crm.pnonprod.gcso.cbre.com +crmemea.cbre.com +crmmix.cbre.com +crmmixrpt-test.cbre.com +crmmyhrsc.cbre.com +crmusuat.cbre.com +crystal-ball-gateway.serviceinsight.cbre.com +crystal-ball.serviceinsight.cbre.com +cs-dev.intrepid.cbre.com +cs.intrepid.cbre.com +csg.cbre.com +csgdr.cbre.com +csghi.cbre.com +csgi.cbre.com +cyprus-uat.cbre.com +cyprus.cbre.com +cz-tm.nonprod.cbre.com +cz-uat.nonprod.cbre.com +dashboard.cbre.com +datamgmt.greenqa.cbre.com +db-tops2-dev.cbre.com +db-tops2-uat.cbre.com +db-tops2.cbre.com +db.vas-core-platform-uat.cbre.com +db.vas-core-platform.cbre.com +de-uat.nonprod.cbre.com +dealdata-jyusetsu.cbre.com +dealdata-oss-dev.cbre.com +dealdata-oss-dev2.cbre.com +dealdata-oss-sit.cbre.com +dealdata-oss-sit2.cbre.com +dealdata-oss-uat.cbre.com +dealdata-oss-uat2.cbre.com +dealdata-oss.cbre.com +dealdata-oss2.cbre.com +dealdata-report-sup.cbre.com +dealdata-report-uat.cbre.com +dealdata-report.cbre.com +dealdata-sup.cbre.com +dealdata-tohon-sup.cbre.com +dealdata-tohon-uat.cbre.com +dealdata-tohon.cbre.com +dealdata-uat.cbre.com +dealdata.cbre.com +dealdata.twistlock.gcso.cbre.com +dealdatajyusetsu-uat.cbre.com +dealdatareport-sup.cbre.com +dealdatareport-uat.cbre.com +dealdatatohon-sup.cbre.com +dealdatatohon-uat.cbre.com +dealiq.cbre.com +dealstream.cbre.com +deepmind.locator.cbre.com +deepminduat.locator.cbre.com +demo-assetview.cbre.com +demo.gopulse.cbre.com +demo.locator.cbre.com +depositary-cbreglobalinvestors.glb.cbre.com +dev-agile.cbre.com +dev-api.avm.cbre.com +dev-artifactory.gcsonp.cbre.com +dev-assetview.cbre.com +dev-calcstaging.cbre.com +dev-cmms-auth.serviceinsight.cbre.com +dev-cmms.serviceinsight.cbre.com +dev-core.cbre.com +dev-costlab.cbre.com +dev-enterprise.serviceinsight.cbre.com +dev-gateway.serviceinsight.cbre.com +dev-gw.cbreone.cbre.com +dev-lightbox.cbre.com +dev-media.cbreone.cbre.com +dev-mriasia.cbre.com +dev-reports-int.cbre.com +dev-serviceinsight.cbre.com +dev-siif-gateway.serviceinsight.cbre.com +dev-tempest-gateway.serviceinsight.cbre.com +dev-tempest.serviceinsight.cbre.com +dev-tfs.cbre.com diff --git a/src/cbre/WILDCARD.txt b/src/cbre/WILDCARD.txt new file mode 100644 index 0000000..c64f0c6 --- /dev/null +++ b/src/cbre/WILDCARD.txt @@ -0,0 +1,42 @@ +*.mainstreamsasp.com +*.bovis.es +*.cbreglobalinvestors.com +*.cbregres.com +*.cbreim.com +*.cbreinvestmentmanagement.com +*.cbreinvestors.com +*.cbrevietnam.com +*.coldrivertax.com +*.commercialloanservices.com +*.corporateproperty.com.au +*.e2ctechnology.com +*.eashaw.co.uk +*.eashaw.com +*.envassetsvcs.com +*.facilitysource.com +*.floridavaluation.com +*.forumanalytics.com +*.hanaspaces.com +*.greatleasedeals.com +*.intego.dk +*.norland.sg +*.norlandcafm.co.uk +*.norlandenergy.com +*.norlandgreen.co.uk +*.norlandmanagedservices.com +*.norlandmanagedservices.ie +*.norlandmanagedservices.sg +*.norlandms.co.uk +*.norlandms.com +*.norlandms.ie +*.norlandprojects.co.uk +*.romonet.com +*.sequentra.com +*.siteready.com +*.sitereadyllc.com +*.spacespot.com +*.telfordhomes.london +*.thinkesi.com +*.uniongaming.com +*.usequities.com +*.yourhana.com diff --git a/src/cbre/note.txt b/src/cbre/note.txt new file mode 100644 index 0000000..bb7fd91 --- /dev/null +++ b/src/cbre/note.txt @@ -0,0 +1 @@ +50128 https://hackerone.com/cbre CBRE cbre diff --git a/src/cedars-sinai/URL.txt b/src/cedars-sinai/URL.txt new file mode 100644 index 0000000..b758da3 --- /dev/null +++ b/src/cedars-sinai/URL.txt @@ -0,0 +1,46 @@ +*cedars-sinai.org +*www.cshs.org +*csmc.edu +*mycslink.org +*cedars-sinai.edu +*www.marinahospital.com +*kerlanjobe.org +*sd.invio.dev +*app.sourcedrive.org +*sourcedrive.org +*Hhapps.net +*Hhec.org +*Hmh-direct.com +*Hmhdr.com +*Hmhdr.net +*Hmhdr.org +*Hmhrx.com +*Hmhrx.net +*Hmhrx.org +*Hmtest.org +*Huntingtonhealth.net +*Huntingtonhealtheconnect.com +*Huntingtonhealtheconnect.net +*Huntingtonhealthnetwork.com +*Huntingtonhealthnetwork.org +*Huntingtonhealthnetwork.net +*Huntingtonrx.com +*Huntingtonrx.net +*SANGABRIELVALLEYHEALTHECONNECT.COM +*SANGABRIELVALLEYHEALTHECONNECT.NET +*sgveconnect.com +*sgveconnect.org +*huntingtonhospital.org +*huntingtonhospital.com +*huntingtonhospital.net +*hhcareers.com +*hhcompliancewebline.com +*hhcompliancewebline.net +*hhphysicians.org +*huntingtonsurgerycenter.com +*ourstory.huntingtonhospital.com/ +*pricing.huntingtonhospital.com/ +*legacy.huntingtonhospital.org +*apps.huntingtonhospital.com/ +*appofchoice.huntingtonhospital.com/ +donatebloodcedars.org diff --git a/src/cedars-sinai/WILDCARD.txt b/src/cedars-sinai/WILDCARD.txt new file mode 100644 index 0000000..ac57471 --- /dev/null +++ b/src/cedars-sinai/WILDCARD.txt @@ -0,0 +1,90 @@ +http://*cedars-sinai.org +http://*www.cshs.org +http://*csmc.edu +http://*mycslink.org +http://*cedars-sinai.edu +http://*www.marinahospital.com +http://*kerlanjobe.org +http://*sd.invio.dev +http://*app.sourcedrive.org +http://*sourcedrive.org +http://*hhapps.net +http://*hhec.org +http://*hmh-direct.com +http://*hmhdr.com +http://*hmhdr.net +http://*hmhdr.org +http://*hmhrx.com +http://*hmhrx.net +http://*hmhrx.org +http://*hmtest.org +http://*huntingtonhealth.net +http://*huntingtonhealtheconnect.com +http://*huntingtonhealtheconnect.net +http://*huntingtonhealthnetwork.com +http://*huntingtonhealthnetwork.org +http://*huntingtonhealthnetwork.net +http://*huntingtonrx.com +http://*huntingtonrx.net +http://*sangabrielvalleyhealtheconnect.com +http://*sangabrielvalleyhealtheconnect.net +http://*sgveconnect.com +http://*sgveconnect.org +http://*huntingtonhospital.org +http://*huntingtonhospital.com +http://*huntingtonhospital.net +http://*hhcareers.com +http://*hhcompliancewebline.com +http://*hhcompliancewebline.net +http://*hhphysicians.org +http://*huntingtonsurgerycenter.com +http://*ourstory.huntingtonhospital.com +http://*pricing.huntingtonhospital.com +http://*legacy.huntingtonhospital.org +http://*apps.huntingtonhospital.com +http://*appofchoice.huntingtonhospital.com +*cedars-sinai.org +*www.cshs.org +*csmc.edu +*mycslink.org +*cedars-sinai.edu +*www.marinahospital.com +*kerlanjobe.org +*sd.invio.dev +*app.sourcedrive.org +*sourcedrive.org +*Hhapps.net +*Hhec.org +*Hmh-direct.com +*Hmhdr.com +*Hmhdr.net +*Hmhdr.org +*Hmhrx.com +*Hmhrx.net +*Hmhrx.org +*Hmtest.org +*Huntingtonhealth.net +*Huntingtonhealtheconnect.com +*Huntingtonhealtheconnect.net +*Huntingtonhealthnetwork.com +*Huntingtonhealthnetwork.org +*Huntingtonhealthnetwork.net +*Huntingtonrx.com +*Huntingtonrx.net +*SANGABRIELVALLEYHEALTHECONNECT.COM +*SANGABRIELVALLEYHEALTHECONNECT.NET +*sgveconnect.com +*sgveconnect.org +*huntingtonhospital.org +*huntingtonhospital.com +*huntingtonhospital.net +*hhcareers.com +*hhcompliancewebline.com +*hhcompliancewebline.net +*hhphysicians.org +*huntingtonsurgerycenter.com +*ourstory.huntingtonhospital.com/ +*pricing.huntingtonhospital.com/ +*legacy.huntingtonhospital.org +*apps.huntingtonhospital.com/ +*appofchoice.huntingtonhospital.com/ diff --git a/src/cedars-sinai/note.txt b/src/cedars-sinai/note.txt new file mode 100644 index 0000000..a5a619c --- /dev/null +++ b/src/cedars-sinai/note.txt @@ -0,0 +1 @@ +46293 https://hackerone.com/cedars-sinai Cedars-Sinai cedars-sinai diff --git a/src/central-security-project/DOWNLOADABLE_EXECUTABLES.txt b/src/central-security-project/DOWNLOADABLE_EXECUTABLES.txt new file mode 100644 index 0000000..853b672 --- /dev/null +++ b/src/central-security-project/DOWNLOADABLE_EXECUTABLES.txt @@ -0,0 +1 @@ +Suspected Java Component diff --git a/src/central-security-project/SOURCE_CODE.txt b/src/central-security-project/SOURCE_CODE.txt new file mode 100644 index 0000000..b2af684 --- /dev/null +++ b/src/central-security-project/SOURCE_CODE.txt @@ -0,0 +1,2 @@ +Java Component in search.maven.org +Java component NOT in search.maven.org diff --git a/src/central-security-project/note.txt b/src/central-security-project/note.txt new file mode 100644 index 0000000..b004d95 --- /dev/null +++ b/src/central-security-project/note.txt @@ -0,0 +1 @@ +35524 https://hackerone.com/central-security-project Central Security Project central-security-project diff --git a/src/certly/note.txt b/src/certly/note.txt new file mode 100644 index 0000000..9cebf89 --- /dev/null +++ b/src/certly/note.txt @@ -0,0 +1 @@ +679 https://hackerone.com/certly Certly certly diff --git a/src/cfptime/URL.txt b/src/cfptime/URL.txt new file mode 100644 index 0000000..320f7b6 --- /dev/null +++ b/src/cfptime/URL.txt @@ -0,0 +1 @@ +www.cfptime.org diff --git a/src/cfptime/note.txt b/src/cfptime/note.txt new file mode 100644 index 0000000..9c03cba --- /dev/null +++ b/src/cfptime/note.txt @@ -0,0 +1 @@ +30500 https://hackerone.com/cfptime CFP Time cfptime diff --git a/src/chainlink/OTHER.txt b/src/chainlink/OTHER.txt new file mode 100644 index 0000000..5543db4 --- /dev/null +++ b/src/chainlink/OTHER.txt @@ -0,0 +1,2 @@ +Explorer +Faucets diff --git a/src/chainlink/SMART_CONTRACT.txt b/src/chainlink/SMART_CONTRACT.txt new file mode 100644 index 0000000..eb7aedf --- /dev/null +++ b/src/chainlink/SMART_CONTRACT.txt @@ -0,0 +1,3 @@ +https://github.com/smartcontractkit/chainlink +https://github.com/smartcontractkit/chainlink/tree/master/contracts +https://github.com/smartcontractkit/staking-v0.1/tree/master/contracts diff --git a/src/chainlink/SOURCE_CODE.txt b/src/chainlink/SOURCE_CODE.txt new file mode 100644 index 0000000..90a01f8 --- /dev/null +++ b/src/chainlink/SOURCE_CODE.txt @@ -0,0 +1,5 @@ +github.com/smartcontractkit/chainlink +https://github.com/smartcontractkit/chainlink/tree/master/contracts +https://github.com/smartcontractkit/staking-v0.1/tree/master/contracts +https://github.com/smartcontractkit/chainlink +https://github.com/smartcontractkit/external-adapters-js/ diff --git a/src/chainlink/URL.txt b/src/chainlink/URL.txt new file mode 100644 index 0000000..294c1af --- /dev/null +++ b/src/chainlink/URL.txt @@ -0,0 +1,3 @@ +https://chain.link/ +*.smartcontract.com +chain.link diff --git a/src/chainlink/WILDCARD.txt b/src/chainlink/WILDCARD.txt new file mode 100644 index 0000000..6107b52 --- /dev/null +++ b/src/chainlink/WILDCARD.txt @@ -0,0 +1,2 @@ +http://*.smartcontract.com +*.smartcontract.com diff --git a/src/chainlink/note.txt b/src/chainlink/note.txt new file mode 100644 index 0000000..92f38fb --- /dev/null +++ b/src/chainlink/note.txt @@ -0,0 +1 @@ +31577 https://hackerone.com/chainlink Chainlink chainlink diff --git a/src/chaturbate/URL.txt b/src/chaturbate/URL.txt new file mode 100644 index 0000000..efdceaa --- /dev/null +++ b/src/chaturbate/URL.txt @@ -0,0 +1,11 @@ +https://chaturbate.com +*.highwebmedia.com +m.chaturbate.com +blog.chaturbate.com +*.securegatewayaccess.com +https://billingsupport.chaturbate.com +https://secure.chaturbate.com +*.mmcdn.com +chaturbate.com +billingsupport.chaturbate.com +secure.chaturbate.com diff --git a/src/chaturbate/WILDCARD.txt b/src/chaturbate/WILDCARD.txt new file mode 100644 index 0000000..90b4495 --- /dev/null +++ b/src/chaturbate/WILDCARD.txt @@ -0,0 +1,8 @@ +http://*.highwebmedia.com +http://*.securegatewayaccess.com +http://*.mmcdn.com +*.highwebmedia.com +*.securegatewayaccess.com +*.mmcdn.com +*.cb.dev +*.mmwebc.dev diff --git a/src/chaturbate/note.txt b/src/chaturbate/note.txt new file mode 100644 index 0000000..e87a77e --- /dev/null +++ b/src/chaturbate/note.txt @@ -0,0 +1 @@ +30475 https://hackerone.com/chaturbate Chaturbate chaturbate diff --git a/src/checkout/note.txt b/src/checkout/note.txt new file mode 100644 index 0000000..a45f74a --- /dev/null +++ b/src/checkout/note.txt @@ -0,0 +1 @@ +50158 https://hackerone.com/checkout Checkout checkout diff --git a/src/chia_network/SOURCE_CODE.txt b/src/chia_network/SOURCE_CODE.txt new file mode 100644 index 0000000..b3e6f0e --- /dev/null +++ b/src/chia_network/SOURCE_CODE.txt @@ -0,0 +1,6 @@ +https://github.com/Chia-Network/chia-blockchain +https://github.com/Chia-Network/chia-blockchain-gui +https://github.com/Chia-Network/clvm_rs +https://github.com/Chia-Network/chia_rs +https://github.com/Chia-Network/chiapos +https://github.com/Chia-Network/chiavdf diff --git a/src/chia_network/note.txt b/src/chia_network/note.txt new file mode 100644 index 0000000..9dea2cf --- /dev/null +++ b/src/chia_network/note.txt @@ -0,0 +1 @@ +77076 https://hackerone.com/chia_network Chia Network chia_network diff --git a/src/chime/APPLE_STORE_APP_ID.txt b/src/chime/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..0540f0f --- /dev/null +++ b/src/chime/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +com.1debit.ChimeProdApp diff --git a/src/chime/GOOGLE_PLAY_APP_ID.txt b/src/chime/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..5bfc0d7 --- /dev/null +++ b/src/chime/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.onedebit.chime diff --git a/src/chime/OTHER.txt b/src/chime/OTHER.txt new file mode 100644 index 0000000..f8786f2 --- /dev/null +++ b/src/chime/OTHER.txt @@ -0,0 +1,5 @@ +iOS Chime App Development Environment +Android Chime App Development Environment +PayFriends/PayAnyone Features +Chime IOS App (Beta) +Chime Android App (Beta) diff --git a/src/chime/URL.txt b/src/chime/URL.txt new file mode 100644 index 0000000..b742008 --- /dev/null +++ b/src/chime/URL.txt @@ -0,0 +1,21 @@ +member-qa.chime.com/users/sign_in +*.1debit.com +*.chimebank.com +*.chimecard.com +*.chime.com +member-qa.chime.com/enroll/#/account +*.chmfin.com +*.chimepayments.com +http://member-qa.chime.com/users/sign_in +http://member-qa.chime.com/enroll/#/account +www.chime.com +wp-ci.chime.com +wp-dev1.chime.com +wp-dev2.chime.com +wp-dev3.chime.com +wp-dev4.chime.com +wp-dev5.chime.com +wp-integ.chime.com +wp-qa.chime.com +https://app.chime.com/ +app.chime.com diff --git a/src/chime/WILDCARD.txt b/src/chime/WILDCARD.txt new file mode 100644 index 0000000..b84c3fc --- /dev/null +++ b/src/chime/WILDCARD.txt @@ -0,0 +1,12 @@ +http://*.1debit.com +http://*.chimebank.com +http://*.chimecard.com +http://*.chime.com +http://*.chmfin.com +http://*.chimepayments.com +*.1debit.com +*.chimebank.com +*.chimecard.com +*.chime.com +*.chmfin.com +*.chimepayments.com diff --git a/src/chime/note.txt b/src/chime/note.txt new file mode 100644 index 0000000..1492506 --- /dev/null +++ b/src/chime/note.txt @@ -0,0 +1 @@ +48983 https://hackerone.com/chime Chime chime diff --git a/src/chorus_jg4l2/note.txt b/src/chorus_jg4l2/note.txt new file mode 100644 index 0000000..b956a85 --- /dev/null +++ b/src/chorus_jg4l2/note.txt @@ -0,0 +1 @@ +44342 https://hackerone.com/chorus_jg4l2 Chorus chorus_jg4l2 diff --git a/src/circle-bbp/SMART_CONTRACT.txt b/src/circle-bbp/SMART_CONTRACT.txt new file mode 100644 index 0000000..078beee --- /dev/null +++ b/src/circle-bbp/SMART_CONTRACT.txt @@ -0,0 +1,3 @@ +https://github.com/circlefin/evm-cctp-contracts +http://github.com/circlefin/noble-cctp +https://github.com/circlefin/solana-cctp-contracts diff --git a/src/circle-bbp/URL.txt b/src/circle-bbp/URL.txt new file mode 100644 index 0000000..4745bac --- /dev/null +++ b/src/circle-bbp/URL.txt @@ -0,0 +1,2 @@ +api.circle.com +app.circle.com diff --git a/src/circle-bbp/note.txt b/src/circle-bbp/note.txt new file mode 100644 index 0000000..0a06cf4 --- /dev/null +++ b/src/circle-bbp/note.txt @@ -0,0 +1 @@ +83563 https://hackerone.com/circle-bbp Circle BBP circle-bbp diff --git a/src/circle/APPLE_STORE_APP_ID.txt b/src/circle/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..87bf88a --- /dev/null +++ b/src/circle/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +1422565459 diff --git a/src/circle/GOOGLE_PLAY_APP_ID.txt b/src/circle/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..3e71e42 --- /dev/null +++ b/src/circle/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.cybavo.auth diff --git a/src/circle/OTHER.txt b/src/circle/OTHER.txt new file mode 100644 index 0000000..12f195e --- /dev/null +++ b/src/circle/OTHER.txt @@ -0,0 +1,2 @@ +All Multichain USDC and EUROC Smart Contracts +Cross Chain Transfer Protocol (CCTP) diff --git a/src/circle/SMART_CONTRACT.txt b/src/circle/SMART_CONTRACT.txt new file mode 100644 index 0000000..bb3fb6d --- /dev/null +++ b/src/circle/SMART_CONTRACT.txt @@ -0,0 +1,11 @@ +https://github.com/circlefin/evm-cctp-contracts +https://algoexplorer.io/asset/31566704 +https://app.dragonglass.me/hedera/tokens/0.0.456858 +https://etherscan.io/token/0x1aBaEA1f7C830bD89Acc67eC4af516284b1bC33c +https://etherscan.io/token/0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48 +https://flowscan.org/contract/A.b19436aae4d94622.FiatToken +https://polygonscan.com/token/0x2791bca1f2de4661ed88a30c99a7a9449aa84174 +https://snowtrace.io/token/0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E +https://solscan.io/token/EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v +https://stellar.expert/explorer/public/asset/USDC-GA5ZSEJYB37JRC5AVCIA5MOP4RHTM335X2KGX3IHOJAPP5RE34K4KZVN +https://tronscan.org/#/token20/TEkxiTehnzSmSe2XqrBj4w32RUN966rdz8 diff --git a/src/circle/URL.txt b/src/circle/URL.txt new file mode 100644 index 0000000..77b8718 --- /dev/null +++ b/src/circle/URL.txt @@ -0,0 +1,10 @@ +app-sandbox.circle.com +my-sandbox.circle.com +api-sandbox.circle.com +api.circle.com +my.circle.com +app.circle.com +usdc.circle.com +www.circle.com +*.circle.com +*.cybavo.com diff --git a/src/circle/WILDCARD.txt b/src/circle/WILDCARD.txt new file mode 100644 index 0000000..0b92100 --- /dev/null +++ b/src/circle/WILDCARD.txt @@ -0,0 +1,4 @@ +http://*.circle.com +http://*.cybavo.com +*.circle.com +*.cybavo.com diff --git a/src/circle/note.txt b/src/circle/note.txt new file mode 100644 index 0000000..6ecb061 --- /dev/null +++ b/src/circle/note.txt @@ -0,0 +1 @@ +54884 https://hackerone.com/circle Circle circle diff --git a/src/cirrusinsight/URL.txt b/src/cirrusinsight/URL.txt new file mode 100644 index 0000000..5672fa6 --- /dev/null +++ b/src/cirrusinsight/URL.txt @@ -0,0 +1,3 @@ +*.cirrusinsight.com +*.cirruspath.com +*.zynbitdev.com diff --git a/src/cirrusinsight/WILDCARD.txt b/src/cirrusinsight/WILDCARD.txt new file mode 100644 index 0000000..1b832da --- /dev/null +++ b/src/cirrusinsight/WILDCARD.txt @@ -0,0 +1,6 @@ +http://*.cirrusinsight.com +http://*.cirruspath.com +http://*.zynbitdev.com +*.cirrusinsight.com +*.cirruspath.com +*.zynbitdev.com diff --git a/src/cirrusinsight/note.txt b/src/cirrusinsight/note.txt new file mode 100644 index 0000000..08ab6ee --- /dev/null +++ b/src/cirrusinsight/note.txt @@ -0,0 +1 @@ +45943 https://hackerone.com/cirrusinsight Cirrus Insight cirrusinsight diff --git a/src/citrix/URL.txt b/src/citrix/URL.txt new file mode 100644 index 0000000..7ade6d5 --- /dev/null +++ b/src/citrix/URL.txt @@ -0,0 +1,33 @@ +citrix.cloud.com +www.cloud.com +ap-s.cloud.com +eu.cloud.com +us.cloud.com +*.citrixworkspacesapi.net +onboarding.cloud.com +onboarding-*.cloud.com +accounts.cloud.com +accounts-internal.cloud.com +*.browser.cloud.com +launch.cloud.com +(yoursubdomain).sf-api.com +(yoursubdomain).sf-api.eu +sf-rp-eu.sharefile.com +(yoursubdomain).sharefile.com +(yoursubdomain).sharefile.eu +sf-rp-us.sharefile.com +secure.sharefile.com +sf-rp.sharefile.com +secure.sharefile.eu +api.sharefile.com +(yoursubdomain).sharefile.com/sf/v3/ +api.sharefile.eu +adm.cloud.com +api.adm.cloud.com +(yoursubdomain).us.iws.cloud.com +(yoursubdomain).ap.iws.cloud.com +(yoursubdomain).eu.iws.cloud.com +(yourIWSsubdomain).cloud.com +*developer.cloud.com +http://(yoursubdomain).sharefile.com/sf/v3/ +(youriwssubdomain).cloud.com diff --git a/src/citrix/note.txt b/src/citrix/note.txt new file mode 100644 index 0000000..8b581d3 --- /dev/null +++ b/src/citrix/note.txt @@ -0,0 +1 @@ +50631 https://hackerone.com/citrix Citrix Systems citrix diff --git a/src/city_of_los_angeles_vdp/URL.txt b/src/city_of_los_angeles_vdp/URL.txt new file mode 100644 index 0000000..d7510da --- /dev/null +++ b/src/city_of_los_angeles_vdp/URL.txt @@ -0,0 +1,2 @@ +*.lacity.org +*.lacity.gov diff --git a/src/city_of_los_angeles_vdp/WILDCARD.txt b/src/city_of_los_angeles_vdp/WILDCARD.txt new file mode 100644 index 0000000..e46044e --- /dev/null +++ b/src/city_of_los_angeles_vdp/WILDCARD.txt @@ -0,0 +1,4 @@ +http://*.lacity.org +http://*.lacity.gov +*.lacity.org +*.lacity.gov diff --git a/src/city_of_los_angeles_vdp/note.txt b/src/city_of_los_angeles_vdp/note.txt new file mode 100644 index 0000000..011452b --- /dev/null +++ b/src/city_of_los_angeles_vdp/note.txt @@ -0,0 +1 @@ +57704 https://hackerone.com/city_of_los_angeles_vdp City of Los Angeles city_of_los_angeles_vdp diff --git a/src/clario/APPLE_STORE_APP_ID.txt b/src/clario/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..fda50bf --- /dev/null +++ b/src/clario/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +co.clario.clario.ios diff --git a/src/clario/DOWNLOADABLE_EXECUTABLES.txt b/src/clario/DOWNLOADABLE_EXECUTABLES.txt new file mode 100644 index 0000000..198088b --- /dev/null +++ b/src/clario/DOWNLOADABLE_EXECUTABLES.txt @@ -0,0 +1,2 @@ +https://mackeeper.com/mk/download/?ref=hackerone +Mackeeper app diff --git a/src/clario/GOOGLE_PLAY_APP_ID.txt b/src/clario/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..c55affa --- /dev/null +++ b/src/clario/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +co.clario.android diff --git a/src/clario/URL.txt b/src/clario/URL.txt new file mode 100644 index 0000000..d7a05b4 --- /dev/null +++ b/src/clario/URL.txt @@ -0,0 +1,41 @@ +https://account.mackeeper.com +https://adblocking.clario.co +https://chat-crm.clario.co +https://chat.clario.co +https://crm.clario.co +https://dcs.clario.co +https://dl.clario.co +https://event.clario.co +https://updater.clario.co +https://updatetracker.clario.co +https://yapi.clario.co +kbill.mackeeper.com +api-ne.mackeeper.com +mkapi.mackeeper.com +*.mackeeper.com +https://clario.co +https://api.account.clario.co +https://inapp.clario.co +https://static-cdn.clario.co +https://webapi.clario.co +https://kbill.mackeeper.com +https://api-ne.mackeeper.com +https://mkapi.mackeeper.com +https://mackeeper.com +account.mackeeper.com +clario.co +api.account.clario.co +adblocking.clario.co +chat-crm.clario.co +chat.clario.co +crm.clario.co +dcs.clario.co +dl.clario.co +event.clario.co +inapp.clario.co +static-cdn.clario.co +updater.clario.co +updatetracker.clario.co +webapi.clario.co +yapi.clario.co +mackeeper.com diff --git a/src/clario/note.txt b/src/clario/note.txt new file mode 100644 index 0000000..5de9d7e --- /dev/null +++ b/src/clario/note.txt @@ -0,0 +1 @@ +43746 https://hackerone.com/clario Clario clario diff --git a/src/clarivate/URL.txt b/src/clarivate/URL.txt new file mode 100644 index 0000000..f5c60c5 --- /dev/null +++ b/src/clarivate/URL.txt @@ -0,0 +1,674 @@ +cpaglobal.ru +authorconnect-webofscience.com +authorconnectwebofscience.com +authorconnectwebofscience-list.com +compumark.app +compumark.asia +compumark.at +compumark.biz +compumark.blog +compu-mark.ca +compumark.cc +compumark.cf +compumark.ch +compumark.club +compumark.co +compumark.co.in +compumark.co.kr +compu-mark.com +compumark.com +compumark.com.au +compumark.com.br +compumark.com.cn +compumark.com.es +compumark.co.nz +compumark.co.uk +compumark.cz +compumark.de +compumark.dev +compumark.dk +compumark.es +compumark.eu +compumark.fr +compumark.ga +compumark.gay +compumark.gq +compumark.in +compumark.info +compumark.it +compumark.jp +compumark.kr +compumark-markmonitor.biz +compumark-markmonitor.com +compumark-markmonitor.co.uk +compumark-markmonitor.info +compumark-markmonitor.net +compumark-markmonitor.org +compumark.me +compumark.net +compumark.org +compumark.page +compumark.pl +compumark.pro +compumark.ru +compumarks.com +compumark.se +compumark.tech +compumark.top +compumark.uk +compumark.us +compumark.xxx +compumark.xyz +computer-central.com +consultingdrg.com +consultingdrgroup.com +corporate-intelligence.com +corporateintelligence.com +corporate-intelligence.net +corporateintelligence.net +corporate-intelligence.org +corporateintelligence.org +cpagolbal.com +cpa-inproma.biz +cpainproma.biz +cpa-inproma.com +cpainproma.com +cpainproma.co.uk +cpa-inproma.info +cpainproma.info +cpa-inproma.net +cpainproma.net +cpa-inproma.org +cpainproma.org +cpainproma.uk +cpa-inprostart.biz +cpainprostart.biz +cpa-inprostart.com +cpainprostart.com +cpainprostart.co.uk +cpa-inprostart.info +cpainprostart.info +cpa-inprostart.net +cpainprostart.net +cpa-inprostart.org +cpainprostart.org +cpainprostart.uk +cpa-inprotech.biz +cpainprotech.biz +cpa-inprotech.com +cpainprotech.com +cpainprotech.co.uk +cpa-inprotech.eu +cpa-inprotech.info +cpainprotech.info +cpa-inprotech.net +cpainprotech.net +cpa-inprotech.org +cpainprotech.org +cpainprotech.org.uk +cpainprotech.uk +cpaintellevate.com +cpa-memostart.biz +cpamemostart.biz +cpa-memostart.com +cpamemostart.com +cpamemostart.co.uk +cpa-memostart.info +cpamemostart.info +cpa-memostart.net +cpamemostart.net +cpa-memostart.org +cpamemostart.org +cpamemostart.org.uk +cpamemostart.uk +cpa-memotech.biz +cpamemotech.biz +cpa-memotech.com +cpamemotech.com +cpamemotech.co.uk +cpa-memotech.eu +cpa-memotech.info +cpamemotech.info +cpa-memotech.net +cpamemotech.net +cpa-memotech.org +cpamemotech.org +cpamemotech.uk +cpa-memotech.us +derwent.app +derwent.at +derwent.be +derwent.biz +derwent.blog +derwent.cc +derwent.cf +derwent.ch +derwent.club +derwent.co +derwent.co.in +derwent.co.kr +derwent.com +derwent.com.mx +derwent.co.uk +derwent.co.za +derwent.cz +derwentdataanalyser.com +derwentdataanalyzer.com +derwent.de +derwent.dev +derwent-drug-file.com +derwent.fr +derwent.ga +derwent.gay +derwent-geneseq.com +derwentgeneseq.com +derwent-genseq.com +derwent.gq +derwent.in +derwent.info +derwentinnovation.com +derwent-innovations-index.com +derwentinnovationsindex.com +derwent.it +derwent.jp +derwentlearning.com +derwent.me +derwent.mobi +derwentnavigator.com +derwent.page +derwent.se +derwentsequencebase.com +derwentsurveyor.com +derwent.top +derwent.uk +derwent-wda.com +derwentwda.com +derwentworldpatentsindex.com +derwentwpi.com +derwent.xyz +dev-scholarone.com +discoverderwent.com +drgabacus.biz +drgabacus.co +drgabacus.com +drgabacus.co.uk +drgabacus.info +drgabacus.net +drgabacus.org +drg-adaptive.com +drgadaptive.com +drgadaptive.info +drgadaptive.net +drgadaptive.org +drgadaptivesoftware.com +drgadaptivesoftware.info +drgadaptivesoftware.net +drgadaptivesoftware.org +drg.am +drganswers.com +drgapps.com +drgaws.com +drg.bz +drgcensusinfo.com +drgco.com +drgconferences.com +drgconsult.com +drg-consulting.com +drgconsultingservices.com +drgdeveloper.com +drg.digital +drgdigital.com +drggateway.com +drgguest.com +drg.healthcare +drginsight.com +drgknowsacos.com +drgknowsoncology.com +drg-labs.com +drgmedtech.com +drgoncology.com +drgpatientjourney.com +drgpayersandproviders.com +drgplatform.com +drgprofessionalservices.com +drgresearch.com +drgroupconsulting.com +drgsites.com +drgspeakers.com +drgtrainingprograms.com +endnote360.com +endnote360.net +endnote360.org +endnote.app +endnote.at +endnote.biz +endnote.ca +endnote.ch +endnote.co.in +end-note.com +endnote.com +end-note.com.au +endnote.com.au +endnote.co.nz +endnote.dev +endnote.es +endnote.eu +endnote.fi +endnote.fr +endnote.ie +endnote.in +endnote.info +endnote.jp +endnote.kr +endnote.me +endnote.net +endnote.org.uk +endnote.page +endnote.pl +endnoter.com +endnote.ru +endnote.se +endnote.software +endnote-students.com +endnote.support +endnote.training +endnote.tw +endnote.us +endnoteweb.com +endnote-x7.at +endnote-x7.de +endnote-x8.at +endnote-x8.de +endnote-x9.at +endnote-x9.de +endnote.xxx +endnote.xyz +fipnews.com +fipx.com +first2file.com +first2file.net +first2file.org +firstofile.com +firstofile.net +firsttofile.com +firsttofile.co.uk +firsttofile.net +firsttofile.org +firsttofile.uk +foundationip.com +foundationip.eu +foundationipnews.com +ftfapp.net +ftftech.com +ftftech.info +ftftech.net +ftftechnologies.com +ftftechnologies.info +ftftechnologies.net +ftftechnologies.org +ftftech.org +incopat.asia +incopat.beer +incopat.biz +incopat.city +incopat.cloud +incopat.cn +incopat.co +incopat.com +incopat.com.cn +incopat.cool +incopat.design +incopat.fit +incopat.fun +incopat.gold +incopat.group +incopat.icu +incopat.info +incopat.ink +incopat.kim +incopat.life +incopat.live +incopat.love +incopat.ltd +incopat.luxe +incopat.mobi +incopat.name +incopat.net +incopat.net.cn +incopat.online +incopat.org +incopat.org.cn +incopat.plus +incopat.press +incopat.pro +incopat.pub +incopat.red +incopat.ren +incopat.run +incopat.shop +incopat.show +incopat.site +incopat.space +incopat.store +incopat.tech +incopat.today +incopat.tv +incopat.video +incopat.wang +incopat.website +incopat.wiki +incopat.work +incopat.world +incopat.xn--55qx5d +incopat.xn--6qq986b3xl +incopat.xn--fiqs8s +incopat.xn--io0a7i +incopat.xn--xhq521b +incopat.xyz +incopat.yoga +inprotech.asia +inprotechlab.com +inprotechnews.com +inprowiki.com +ipfolio.cc +ipfolio.co +ipfolio.com +ipfolio.in +ipfolio.info +ipfolio.net +ipfolios.com +isiwebofscience.biz +isiwebofscience.com +isiwebofscience.info +isiwebofscience.net +journalcitationreports.biz +journalcitationreports.cn +journalcitationreports.com +journalcitationreports.com.cn +journalcitationreports.co.uk +journalcitationreports.de +journalcitationreports.info +journalcitationreports.net +journalcitationreports.org +journalcitationreports.ru +journalcitationreports.tk +journalcitationreports.uk +journalcitationreports.us +journalcitationreports.xxx +marketrack360.com +marketrack.net +mark-monitor.at +mark-monitor.be +mark-monitor.biz +mark-monitor.ca +mark-monitor.cc +mark-monitor.ch +mark-monitor.cn +mark-monitor.com +mark-monitor.com.au +mark-monitor.com.mx +mark-monitor.co.uk +mark-monitor.dk +mark-monitor.es +mark-monitor.eu +mark-monitor.info +mark-monitor.it +mark-monitor.mx +mark-monitor.net +mark-monitor.nl +mark-monitor.org +mark-monitor.ru +mark-monitor.tv +mark-monitor.us +mark-monitor.ws +markprobe.com +markpro.co.kr +markpro.com +markrnonitor.com +mdcip.com +memotechasp.com +memotech.biz +memotechis.com +memotechnews.com +msclinicaltrials.ca +myendnoteweb.com +myendoteweb.com +prod-compumark.com +scholaroneabstracts.com +scholaronebooks.com +scholarone.com +scholaronegrantsawards.com +scholaronemanuscripts.com +scholarone.net +scholarone.org +scholaroneproceedings.com +scholaroneproduction.com +scholarone.xxx +theipmanagementsystem.com +theipmanagementsystems.com +trademark-watching.biz +trademarkwatching.biz +trademarkwatching.com +trademarkwatching.co.uk +trademark-watching.info +trademarkwatching.info +trademark-watching.jp +trademarkwatching.net +trademarkwatching.org +trademarkwatching.org.uk +trademarkwatching.uk +unycom.at +unycom.com +unycom.de +unycom.eu +unycom.in +unycom.jp +unycom-online.com +unycom.us +webofscience.app +webofscience.asia +webofscience.at +webofscience-authorconnect.com +webofscienceauthorconnect.com +webofscienceauthorconnect-list.com +webofscience.be +webofscience.biz +webofscience.blog +webofscience.ca +webofscience.cf +webofscience.ch +webofscience.club +webofscience.co +webofscience.co.in +webofscience.co.kr +web-of-science.com +webofscience.com +webofscience.com.au +webofscience.com.cn +webofscience.com.mx +webofscience.co.nz +webofscience.co.uk +webofscience.co.za +webofscience.cz +webofscience.dev +webofscience.dk +webofscience.es +webofscience.eu +webofscience.fr +webofscience.ga +webofscience.gay +webofscience.gq +webofsciencegroup.asia +webofsciencegroup.at +webofsciencegroup.be +webofsciencegroup.biz +webofsciencegroup.ca +webofsciencegroup.cc +webofsciencegroup.cf +webofsciencegroup.ch +webofsciencegroup.cl +webofsciencegroup.club +webofsciencegroup.co +webofsciencegroup.co.in +webofsciencegroup.co.kr +webofsciencegroup.com +webofsciencegroup.com.ar +webofsciencegroup.com.au +webofsciencegroup.com.br +webofsciencegroup.com.mx +webofsciencegroup.com.pl +webofsciencegroup.com.tw +webofsciencegroup.co.nz +webofsciencegroup.co.uk +webofsciencegroup.co.za +webofsciencegroup.cz +webofsciencegroup.de +webofsciencegroup.dk +webofsciencegroup.es +webofsciencegroup.eu +webofsciencegroup.fi +webofsciencegroup.fr +webofsciencegroup.ga +webofsciencegroup.gr +webofsciencegroup.hk +webofsciencegroup.hu +webofsciencegroup.in +webofsciencegroup.info +webofsciencegroup.it +webofsciencegroup.jp +webofsciencegroup.kr +webofsciencegroup.me +webofsciencegroup.mobi +webofsciencegroup.mx +webofsciencegroup.net +webofsciencegroup.nl +webofsciencegroup.no +webofsciencegroup.org +webofsciencegroup.pl +webofsciencegroup.pt +webofsciencegroup.ro +webofsciencegroup.ru +webofsciencegroup.se +webofsciencegroup.sk +webofsciencegroup.tk +webofsciencegroup.top +webofsciencegroup.tv +webofsciencegroup.tw +webofsciencegroup.uk +webofsciencegroup.us +webofscience.in +webofscience.info +webofscience.it +webofscience.jp +webofscience.me +webofscience.mobi +webofscience.net +webofscience.nl +web-of-science.org +webofscience.page +webofscience.pl +webofscience.se +webofscience.uk +webofscience.us +webofscience.xyz +wila-derwent.com +03al1450.com +03mn1500.com +04ag1525.com +0510billing.com +05yo1560.com +09ek1225.com +100topinnovators.com +123demo-domainz.biz +123demo-domainz.com +123demo-domainz.co.uk +123demo-domainz.net +123demo-domainz.org +123efgdemo-domainz.net +123mmdemodomains.co.uk +123mmdemodomains.info +124mmdemodomains.info +1790.com +1790.net +1790.org +1registrytest.com +1st2file.com +1st2file.net +1stedit.com +247realmedia.fr +3dnma.com +6degreesofcitation.com +ab123domains.info +ab123domains.net +ab123domains.org +ab124domains.info +ab124domains.net +abacusdatamanagement.com +abacusint.com +abacusint.info +abacusvalue.com +abacusvalue.co.uk +aboutaxspa.ca +aboutproquest.com +aboutproquest.net +abstractcentral.com +academic-e-books.com +academichelp.com +academicvideoonline.com +academicvideostore.com +accelanation.com +acceleratingthepaceofinnovation.com +accesspolaris.com +acetheclass.com +acetheclass.net +acetheclass.org +acethecourse.com +acethecourse.net +acethecourse.org +aclasta.ca +activatenetwork.net +activatenetworks.net +adakveo.ca +adaptiverx.com +adaptivesoftware.com +adaptivesoftware.net +adaptsw.com +advancedpatents.com +advancedpatentsearch.com +advancedpatentservices.com +afinitor.ca +afinitor.com +afinitrac.ca +agll.com +ahfacademy.ca +aia-award.com +aidermoncoeur.ca +aimovigdirect.ca +aimovig-pro.ca +aimovigtraining.ca +aktistry.ca +aktor-kt.com +alecto.com +alecto.co.uk +alecto.net +alecto.us +alexanderst.com +alexanderstreet2.com +alexanderstreet4a.com +alexanderstreet4b.com +alexanderstreet4.com +alexanderstreet5.com +alexanderstreet6.com +alexanderstreet.com +alexanderstreet.co.uk +alexanderstreet.press +alexanderstreetpress.com +alidomaintest123.com +alldomiandsklaj.de +allicense.com +allresultsweb.fr +allwhois.asia +allwhois.biz +allwhois.com +allwhois.co.uk +alongsidems.ca diff --git a/src/clarivate/note.txt b/src/clarivate/note.txt new file mode 100644 index 0000000..c4c0698 --- /dev/null +++ b/src/clarivate/note.txt @@ -0,0 +1 @@ +54839 https://hackerone.com/clarivate Clarivate clarivate diff --git a/src/cloudflare/AI_MODEL.txt b/src/cloudflare/AI_MODEL.txt new file mode 100644 index 0000000..efb7f6e --- /dev/null +++ b/src/cloudflare/AI_MODEL.txt @@ -0,0 +1 @@ +Workers AI diff --git a/src/cloudflare/OTHER.txt b/src/cloudflare/OTHER.txt new file mode 100644 index 0000000..b398019 --- /dev/null +++ b/src/cloudflare/OTHER.txt @@ -0,0 +1,43 @@ +Cloudflare Pages +CDNJS +WARP Mobile Apps +Cloudflare Access +Stream +1.1.1.1 Resolver +Magic Transit +Argo Tunnel +Spectrum +Load Balancing +Bot Management +Cloudflare for teams +Open source tools from Cloudflare +Cloudflare D1 +Cloudflare R2 +Cloudflare Zero Trust/Cloudflare One +WARP desktop client +Cloudflare DNS +Cloudflare CASB +Workers +Cloudflare Tunnel +AMP Real URL +Cloudflare Cache +Magic Firewall +Cloudflare Zaraz +China Network +API Shield +Gateway +Browser Isolation +Workers AI +AI Gateway +Vectorize +Hyperdrive +Workers KV +Cloudflare Analytics +Cloudflare Durable Objects +Turnstile +Waiting Room +Magic WAN +Data Loss Prevention (DLP) +SSL/TLS +Images +*.cloudflarepartners.com diff --git a/src/cloudflare/SOURCE_CODE.txt b/src/cloudflare/SOURCE_CODE.txt new file mode 100644 index 0000000..7fed4e6 --- /dev/null +++ b/src/cloudflare/SOURCE_CODE.txt @@ -0,0 +1 @@ +https://github.com/cloudflare/workerd diff --git a/src/cloudflare/URL.txt b/src/cloudflare/URL.txt new file mode 100644 index 0000000..ed48d3a --- /dev/null +++ b/src/cloudflare/URL.txt @@ -0,0 +1,12 @@ +dash.cloudflare.com +cloudflare.com/apps/ +cloudflareworkers.com +*.teams.cloudflare.com +api.cloudflare.com +*.cloudflare.com +github.com/cloudflare +http://github.com/cloudflare +dash.teams.cloudflare.com +one.dash.cloudflare.com +*.cloudflarepartners.com +waf.cumulusfire.net diff --git a/src/cloudflare/note.txt b/src/cloudflare/note.txt new file mode 100644 index 0000000..f518eb0 --- /dev/null +++ b/src/cloudflare/note.txt @@ -0,0 +1 @@ +41 https://hackerone.com/cloudflare Cloudflare Public Bug Bounty cloudflare diff --git a/src/clubhouse/APPLE_STORE_APP_ID.txt b/src/clubhouse/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..60992c0 --- /dev/null +++ b/src/clubhouse/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +1503133294 diff --git a/src/clubhouse/GOOGLE_PLAY_APP_ID.txt b/src/clubhouse/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..34ba451 --- /dev/null +++ b/src/clubhouse/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.clubhouse.android diff --git a/src/clubhouse/OTHER.txt b/src/clubhouse/OTHER.txt new file mode 100644 index 0000000..9445295 --- /dev/null +++ b/src/clubhouse/OTHER.txt @@ -0,0 +1 @@ +Clubhouse Production and Corporate Infrastructure diff --git a/src/clubhouse/URL.txt b/src/clubhouse/URL.txt new file mode 100644 index 0000000..3cd7c28 --- /dev/null +++ b/src/clubhouse/URL.txt @@ -0,0 +1,3 @@ +*.clubhouse.com +*.joinclubhouse.com +*.clubhouseapi.com diff --git a/src/clubhouse/WILDCARD.txt b/src/clubhouse/WILDCARD.txt new file mode 100644 index 0000000..27a1266 --- /dev/null +++ b/src/clubhouse/WILDCARD.txt @@ -0,0 +1,6 @@ +http://*.clubhouse.com +http://*.joinclubhouse.com +http://*.clubhouseapi.com +*.clubhouse.com +*.joinclubhouse.com +*.clubhouseapi.com diff --git a/src/clubhouse/note.txt b/src/clubhouse/note.txt new file mode 100644 index 0000000..a2fab9f --- /dev/null +++ b/src/clubhouse/note.txt @@ -0,0 +1 @@ +52105 https://hackerone.com/clubhouse Clubhouse clubhouse diff --git a/src/coalition/URL.txt b/src/coalition/URL.txt new file mode 100644 index 0000000..1b6baad --- /dev/null +++ b/src/coalition/URL.txt @@ -0,0 +1,3 @@ +platform.thecoalition.com +api.thecoalition.com +coalitioninc.com diff --git a/src/coalition/note.txt b/src/coalition/note.txt new file mode 100644 index 0000000..b678317 --- /dev/null +++ b/src/coalition/note.txt @@ -0,0 +1 @@ +24846 https://hackerone.com/coalition Coalition, Inc. coalition diff --git a/src/cobinhood/GOOGLE_PLAY_APP_ID.txt b/src/cobinhood/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..2385203 --- /dev/null +++ b/src/cobinhood/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +cobinhood.exchange diff --git a/src/cobinhood/OTHER.txt b/src/cobinhood/OTHER.txt new file mode 100644 index 0000000..52292a7 --- /dev/null +++ b/src/cobinhood/OTHER.txt @@ -0,0 +1 @@ +com/us/app/cobinhood-ethereum-exchange/id1369572233?mt=8&ign-mpt=uo%3D4 diff --git a/src/cobinhood/URL.txt b/src/cobinhood/URL.txt new file mode 100644 index 0000000..084bde9 --- /dev/null +++ b/src/cobinhood/URL.txt @@ -0,0 +1 @@ +https://*.cobinhood.com diff --git a/src/cobinhood/WILDCARD.txt b/src/cobinhood/WILDCARD.txt new file mode 100644 index 0000000..a9e0602 --- /dev/null +++ b/src/cobinhood/WILDCARD.txt @@ -0,0 +1,2 @@ +http://*.cobinhood.com +https://*.cobinhood.com diff --git a/src/cobinhood/note.txt b/src/cobinhood/note.txt new file mode 100644 index 0000000..4a6cf00 --- /dev/null +++ b/src/cobinhood/note.txt @@ -0,0 +1 @@ +26953 https://hackerone.com/cobinhood Cobinhood cobinhood diff --git a/src/coda_bbp/APPLE_STORE_APP_ID.txt b/src/coda_bbp/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..ad51000 --- /dev/null +++ b/src/coda_bbp/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +io.coda diff --git a/src/coda_bbp/GOOGLE_PLAY_APP_ID.txt b/src/coda_bbp/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..2af247a --- /dev/null +++ b/src/coda_bbp/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +io.coda.codaapp diff --git a/src/coda_bbp/OTHER.txt b/src/coda_bbp/OTHER.txt new file mode 100644 index 0000000..d479e70 --- /dev/null +++ b/src/coda_bbp/OTHER.txt @@ -0,0 +1 @@ +Coda Chrome Extension diff --git a/src/coda_bbp/URL.txt b/src/coda_bbp/URL.txt new file mode 100644 index 0000000..a34e918 --- /dev/null +++ b/src/coda_bbp/URL.txt @@ -0,0 +1,14 @@ +https://coda.io/* +https://coda.io/signup/email +codahosted.io +codacontent.io +https://airflow-prod.coda.io/* +https://data.coda.io/* +https://head.coda.io/* +https://infra.coda.io/* +https://airflow-prod.ops.coda.io/* +https://shiny.ops.coda.io/* +https://staging.coda.io/* +https://user-profile-prod.coda.io/* +https://*.coda.io/* +https://user-profile-test.coda.io/* diff --git a/src/coda_bbp/WILDCARD.txt b/src/coda_bbp/WILDCARD.txt new file mode 100644 index 0000000..962a031 --- /dev/null +++ b/src/coda_bbp/WILDCARD.txt @@ -0,0 +1,22 @@ +http://coda.io/* +http://airflow-prod.coda.io/* +http://data.coda.io/* +http://head.coda.io/* +http://infra.coda.io/* +http://airflow-prod.ops.coda.io/* +http://shiny.ops.coda.io/* +http://staging.coda.io/* +http://user-profile-prod.coda.io/* +http://*.coda.io/* +http://user-profile-test.coda.io/* +https://coda.io/* +https://airflow-prod.coda.io/* +https://data.coda.io/* +https://head.coda.io/* +https://infra.coda.io/* +https://airflow-prod.ops.coda.io/* +https://shiny.ops.coda.io/* +https://staging.coda.io/* +https://user-profile-prod.coda.io/* +https://*.coda.io/* +https://user-profile-test.coda.io/* diff --git a/src/coda_bbp/note.txt b/src/coda_bbp/note.txt new file mode 100644 index 0000000..37f2539 --- /dev/null +++ b/src/coda_bbp/note.txt @@ -0,0 +1 @@ +39147 https://hackerone.com/coda_bbp Coda coda_bbp diff --git a/src/codeigniter/SOURCE_CODE.txt b/src/codeigniter/SOURCE_CODE.txt new file mode 100644 index 0000000..b4715d7 --- /dev/null +++ b/src/codeigniter/SOURCE_CODE.txt @@ -0,0 +1 @@ +https://github.com/bcit-ci/CodeIgniter diff --git a/src/codeigniter/URL.txt b/src/codeigniter/URL.txt new file mode 100644 index 0000000..6a3524f --- /dev/null +++ b/src/codeigniter/URL.txt @@ -0,0 +1 @@ +www.codeigniter.com diff --git a/src/codeigniter/note.txt b/src/codeigniter/note.txt new file mode 100644 index 0000000..827bdef --- /dev/null +++ b/src/codeigniter/note.txt @@ -0,0 +1 @@ +5013 https://hackerone.com/codeigniter CodeIgniter codeigniter diff --git a/src/cognizant/OTHER.txt b/src/cognizant/OTHER.txt new file mode 100644 index 0000000..706853b --- /dev/null +++ b/src/cognizant/OTHER.txt @@ -0,0 +1 @@ +Security vulnerabilities that are identified in products or website domains owned by Cognizant are in scope diff --git a/src/cognizant/note.txt b/src/cognizant/note.txt new file mode 100644 index 0000000..f4db9b2 --- /dev/null +++ b/src/cognizant/note.txt @@ -0,0 +1 @@ +46646 https://hackerone.com/cognizant Cognizant cognizant diff --git a/src/coinbase/APPLE_STORE_APP_ID.txt b/src/coinbase/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..69f5940 --- /dev/null +++ b/src/coinbase/APPLE_STORE_APP_ID.txt @@ -0,0 +1,4 @@ +com.coinbase.ios +org.toshi.distribution +com.coinbase.pro +com.shiftpayments.shiftcard diff --git a/src/coinbase/CIDR.txt b/src/coinbase/CIDR.txt new file mode 100644 index 0000000..dddefb9 --- /dev/null +++ b/src/coinbase/CIDR.txt @@ -0,0 +1 @@ +54.175.255.192/27 diff --git a/src/coinbase/GOOGLE_PLAY_APP_ID.txt b/src/coinbase/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..6713f53 --- /dev/null +++ b/src/coinbase/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1,4 @@ +com.coinbase.android +org.toshi +com.coinbase.pro +com.coinbase.wallite diff --git a/src/coinbase/OTHER.txt b/src/coinbase/OTHER.txt new file mode 100644 index 0000000..68ac604 --- /dev/null +++ b/src/coinbase/OTHER.txt @@ -0,0 +1,6 @@ +Other - Please describe +https://chrome.google.com/webstore/detail/coinbase-wallet-extension/hnfanknocfeofbddgcijnmhnfnkdnaad +*.base.org +Web3 Smart Contracts +Other +Coinbase WaaS (Wallet as a Service) diff --git a/src/coinbase/SMART_CONTRACT.txt b/src/coinbase/SMART_CONTRACT.txt new file mode 100644 index 0000000..0c3f4c6 --- /dev/null +++ b/src/coinbase/SMART_CONTRACT.txt @@ -0,0 +1 @@ +https://base.org diff --git a/src/coinbase/URL.txt b/src/coinbase/URL.txt new file mode 100644 index 0000000..0e16d08 --- /dev/null +++ b/src/coinbase/URL.txt @@ -0,0 +1,15 @@ +coinbase.com +*.cbhq.net +pro.coinbase.com +custody.coinbase.com +commerce.coinbase.com +prime.coinbase.com +paradex.io +institutional.coinbase.com +api.coinbase.com +api.custody.coinbase.com +*.coinbase.com +cloud.coinbase.com +http://coinbase.com +international.coinbase.com +nft.coinbase.com diff --git a/src/coinbase/note.txt b/src/coinbase/note.txt new file mode 100644 index 0000000..9e276ff --- /dev/null +++ b/src/coinbase/note.txt @@ -0,0 +1 @@ +104 https://hackerone.com/coinbase Coinbase coinbase diff --git a/src/coinhako/APPLE_STORE_APP_ID.txt b/src/coinhako/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..94f9032 --- /dev/null +++ b/src/coinhako/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +com.coinhako.app diff --git a/src/coinhako/GOOGLE_PLAY_APP_ID.txt b/src/coinhako/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..39706e8 --- /dev/null +++ b/src/coinhako/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.coinhako diff --git a/src/coinhako/URL.txt b/src/coinhako/URL.txt new file mode 100644 index 0000000..acd8f5a --- /dev/null +++ b/src/coinhako/URL.txt @@ -0,0 +1,2 @@ +www.coinhako.com +help.coinhako.com diff --git a/src/coinhako/note.txt b/src/coinhako/note.txt new file mode 100644 index 0000000..05da7b9 --- /dev/null +++ b/src/coinhako/note.txt @@ -0,0 +1 @@ +58669 https://hackerone.com/coinhako Coinhako coinhako diff --git a/src/coinspot/APPLE_STORE_APP_ID.txt b/src/coinspot/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..d49d4f3 --- /dev/null +++ b/src/coinspot/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +1541949985 diff --git a/src/coinspot/GOOGLE_PLAY_APP_ID.txt b/src/coinspot/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..b01dd43 --- /dev/null +++ b/src/coinspot/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.coinspot.app diff --git a/src/coinspot/URL.txt b/src/coinspot/URL.txt new file mode 100644 index 0000000..0346b30 --- /dev/null +++ b/src/coinspot/URL.txt @@ -0,0 +1 @@ +www.coinspot.com.au diff --git a/src/coinspot/note.txt b/src/coinspot/note.txt new file mode 100644 index 0000000..a99729a --- /dev/null +++ b/src/coinspot/note.txt @@ -0,0 +1 @@ +41393 https://hackerone.com/coinspot CoinSpot coinspot diff --git a/src/companyhub/GOOGLE_PLAY_APP_ID.txt b/src/companyhub/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..6c590a0 --- /dev/null +++ b/src/companyhub/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.companyhub.crm diff --git a/src/companyhub/OTHER_IPA.txt b/src/companyhub/OTHER_IPA.txt new file mode 100644 index 0000000..6c590a0 --- /dev/null +++ b/src/companyhub/OTHER_IPA.txt @@ -0,0 +1 @@ +com.companyhub.crm diff --git a/src/companyhub/URL.txt b/src/companyhub/URL.txt new file mode 100644 index 0000000..82cdec4 --- /dev/null +++ b/src/companyhub/URL.txt @@ -0,0 +1 @@ +*.companyhub.com diff --git a/src/companyhub/WILDCARD.txt b/src/companyhub/WILDCARD.txt new file mode 100644 index 0000000..f759ba7 --- /dev/null +++ b/src/companyhub/WILDCARD.txt @@ -0,0 +1,2 @@ +http://*.companyhub.com +*.companyhub.com diff --git a/src/companyhub/note.txt b/src/companyhub/note.txt new file mode 100644 index 0000000..9ddd872 --- /dev/null +++ b/src/companyhub/note.txt @@ -0,0 +1 @@ +43727 https://hackerone.com/companyhub CompanyHub companyhub diff --git a/src/compass-bbp/URL.txt b/src/compass-bbp/URL.txt new file mode 100644 index 0000000..50da92b --- /dev/null +++ b/src/compass-bbp/URL.txt @@ -0,0 +1 @@ +www.compass.com diff --git a/src/compass-bbp/note.txt b/src/compass-bbp/note.txt new file mode 100644 index 0000000..a8f41bc --- /dev/null +++ b/src/compass-bbp/note.txt @@ -0,0 +1 @@ +51985 https://hackerone.com/compass-bbp Compass compass-bbp diff --git a/src/concretecms/SOURCE_CODE.txt b/src/concretecms/SOURCE_CODE.txt new file mode 100644 index 0000000..a5a9944 --- /dev/null +++ b/src/concretecms/SOURCE_CODE.txt @@ -0,0 +1 @@ +https://github.com/concrete5/concrete5 diff --git a/src/concretecms/note.txt b/src/concretecms/note.txt new file mode 100644 index 0000000..c908de9 --- /dev/null +++ b/src/concretecms/note.txt @@ -0,0 +1 @@ +60 https://hackerone.com/concretecms Concrete CMS concretecms diff --git a/src/consensys/SOURCE_CODE.txt b/src/consensys/SOURCE_CODE.txt new file mode 100644 index 0000000..628e7ed --- /dev/null +++ b/src/consensys/SOURCE_CODE.txt @@ -0,0 +1,8 @@ +https://github.com/trufflesuite/truffle +https://github.com/trufflesuite/ganache +https://github.com/trufflesuite/trufflesuite.com +https://github.com/trufflesuite/ganache-ui +https://github.com/trufflesuite/vscode-ext +https://github.com/trufflesuite/preserves +https://github.com/trufflesuite/drizzle +https://github.com/trufflesuite/drizzle-utils diff --git a/src/consensys/URL.txt b/src/consensys/URL.txt new file mode 100644 index 0000000..67adc24 --- /dev/null +++ b/src/consensys/URL.txt @@ -0,0 +1,20 @@ +mmi-test.codefi.network +activate.codefi.network +staking.codefi.network +eu-oat.payments.codefi.network +canary.activate.codefi.network +on-ramp.metaswap-dev.codefi.network +consensys.net +assets-paris-demo.codefi.network +bridge.codefi.network +https://ipfs.infura.io/ +trufflesuite.com +webhooks-api-experimental.codefi.network +http://portfolio.metamask.io +https://metamask-sdk-socket.metafi.codefi.network/ +staking-uat.codefi.network +app.infura.io +http://staking.consensys.io +https://consensys.io/ +support.metamask.io +tickets.metamask.io diff --git a/src/consensys/note.txt b/src/consensys/note.txt new file mode 100644 index 0000000..3483c00 --- /dev/null +++ b/src/consensys/note.txt @@ -0,0 +1 @@ +40160 https://hackerone.com/consensys Consensys consensys diff --git a/src/copper/URL.txt b/src/copper/URL.txt new file mode 100644 index 0000000..7d6a7f4 --- /dev/null +++ b/src/copper/URL.txt @@ -0,0 +1,2 @@ +app.copper.com +www.copper.com diff --git a/src/copper/note.txt b/src/copper/note.txt new file mode 100644 index 0000000..7f0abf7 --- /dev/null +++ b/src/copper/note.txt @@ -0,0 +1 @@ +43020 https://hackerone.com/copper Copper copper diff --git a/src/cornershop/APPLE_STORE_APP_ID.txt b/src/cornershop/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..39caa52 --- /dev/null +++ b/src/cornershop/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +io.cornershop.ios diff --git a/src/cornershop/GOOGLE_PLAY_APP_ID.txt b/src/cornershop/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..057abb3 --- /dev/null +++ b/src/cornershop/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +cornershopapp.android diff --git a/src/cornershop/SOURCE_CODE.txt b/src/cornershop/SOURCE_CODE.txt new file mode 100644 index 0000000..352d0ab --- /dev/null +++ b/src/cornershop/SOURCE_CODE.txt @@ -0,0 +1 @@ +github.com/cornershop/* diff --git a/src/cornershop/URL.txt b/src/cornershop/URL.txt new file mode 100644 index 0000000..4db4e5c --- /dev/null +++ b/src/cornershop/URL.txt @@ -0,0 +1,4 @@ +*.cornershopapp.com/* +*.superpal.com/* +*.cornershop.io/* +*.superpal.io/* diff --git a/src/cornershop/note.txt b/src/cornershop/note.txt new file mode 100644 index 0000000..3e3bfc9 --- /dev/null +++ b/src/cornershop/note.txt @@ -0,0 +1 @@ +15466 https://hackerone.com/cornershop Cornershop cornershop diff --git a/src/cosmos/OTHER.txt b/src/cosmos/OTHER.txt new file mode 100644 index 0000000..79a4677 --- /dev/null +++ b/src/cosmos/OTHER.txt @@ -0,0 +1,10 @@ +CosmWasm +Packet Forward Middleware +CometBFT +Cosmos SDK +ibc-go +Horcrux +Hermes +ibc-go Relayer +IBC Go Relayer +Hermes Relayer diff --git a/src/cosmos/SOURCE_CODE.txt b/src/cosmos/SOURCE_CODE.txt new file mode 100644 index 0000000..3268a25 --- /dev/null +++ b/src/cosmos/SOURCE_CODE.txt @@ -0,0 +1,14 @@ +https://github.com/tendermint/tendermint +https://github.com/cosmos/iavl +https://github.com/cosmos/cosmos-sdk +https://github.com/iqlusioninc/yubihsm.rs +https://github.com/iqlusioninc/tmkms +https://github.com/iqlusioninc/signatory +https://github.com/cosmos/ledger-cosmos +https://github.com/cosmos/gaia +https://github.com/cosmos/ibc-go +https://github.com/cometbft/cometbft +https://github.com/iqlusioninc/crates/tree/main/signatory +https://github.com/cometbft/cometbft-db +https://github.com/cosmos/ics23 +https://github.com/CosmWasm/cosmwasm diff --git a/src/cosmos/note.txt b/src/cosmos/note.txt new file mode 100644 index 0000000..daa088d --- /dev/null +++ b/src/cosmos/note.txt @@ -0,0 +1 @@ +24626 https://hackerone.com/cosmos Cosmos cosmos diff --git a/src/costco/APPLE_STORE_APP_ID.txt b/src/costco/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..c3add8b --- /dev/null +++ b/src/costco/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +535509415 diff --git a/src/costco/GOOGLE_PLAY_APP_ID.txt b/src/costco/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..6dbad73 --- /dev/null +++ b/src/costco/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.costco.app.android diff --git a/src/costco/URL.txt b/src/costco/URL.txt new file mode 100644 index 0000000..4bf7dd1 --- /dev/null +++ b/src/costco/URL.txt @@ -0,0 +1,6 @@ +*.costco.com +*.costco.ca +*.costcobusinessdelivery.com +*.costcobusinesscentre.ca +*.costcotravel.com +*.costcotravel.ca diff --git a/src/costco/WILDCARD.txt b/src/costco/WILDCARD.txt new file mode 100644 index 0000000..665cc4d --- /dev/null +++ b/src/costco/WILDCARD.txt @@ -0,0 +1,12 @@ +http://*.costco.com +http://*.costco.ca +http://*.costcobusinessdelivery.com +http://*.costcobusinesscentre.ca +http://*.costcotravel.com +http://*.costcotravel.ca +*.costco.com +*.costco.ca +*.costcobusinessdelivery.com +*.costcobusinesscentre.ca +*.costcotravel.com +*.costcotravel.ca diff --git a/src/costco/note.txt b/src/costco/note.txt new file mode 100644 index 0000000..2e874a2 --- /dev/null +++ b/src/costco/note.txt @@ -0,0 +1 @@ +50957 https://hackerone.com/costco Costco costco diff --git a/src/coursera/URL.txt b/src/coursera/URL.txt new file mode 100644 index 0000000..bdabbf1 --- /dev/null +++ b/src/coursera/URL.txt @@ -0,0 +1 @@ +www.coursera.org diff --git a/src/coursera/note.txt b/src/coursera/note.txt new file mode 100644 index 0000000..874fa16 --- /dev/null +++ b/src/coursera/note.txt @@ -0,0 +1 @@ +1516 https://hackerone.com/coursera Coursera coursera diff --git a/src/creditkarma/APPLE_STORE_APP_ID.txt b/src/creditkarma/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..94b7218 --- /dev/null +++ b/src/creditkarma/APPLE_STORE_APP_ID.txt @@ -0,0 +1,3 @@ +com.creditkarma.mobile +com.creditkarma.canada +com.creditkarma.mobile.international diff --git a/src/creditkarma/GOOGLE_PLAY_APP_ID.txt b/src/creditkarma/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..7b4acd3 --- /dev/null +++ b/src/creditkarma/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1,2 @@ +com.creditkarma.mobile +com.creditkarma.mobile.international diff --git a/src/creditkarma/URL.txt b/src/creditkarma/URL.txt new file mode 100644 index 0000000..a47810d --- /dev/null +++ b/src/creditkarma/URL.txt @@ -0,0 +1,15 @@ +https://*.creditkarma.com +https://accounts.creditkarma.com +https://www.creditkarma.ca +https://api.creditkarma.com +https://help.creditkarma.com +https://blog.creditkarma.com/ +https://www.creditkarma.com/savings +https://support.creditkarma.ca/ +accounts.creditkarma.com +www.creditkarma.ca +api.creditkarma.com +help.creditkarma.com +blog.creditkarma.com +support.creditkarma.ca +https://www.creditkarma.com/reviews/ diff --git a/src/creditkarma/WILDCARD.txt b/src/creditkarma/WILDCARD.txt new file mode 100644 index 0000000..9a7a00b --- /dev/null +++ b/src/creditkarma/WILDCARD.txt @@ -0,0 +1,4 @@ +http://*.creditkarma.com +http://*.creditkarma.co.uk +https://*.creditkarma.ca +https://*.creditkarma.com diff --git a/src/creditkarma/note.txt b/src/creditkarma/note.txt new file mode 100644 index 0000000..d130468 --- /dev/null +++ b/src/creditkarma/note.txt @@ -0,0 +1 @@ +33616 https://hackerone.com/creditkarma Credit Karma creditkarma diff --git a/src/crowdstrike/APPLE_STORE_APP_ID.txt b/src/crowdstrike/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..178c12c --- /dev/null +++ b/src/crowdstrike/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +apps.apple.com/us/app/crowdstrike-falcon/id1458815656 diff --git a/src/crowdstrike/GOOGLE_PLAY_APP_ID.txt b/src/crowdstrike/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..66eef4a --- /dev/null +++ b/src/crowdstrike/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +play.google.com/store/apps/details?id=com.crowdstrike.falconmobile diff --git a/src/crowdstrike/OTHER.txt b/src/crowdstrike/OTHER.txt new file mode 100644 index 0000000..3da6c5d --- /dev/null +++ b/src/crowdstrike/OTHER.txt @@ -0,0 +1 @@ +CrowdStrike public infrastructure diff --git a/src/crowdstrike/URL.txt b/src/crowdstrike/URL.txt new file mode 100644 index 0000000..046ec0c --- /dev/null +++ b/src/crowdstrike/URL.txt @@ -0,0 +1,16 @@ +*.crowdstrike.com +www.crowdstrike.org +falcon-sandbox.com +hybrid-analysis.com +crowdstrike.de +crowdstrike.com.au +crowdstrike.co.uk +crowdstrike.fr +crowdstrike.jp +*.humio.com +crowdstrike.com.br +*.securecircle.com +www.crowdstrike.com +*.preempt.com +*.preemptsecurity.com +*.reposify.com diff --git a/src/crowdstrike/WILDCARD.txt b/src/crowdstrike/WILDCARD.txt new file mode 100644 index 0000000..c724d4f --- /dev/null +++ b/src/crowdstrike/WILDCARD.txt @@ -0,0 +1,13 @@ +http://*.crowdstrike.com +http://*.humio.com +http://*.securecircle.com +http://*.preempt.com +http://*.preemptsecurity.com +http://*.reposify.com +*.crowdstrike.com +*.humio.com +*.securecircle.com +*.preempt.com +*.preemptsecurity.com +*.reposify.com +*.bionic.ai diff --git a/src/crowdstrike/note.txt b/src/crowdstrike/note.txt new file mode 100644 index 0000000..0f36385 --- /dev/null +++ b/src/crowdstrike/note.txt @@ -0,0 +1 @@ +25172 https://hackerone.com/crowdstrike Crowdstrike crowdstrike diff --git a/src/crypto/API.txt b/src/crypto/API.txt new file mode 100644 index 0000000..f319ef1 --- /dev/null +++ b/src/crypto/API.txt @@ -0,0 +1,2 @@ +Crypto.com mobile app APIs that require an account +Crypto.com Exchange APIs that require an account diff --git a/src/crypto/APPLE_STORE_APP_ID.txt b/src/crypto/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..d68738a --- /dev/null +++ b/src/crypto/APPLE_STORE_APP_ID.txt @@ -0,0 +1,2 @@ +com.monaco.mobile +com.defi.wallet diff --git a/src/crypto/GOOGLE_PLAY_APP_ID.txt b/src/crypto/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..a57bd67 --- /dev/null +++ b/src/crypto/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1,2 @@ +co.mona.android +com.defi.wallet diff --git a/src/crypto/OTHER.txt b/src/crypto/OTHER.txt new file mode 100644 index 0000000..ff5e72d --- /dev/null +++ b/src/crypto/OTHER.txt @@ -0,0 +1 @@ +Crypto.com Wallet Extension diff --git a/src/crypto/SOURCE_CODE.txt b/src/crypto/SOURCE_CODE.txt new file mode 100644 index 0000000..99f8e6f --- /dev/null +++ b/src/crypto/SOURCE_CODE.txt @@ -0,0 +1,5 @@ + https://github.com/crypto-org-chain/chain-main +https://github.com/crypto-com/cro-staking +https://github.com/crypto-com/swap-contracts-periphery +https://github.com/crypto-com/swap-contracts-core +https://github.com/crypto-com/chain-desktop-wallet diff --git a/src/crypto/URL.txt b/src/crypto/URL.txt new file mode 100644 index 0000000..ec21db5 --- /dev/null +++ b/src/crypto/URL.txt @@ -0,0 +1,16 @@ +www.crypto.com +https://crypto.com/exchange +app.mona.co +https://auth.crypto.com/ +https://merchant.crypto.com +pay.crypto.com +js.crypto.com +https://crypto.com/defi/ +crypto.org +https://testnet-croeseid-4.crypto.org +tax.crypto.com +https://crypto.com/nft +auth.crypto.com +merchant.crypto.com +testnet-croeseid-4.crypto.org +https://crypto.com/price diff --git a/src/crypto/WILDCARD.txt b/src/crypto/WILDCARD.txt new file mode 100644 index 0000000..35dbc6c --- /dev/null +++ b/src/crypto/WILDCARD.txt @@ -0,0 +1,2 @@ +*.crypto.com +*.mona.co diff --git a/src/crypto/note.txt b/src/crypto/note.txt new file mode 100644 index 0000000..ca63060 --- /dev/null +++ b/src/crypto/note.txt @@ -0,0 +1 @@ +27759 https://hackerone.com/crypto Crypto.com crypto diff --git a/src/cs_money/URL.txt b/src/cs_money/URL.txt new file mode 100644 index 0000000..3ba168c --- /dev/null +++ b/src/cs_money/URL.txt @@ -0,0 +1,5 @@ +cs.money +support.cs.money +wiki.cs.money +3d.cs.money +blog.cs.money diff --git a/src/cs_money/note.txt b/src/cs_money/note.txt new file mode 100644 index 0000000..18363aa --- /dev/null +++ b/src/cs_money/note.txt @@ -0,0 +1 @@ +48311 https://hackerone.com/cs_money CS Money cs_money diff --git a/src/curl/SOURCE_CODE.txt b/src/curl/SOURCE_CODE.txt new file mode 100644 index 0000000..b1ffc39 --- /dev/null +++ b/src/curl/SOURCE_CODE.txt @@ -0,0 +1 @@ +https://github.com/curl/curl diff --git a/src/curl/note.txt b/src/curl/note.txt new file mode 100644 index 0000000..b8b2b49 --- /dev/null +++ b/src/curl/note.txt @@ -0,0 +1 @@ +35663 https://hackerone.com/curl curl curl diff --git a/src/curve/APPLE_STORE_APP_ID.txt b/src/curve/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..e2526c7 --- /dev/null +++ b/src/curve/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +1049397112 diff --git a/src/curve/GOOGLE_PLAY_APP_ID.txt b/src/curve/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..5993d54 --- /dev/null +++ b/src/curve/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.imaginecurve.curve.prd diff --git a/src/curve/URL.txt b/src/curve/URL.txt new file mode 100644 index 0000000..ae1bdf5 --- /dev/null +++ b/src/curve/URL.txt @@ -0,0 +1,4 @@ +api.imaginecurve.com +vpn.imaginecurve.com +curve.com +curve.app diff --git a/src/curve/note.txt b/src/curve/note.txt new file mode 100644 index 0000000..3450fd8 --- /dev/null +++ b/src/curve/note.txt @@ -0,0 +1 @@ +39838 https://hackerone.com/curve Curve curve diff --git a/src/cuvva/APPLE_STORE_APP_ID.txt b/src/cuvva/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..7d62e8e --- /dev/null +++ b/src/cuvva/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +979980804 diff --git a/src/cuvva/GOOGLE_PLAY_APP_ID.txt b/src/cuvva/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..5acf38a --- /dev/null +++ b/src/cuvva/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +co.cuvva.hourly diff --git a/src/cuvva/SOURCE_CODE.txt b/src/cuvva/SOURCE_CODE.txt new file mode 100644 index 0000000..4fd5901 --- /dev/null +++ b/src/cuvva/SOURCE_CODE.txt @@ -0,0 +1 @@ +https://github.com/cuvva/docs diff --git a/src/cuvva/URL.txt b/src/cuvva/URL.txt new file mode 100644 index 0000000..a371aa3 --- /dev/null +++ b/src/cuvva/URL.txt @@ -0,0 +1,6 @@ +api.prod.cuv-prod.app +wg.g.cuv-prod.app +underwriter.partner.cuvva.com +*.cuv-prod.app +ops.cuvva.com +www.cuvva.com diff --git a/src/cuvva/WILDCARD.txt b/src/cuvva/WILDCARD.txt new file mode 100644 index 0000000..05917eb --- /dev/null +++ b/src/cuvva/WILDCARD.txt @@ -0,0 +1,2 @@ +http://*.cuv-prod.app +*.cuv-prod.app diff --git a/src/cuvva/note.txt b/src/cuvva/note.txt new file mode 100644 index 0000000..0e0edb1 --- /dev/null +++ b/src/cuvva/note.txt @@ -0,0 +1 @@ +20680 https://hackerone.com/cuvva Cuvva cuvva diff --git a/src/daimler_truck/OTHER.txt b/src/daimler_truck/OTHER.txt new file mode 100644 index 0000000..d143140 --- /dev/null +++ b/src/daimler_truck/OTHER.txt @@ -0,0 +1,4 @@ +*.freightliner.com +All Apps published by Daimler Truck AG +Vehicles +*detroitconnect.com diff --git a/src/daimler_truck/URL.txt b/src/daimler_truck/URL.txt new file mode 100644 index 0000000..6a9941c --- /dev/null +++ b/src/daimler_truck/URL.txt @@ -0,0 +1,10 @@ +*.mercedes-benz-trucks.com +*.mitsubishi-fuso.com +*.westernstar.com +*.bharatbenz.com +*.setra.de +*.daimlertruck.com +*evobus.com +*omniplus.com +*fleetboard.de +*fleetboard.com diff --git a/src/daimler_truck/WILDCARD.txt b/src/daimler_truck/WILDCARD.txt new file mode 100644 index 0000000..b7ccbdf --- /dev/null +++ b/src/daimler_truck/WILDCARD.txt @@ -0,0 +1 @@ +*exceleratorparts.com diff --git a/src/daimler_truck/note.txt b/src/daimler_truck/note.txt new file mode 100644 index 0000000..a188069 --- /dev/null +++ b/src/daimler_truck/note.txt @@ -0,0 +1 @@ +57436 https://hackerone.com/daimler_truck Daimler Truck daimler_truck diff --git a/src/dashlane/APPLE_STORE_APP_ID.txt b/src/dashlane/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..dc7d676 --- /dev/null +++ b/src/dashlane/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +com.dashlane.dashlanephonefinal diff --git a/src/dashlane/DOWNLOADABLE_EXECUTABLES.txt b/src/dashlane/DOWNLOADABLE_EXECUTABLES.txt new file mode 100644 index 0000000..31d25e2 --- /dev/null +++ b/src/dashlane/DOWNLOADABLE_EXECUTABLES.txt @@ -0,0 +1,2 @@ +https://www.dashlane.com/fr/directdownload-v2?os=none&platform=website&target=archive_win +https://www.dashlane.com/fr/directdownload-v2?os=OS_X_10_12_6&platform=website&target=launcher_macosx diff --git a/src/dashlane/GOOGLE_PLAY_APP_ID.txt b/src/dashlane/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..402a97f --- /dev/null +++ b/src/dashlane/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.dashlane diff --git a/src/dashlane/OTHER.txt b/src/dashlane/OTHER.txt new file mode 100644 index 0000000..865561d --- /dev/null +++ b/src/dashlane/OTHER.txt @@ -0,0 +1 @@ +Standalone Chrome extension diff --git a/src/dashlane/SOURCE_CODE.txt b/src/dashlane/SOURCE_CODE.txt new file mode 100644 index 0000000..bc5bb97 --- /dev/null +++ b/src/dashlane/SOURCE_CODE.txt @@ -0,0 +1 @@ +SSO_Saml_connector diff --git a/src/dashlane/URL.txt b/src/dashlane/URL.txt new file mode 100644 index 0000000..07b8c4e --- /dev/null +++ b/src/dashlane/URL.txt @@ -0,0 +1,6 @@ +ws1.dashlane.com +www.dashlane.com +console.dashlane.com +app.dashlane.com +logs.dashlane.com +api.dashlane.com diff --git a/src/dashlane/WINDOWS_APP_STORE_APP_ID.txt b/src/dashlane/WINDOWS_APP_STORE_APP_ID.txt new file mode 100644 index 0000000..c659717 --- /dev/null +++ b/src/dashlane/WINDOWS_APP_STORE_APP_ID.txt @@ -0,0 +1 @@ +gehmmocbbkpblljhkekmfhjpfbkclbph diff --git a/src/dashlane/note.txt b/src/dashlane/note.txt new file mode 100644 index 0000000..5eee210 --- /dev/null +++ b/src/dashlane/note.txt @@ -0,0 +1 @@ +554 https://hackerone.com/dashlane Dashlane dashlane diff --git a/src/databricks/OTHER.txt b/src/databricks/OTHER.txt new file mode 100644 index 0000000..6f3d208 --- /dev/null +++ b/src/databricks/OTHER.txt @@ -0,0 +1,2 @@ +All other assets +All Other In-Scope Assets diff --git a/src/databricks/URL.txt b/src/databricks/URL.txt new file mode 100644 index 0000000..a5b982b --- /dev/null +++ b/src/databricks/URL.txt @@ -0,0 +1,50 @@ +databricks.com +https://dbc-a1ba5468-749b.staging.cloud.databricks.com,https://community.cloud.databricks.com/ +connect.databricks.com,databricks-staging-cloudfront.staging.cloud.databricks.com,docs-admin.databricks.com,docs-user.databricks.com,e.databricks.com,go.databricks.com,go.dev.databricks.com,homebrew-tap.dev.databricks.com,ideas.staging.databricks.com,info.databricks.com,it.corp.databricks.com,ok.databricks.com,pages.databricks.com,partnermarketing.databricks.com,signup.cloud.mrkt.databricks.com,signup.dev.mrkt.databricks.com,ssh.databricks.com,ssh.spark-summit.org,staging.spark-summit.org,tools.sec-sf.databricks.com,training.databricks.com,uberlyft-ns.dev.databricks.com,waf-test.corp.databricks.com,academy.databricks.com,accounts.cloud.databricks.com,databricks-prod-cloudfront.cloud.databricks.com,delta.io,demo.cloud.databricks.com,docs.cloud.databricks.com,docs.databricks.com,docs.delta.io,files.training.databricks.com,ftp.databricks.com,go.corp.databricks.com,gw1-ap.corp.databricks.com,gw1-eu.corp.databricks.com,gw1-us.corp.databricks.com,gw2-us.corp.databricks.com +help.corp.databricks.com,help.databricks.com,ideas.databricks.com,kb.azuredatabricks.net,kb.databricks.com,maintenance.databricks.com,partners.databricks.com,pgg11o.hubspot.databricks.com,preferences.databricks.com,sophos.corp.databricks.com,spark-portal.org,spark-summit.com,spark-summit.org,sparkhub.databricks.com,support.databricks.com,unsubscribe.corp.databricks.com,vpn-us.corp.databricks.com,www.databricks.com,www.sparkhub.databricks.com +academy.databricks.com +accounts.cloud.databricks.com +connect.databricks.com +databricks-prod-cloudfront.cloud.databricks.com +databricks-staging-cloudfront.staging.cloud.databricks.com +demo.cloud.databricks.com +docs.databricks.com +e.databricks.com +files.training.databricks.com +go.corp.databricks.com +gw1-ap.corp.databricks.com +gw1-eu.corp.databricks.com +gw1-us.corp.databricks.com +gw2-us.corp.databricks.com +help.databricks.com +homebrew-tap.dev.databricks.com +ideas.databricks.com +ideas.staging.databricks.com +info.databricks.com +kb.databricks.com +maintenance.databricks.com +pages.databricks.com +partners.databricks.com +pgg11o.hubspot.databricks.com +preferences.databricks.com +signup.cloud.mrkt.databricks.com +signup.dev.mrkt.databricks.com +sparkhub.databricks.com +support.databricks.com +unsubscribe.corp.databricks.com +vpn-us.corp.databricks.com +waf-test.corp.databricks.com +delta.io +docs.delta.io +spark-summit.org +staging.spark-summit.org +spark-portal.org +spark-summit.com +https://community.cloud.databricks.com/ +https://dbc-a1ba5468-749b.staging.cloud.databricks.com/ +advocates.databricks.com +community.databricks.com +customer-academy.databricks.com +labs.databricks.com +marketplace.databricks.com +https://dbc-9a3f8ed1-7608.cloud.databricks.com diff --git a/src/databricks/note.txt b/src/databricks/note.txt new file mode 100644 index 0000000..9832000 --- /dev/null +++ b/src/databricks/note.txt @@ -0,0 +1 @@ +24603 https://hackerone.com/databricks Databricks databricks diff --git a/src/datastax/DOWNLOADABLE_EXECUTABLES.txt b/src/datastax/DOWNLOADABLE_EXECUTABLES.txt new file mode 100644 index 0000000..f1aa41a --- /dev/null +++ b/src/datastax/DOWNLOADABLE_EXECUTABLES.txt @@ -0,0 +1 @@ +DSE, Opscenter diff --git a/src/datastax/URL.txt b/src/datastax/URL.txt new file mode 100644 index 0000000..2667724 --- /dev/null +++ b/src/datastax/URL.txt @@ -0,0 +1,8 @@ +https://www.datastax.com/ +https://downloads.datastax.com +https://docs.datastax.com/ +https://astra.datastax.com +www.datastax.com +downloads.datastax.com +docs.datastax.com +astra.datastax.com diff --git a/src/datastax/note.txt b/src/datastax/note.txt new file mode 100644 index 0000000..125555d --- /dev/null +++ b/src/datastax/note.txt @@ -0,0 +1 @@ +39487 https://hackerone.com/datastax DataStax datastax diff --git a/src/debtbook/URL.txt b/src/debtbook/URL.txt new file mode 100644 index 0000000..accf9be --- /dev/null +++ b/src/debtbook/URL.txt @@ -0,0 +1,3 @@ +app.debtbook.com +sources.debtbook.com +uat.debtbook.com diff --git a/src/debtbook/note.txt b/src/debtbook/note.txt new file mode 100644 index 0000000..fe76b89 --- /dev/null +++ b/src/debtbook/note.txt @@ -0,0 +1 @@ +53191 https://hackerone.com/debtbook DebtBook debtbook diff --git a/src/deconf_com/SOURCE_CODE.txt b/src/deconf_com/SOURCE_CODE.txt new file mode 100644 index 0000000..884f73f --- /dev/null +++ b/src/deconf_com/SOURCE_CODE.txt @@ -0,0 +1 @@ +https://github.com/deconf/Google-Analytics-Dashboard-for-WP diff --git a/src/deconf_com/note.txt b/src/deconf_com/note.txt new file mode 100644 index 0000000..8b55abd --- /dev/null +++ b/src/deconf_com/note.txt @@ -0,0 +1 @@ +22998 https://hackerone.com/deconf_com Deconf deconf_com diff --git a/src/defectdojo/SOURCE_CODE.txt b/src/defectdojo/SOURCE_CODE.txt new file mode 100644 index 0000000..433b7a6 --- /dev/null +++ b/src/defectdojo/SOURCE_CODE.txt @@ -0,0 +1 @@ +https://github.com/DefectDojo/django-DefectDojo diff --git a/src/defectdojo/note.txt b/src/defectdojo/note.txt new file mode 100644 index 0000000..e6903f3 --- /dev/null +++ b/src/defectdojo/note.txt @@ -0,0 +1 @@ +33317 https://hackerone.com/defectdojo DefectDojo defectdojo diff --git a/src/delight_im/GOOGLE_PLAY_APP_ID.txt b/src/delight_im/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..3bf7f29 --- /dev/null +++ b/src/delight_im/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +im.delight.letters diff --git a/src/delight_im/SOURCE_CODE.txt b/src/delight_im/SOURCE_CODE.txt new file mode 100644 index 0000000..90bd4b2 --- /dev/null +++ b/src/delight_im/SOURCE_CODE.txt @@ -0,0 +1 @@ +https://github.com/delight-im diff --git a/src/delight_im/URL.txt b/src/delight_im/URL.txt new file mode 100644 index 0000000..6bcec7f --- /dev/null +++ b/src/delight_im/URL.txt @@ -0,0 +1,6 @@ +moviecontentfilter.com +www.moviecontentfilter.com +briefe.io +www.briefe.io +delight.im +www.delight.im diff --git a/src/delight_im/note.txt b/src/delight_im/note.txt new file mode 100644 index 0000000..87d241d --- /dev/null +++ b/src/delight_im/note.txt @@ -0,0 +1 @@ +21953 https://hackerone.com/delight_im delight.im delight_im diff --git a/src/deliveroo/APPLE_STORE_APP_ID.txt b/src/deliveroo/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..5332386 --- /dev/null +++ b/src/deliveroo/APPLE_STORE_APP_ID.txt @@ -0,0 +1,2 @@ +com.deliveroo.orderapp +com.deliveroo.riderapp diff --git a/src/deliveroo/GOOGLE_PLAY_APP_ID.txt b/src/deliveroo/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..0132828 --- /dev/null +++ b/src/deliveroo/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1,2 @@ +com.deliveroo.orderapp +com.deliveroo.driverapp diff --git a/src/deliveroo/OTHER.txt b/src/deliveroo/OTHER.txt new file mode 100644 index 0000000..9ee429c --- /dev/null +++ b/src/deliveroo/OTHER.txt @@ -0,0 +1,5 @@ +*.deliveroo-data.net +*.deliveroo-data.io +*.deliveroo-data-test.io +*.deliveroo.* +*.deliveroo-streams.net diff --git a/src/deliveroo/URL.txt b/src/deliveroo/URL.txt new file mode 100644 index 0000000..7d06ccf --- /dev/null +++ b/src/deliveroo/URL.txt @@ -0,0 +1,6 @@ +*.deliveroo-data.net +*.deliveroo-data.io +*.deliveroo-data-test.io +*.deliveroo.* +*.deliveroo-streams.net +https://deliveroo.co.uk diff --git a/src/deliveroo/WILDCARD.txt b/src/deliveroo/WILDCARD.txt new file mode 100644 index 0000000..073b105 --- /dev/null +++ b/src/deliveroo/WILDCARD.txt @@ -0,0 +1,12 @@ +api.*.deliveroo.com +*.deliveroo.co.uk +*.deliveroo.fr +*.deliveroo.be +*.deliveroo.ie +*.deliveroo.it +*.deliveroo.com.hk +*.deliveroo.com.kw +*.deliveroo.com.qa +*.deliveroo.com.sg +*.deliveroo.ae +*.deliveroo.hk diff --git a/src/deliveroo/note.txt b/src/deliveroo/note.txt new file mode 100644 index 0000000..5e637e7 --- /dev/null +++ b/src/deliveroo/note.txt @@ -0,0 +1 @@ +11788 https://hackerone.com/deliveroo Deliveroo deliveroo diff --git a/src/deliveryhero/OTHER.txt b/src/deliveryhero/OTHER.txt new file mode 100644 index 0000000..f214494 --- /dev/null +++ b/src/deliveryhero/OTHER.txt @@ -0,0 +1,17 @@ +Delivery Hero +Foodpanda +Foodora +Hungerstation +Yemeksepeti +mjam +InstaShop +Talabat +DámeJídlo.cz +Baedal Minjok +foody +efood.gr +PedidosYa +Glovo +Tabsquare +Instashop +Woowabros diff --git a/src/deliveryhero/note.txt b/src/deliveryhero/note.txt new file mode 100644 index 0000000..c6c8e37 --- /dev/null +++ b/src/deliveryhero/note.txt @@ -0,0 +1 @@ +57325 https://hackerone.com/deliveryhero Delivery Hero deliveryhero diff --git a/src/deptofdefense/note.txt b/src/deptofdefense/note.txt new file mode 100644 index 0000000..2acb7c5 --- /dev/null +++ b/src/deptofdefense/note.txt @@ -0,0 +1 @@ +16064 https://hackerone.com/deptofdefense U.S. Dept Of Defense deptofdefense diff --git a/src/deribit/APPLE_STORE_APP_ID.txt b/src/deribit/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..acda361 --- /dev/null +++ b/src/deribit/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +1293674041 diff --git a/src/deribit/GOOGLE_PLAY_APP_ID.txt b/src/deribit/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..c75cb47 --- /dev/null +++ b/src/deribit/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.deribit diff --git a/src/deribit/OTHER.txt b/src/deribit/OTHER.txt new file mode 100644 index 0000000..d2ebafe --- /dev/null +++ b/src/deribit/OTHER.txt @@ -0,0 +1,2 @@ +Tier 1 +Tier 2 diff --git a/src/deribit/URL.txt b/src/deribit/URL.txt new file mode 100644 index 0000000..10efcf7 --- /dev/null +++ b/src/deribit/URL.txt @@ -0,0 +1,6 @@ +test.deribit.com +insights.deribit.com +pb.deribit.com +*.deribit.com +tools.deribit.com +metrics.deribit.com diff --git a/src/deribit/WILDCARD.txt b/src/deribit/WILDCARD.txt new file mode 100644 index 0000000..e12a2d5 --- /dev/null +++ b/src/deribit/WILDCARD.txt @@ -0,0 +1,2 @@ +http://*.deribit.com +*.deribit.com diff --git a/src/deribit/note.txt b/src/deribit/note.txt new file mode 100644 index 0000000..5448bf1 --- /dev/null +++ b/src/deribit/note.txt @@ -0,0 +1 @@ +56118 https://hackerone.com/deribit Deribit deribit diff --git a/src/deriv/OTHER.txt b/src/deriv/OTHER.txt new file mode 100644 index 0000000..a73a6cf --- /dev/null +++ b/src/deriv/OTHER.txt @@ -0,0 +1 @@ +github.com/deriv-com diff --git a/src/deriv/SOURCE_CODE.txt b/src/deriv/SOURCE_CODE.txt new file mode 100644 index 0000000..0124e48 --- /dev/null +++ b/src/deriv/SOURCE_CODE.txt @@ -0,0 +1 @@ +github.com/binary-com diff --git a/src/deriv/URL.txt b/src/deriv/URL.txt new file mode 100644 index 0000000..def6e5c --- /dev/null +++ b/src/deriv/URL.txt @@ -0,0 +1,14 @@ +cashier.binary.com +crypto-cashier.binary.com +secure-dfadmin.binary.com +app.deriv.com +smarttrader.deriv.com +cashier.deriv.com +webtrader.binary.com +binary.bot +tradingview.binary.com +charts.binary.com +oauth.deriv.com +api.deriv.com +derivws.com +secure-dfadmin.deriv.com diff --git a/src/deriv/WILDCARD.txt b/src/deriv/WILDCARD.txt new file mode 100644 index 0000000..82f3251 --- /dev/null +++ b/src/deriv/WILDCARD.txt @@ -0,0 +1,9 @@ +http://*.binaryws.com +http://*.deriv.com +http://*.deriv.cloud +http://*.binary.com +*.binaryws.com +*.deriv.com +*.deriv.cloud +*.binary.com +*.derivws.com diff --git a/src/deriv/note.txt b/src/deriv/note.txt new file mode 100644 index 0000000..646f2be --- /dev/null +++ b/src/deriv/note.txt @@ -0,0 +1 @@ +2706 https://hackerone.com/deriv Deriv.com deriv diff --git a/src/diem/OTHER.txt b/src/diem/OTHER.txt new file mode 100644 index 0000000..4835b6f --- /dev/null +++ b/src/diem/OTHER.txt @@ -0,0 +1 @@ +All Diem owned assets diff --git a/src/diem/SOURCE_CODE.txt b/src/diem/SOURCE_CODE.txt new file mode 100644 index 0000000..0a676fb --- /dev/null +++ b/src/diem/SOURCE_CODE.txt @@ -0,0 +1 @@ +https://github.com/diem/diem/ diff --git a/src/diem/note.txt b/src/diem/note.txt new file mode 100644 index 0000000..95b73e5 --- /dev/null +++ b/src/diem/note.txt @@ -0,0 +1 @@ +40428 https://hackerone.com/diem Diem diem diff --git a/src/digitalocean/OTHER.txt b/src/digitalocean/OTHER.txt new file mode 100644 index 0000000..dae59a9 --- /dev/null +++ b/src/digitalocean/OTHER.txt @@ -0,0 +1 @@ +DigitalOcean products associated with an account you created (e.g. droplets, load balancers, etc.) diff --git a/src/digitalocean/SOURCE_CODE.txt b/src/digitalocean/SOURCE_CODE.txt new file mode 100644 index 0000000..b79d4c7 --- /dev/null +++ b/src/digitalocean/SOURCE_CODE.txt @@ -0,0 +1,5 @@ +https://github.com/digitalocean/doctl +https://github.com/digitalocean/do-agent +https://github.com/digitalocean/droplet-agent +https://github.com/digitalocean/terraform-provider-digitalocean +https://github.com/digitalocean/do-markdownit diff --git a/src/digitalocean/URL.txt b/src/digitalocean/URL.txt new file mode 100644 index 0000000..e1fe9fa --- /dev/null +++ b/src/digitalocean/URL.txt @@ -0,0 +1,20 @@ +https://cloud.digitalocean.com/ +https://api.digitalocean.com/ +https://marketplace.digitalocean.com/ +https://business.digitalocean.com/ +*.digitalocean.com +*.digitaloceanspaces.com +http://169.254.169.254/ +cloud.digitalocean.com +api.digitalocean.com +marketplace.digitalocean.com +do.co +hacktoberfest.com +www.digitalocean.com +hackathon-tracker.digitalocean.com +169.254.169.254 +api.cloudways.com +developers.cloudways.com +platform.cloudways.com +www.cloudways.com +unified.cloudways.com diff --git a/src/digitalocean/WILDCARD.txt b/src/digitalocean/WILDCARD.txt new file mode 100644 index 0000000..66b2135 --- /dev/null +++ b/src/digitalocean/WILDCARD.txt @@ -0,0 +1,2 @@ +http://*.digitalocean.com +*.digitalocean.com diff --git a/src/digitalocean/note.txt b/src/digitalocean/note.txt new file mode 100644 index 0000000..4ea9cc1 --- /dev/null +++ b/src/digitalocean/note.txt @@ -0,0 +1 @@ +47236 https://hackerone.com/digitalocean DigitalOcean digitalocean diff --git a/src/digitalsellz/note.txt b/src/digitalsellz/note.txt new file mode 100644 index 0000000..96b91b3 --- /dev/null +++ b/src/digitalsellz/note.txt @@ -0,0 +1 @@ +293 https://hackerone.com/digitalsellz DigitalSellz digitalsellz diff --git a/src/discourse/SOURCE_CODE.txt b/src/discourse/SOURCE_CODE.txt new file mode 100644 index 0000000..7261c84 --- /dev/null +++ b/src/discourse/SOURCE_CODE.txt @@ -0,0 +1 @@ +https://github.com/discourse/discourse diff --git a/src/discourse/URL.txt b/src/discourse/URL.txt new file mode 100644 index 0000000..07c5d7a --- /dev/null +++ b/src/discourse/URL.txt @@ -0,0 +1 @@ +try.discourse.org diff --git a/src/discourse/note.txt b/src/discourse/note.txt new file mode 100644 index 0000000..dab048f --- /dev/null +++ b/src/discourse/note.txt @@ -0,0 +1 @@ +16893 https://hackerone.com/discourse Discourse discourse diff --git a/src/disney/URL.txt b/src/disney/URL.txt new file mode 100644 index 0000000..66a7537 --- /dev/null +++ b/src/disney/URL.txt @@ -0,0 +1,6 @@ +disneyvacationclub.go.disney.com +dvc-lightcycle-api.wdprapps.disney.com +abcspotdepot.com +www.magicalphotos.cn +www.shanghaidisneyresort.com +www.shanghaidisneyresort.com.cn diff --git a/src/disney/note.txt b/src/disney/note.txt new file mode 100644 index 0000000..1416023 --- /dev/null +++ b/src/disney/note.txt @@ -0,0 +1 @@ +54981 https://hackerone.com/disney The Walt Disney Company disney diff --git a/src/divvy-homes/APPLE_STORE_APP_ID.txt b/src/divvy-homes/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..1446241 --- /dev/null +++ b/src/divvy-homes/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +com.divvyapp.io diff --git a/src/divvy-homes/GOOGLE_PLAY_APP_ID.txt b/src/divvy-homes/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..1446241 --- /dev/null +++ b/src/divvy-homes/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.divvyapp.io diff --git a/src/divvy-homes/URL.txt b/src/divvy-homes/URL.txt new file mode 100644 index 0000000..5ee1bb4 --- /dev/null +++ b/src/divvy-homes/URL.txt @@ -0,0 +1 @@ +www.divvyhomes.com diff --git a/src/divvy-homes/note.txt b/src/divvy-homes/note.txt new file mode 100644 index 0000000..e34b63b --- /dev/null +++ b/src/divvy-homes/note.txt @@ -0,0 +1 @@ +55090 https://hackerone.com/divvy-homes Divvy Homes divvy-homes diff --git a/src/django/note.txt b/src/django/note.txt new file mode 100644 index 0000000..26d2683 --- /dev/null +++ b/src/django/note.txt @@ -0,0 +1 @@ +23 https://hackerone.com/django Django django diff --git a/src/doppler-bbp/note.txt b/src/doppler-bbp/note.txt new file mode 100644 index 0000000..b5e0d6c --- /dev/null +++ b/src/doppler-bbp/note.txt @@ -0,0 +1 @@ +50767 https://hackerone.com/doppler-bbp Doppler BBP doppler-bbp diff --git a/src/doppler-vdp/note.txt b/src/doppler-vdp/note.txt new file mode 100644 index 0000000..a823446 --- /dev/null +++ b/src/doppler-vdp/note.txt @@ -0,0 +1 @@ +44515 https://hackerone.com/doppler-vdp Doppler VDP doppler-vdp diff --git a/src/doppler/DOWNLOADABLE_EXECUTABLES.txt b/src/doppler/DOWNLOADABLE_EXECUTABLES.txt new file mode 100644 index 0000000..2daba3e --- /dev/null +++ b/src/doppler/DOWNLOADABLE_EXECUTABLES.txt @@ -0,0 +1 @@ +doppler diff --git a/src/doppler/SOURCE_CODE.txt b/src/doppler/SOURCE_CODE.txt new file mode 100644 index 0000000..a70b675 --- /dev/null +++ b/src/doppler/SOURCE_CODE.txt @@ -0,0 +1 @@ +https://github.com/DopplerHQ/cli diff --git a/src/doppler/URL.txt b/src/doppler/URL.txt new file mode 100644 index 0000000..07ba88c --- /dev/null +++ b/src/doppler/URL.txt @@ -0,0 +1,4 @@ +doppler.team +api.doppler.com +dashboard.doppler.com +share.doppler.com diff --git a/src/doppler/note.txt b/src/doppler/note.txt new file mode 100644 index 0000000..7fdbf9f --- /dev/null +++ b/src/doppler/note.txt @@ -0,0 +1,2 @@ +44515 https://hackerone.com/doppler Doppler doppler +50767 https://hackerone.com/doppler Doppler doppler diff --git a/src/drchrono/note.txt b/src/drchrono/note.txt new file mode 100644 index 0000000..4afae69 --- /dev/null +++ b/src/drchrono/note.txt @@ -0,0 +1 @@ +1492 https://hackerone.com/drchrono drchrono drchrono diff --git a/src/drive_net_inc/URL.txt b/src/drive_net_inc/URL.txt new file mode 100644 index 0000000..caf3e3f --- /dev/null +++ b/src/drive_net_inc/URL.txt @@ -0,0 +1,4 @@ +www.drive2.ru +api.drive2.ru +*.d-cd.net +*.drive2.ru diff --git a/src/drive_net_inc/WILDCARD.txt b/src/drive_net_inc/WILDCARD.txt new file mode 100644 index 0000000..ef0a414 --- /dev/null +++ b/src/drive_net_inc/WILDCARD.txt @@ -0,0 +1,4 @@ +http://*.d-cd.net +http://*.drive2.ru +*.d-cd.net +*.drive2.ru diff --git a/src/drive_net_inc/note.txt b/src/drive_net_inc/note.txt new file mode 100644 index 0000000..c494249 --- /dev/null +++ b/src/drive_net_inc/note.txt @@ -0,0 +1 @@ +14633 https://hackerone.com/drive_net_inc DRIVE.NET, Inc. drive_net_inc diff --git a/src/dropbox/APPLE_STORE_APP_ID.txt b/src/dropbox/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..40dfc34 --- /dev/null +++ b/src/dropbox/APPLE_STORE_APP_ID.txt @@ -0,0 +1,4 @@ +com.getdropbox.Dropbox +com.dropbox.paper +com.getdropbox.DropboxEMM +com.getdropbox.Passwords diff --git a/src/dropbox/DOWNLOADABLE_EXECUTABLES.txt b/src/dropbox/DOWNLOADABLE_EXECUTABLES.txt new file mode 100644 index 0000000..0f4076e --- /dev/null +++ b/src/dropbox/DOWNLOADABLE_EXECUTABLES.txt @@ -0,0 +1 @@ +Dropbox Desktop diff --git a/src/dropbox/GOOGLE_PLAY_APP_ID.txt b/src/dropbox/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..b2e82f5 --- /dev/null +++ b/src/dropbox/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1,3 @@ +com.dropbox.android +com.dropbox.paper +com.dropbox.passwords_android diff --git a/src/dropbox/OTHER.txt b/src/dropbox/OTHER.txt new file mode 100644 index 0000000..f8f7621 --- /dev/null +++ b/src/dropbox/OTHER.txt @@ -0,0 +1 @@ +https://appexchange.salesforce.com/appxListingDetail?listingId=a0N3A00000EFmGIUA1 diff --git a/src/dropbox/URL.txt b/src/dropbox/URL.txt new file mode 100644 index 0000000..0e9d82f --- /dev/null +++ b/src/dropbox/URL.txt @@ -0,0 +1,11 @@ +www.dropbox.com +paper.dropbox.com +showcase.dropbox.com +app.hellosign.com +api.hellosign.com +api.helloworks.com +portal.helloworks.com +app.hellofax.com +api.hellofax.com +dropbox.com/passwords +dropboxforum.com diff --git a/src/dropbox/note.txt b/src/dropbox/note.txt new file mode 100644 index 0000000..87f7d91 --- /dev/null +++ b/src/dropbox/note.txt @@ -0,0 +1 @@ +461 https://hackerone.com/dropbox Dropbox dropbox diff --git a/src/dropcontact/URL.txt b/src/dropcontact/URL.txt new file mode 100644 index 0000000..241d82c --- /dev/null +++ b/src/dropcontact/URL.txt @@ -0,0 +1 @@ +app.dropcontact.io diff --git a/src/dropcontact/note.txt b/src/dropcontact/note.txt new file mode 100644 index 0000000..319fa37 --- /dev/null +++ b/src/dropcontact/note.txt @@ -0,0 +1 @@ +49538 https://hackerone.com/dropcontact Dropcontact dropcontact diff --git a/src/drugs_com/URL.txt b/src/drugs_com/URL.txt new file mode 100644 index 0000000..7b9cab3 --- /dev/null +++ b/src/drugs_com/URL.txt @@ -0,0 +1,6 @@ +www.drugs.com +newsletters.drugs.com +blog.drugs.com +www.medicine.com +www.question.com +www.woolshed.com diff --git a/src/drugs_com/note.txt b/src/drugs_com/note.txt new file mode 100644 index 0000000..f488156 --- /dev/null +++ b/src/drugs_com/note.txt @@ -0,0 +1 @@ +12340 https://hackerone.com/drugs_com Drugs.com drugs_com diff --git a/src/duckduckgo/APPLE_STORE_APP_ID.txt b/src/duckduckgo/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..e2c67bf --- /dev/null +++ b/src/duckduckgo/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +com.duckduckgo.mobile.ios diff --git a/src/duckduckgo/GOOGLE_PLAY_APP_ID.txt b/src/duckduckgo/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..539d439 --- /dev/null +++ b/src/duckduckgo/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.duckduckgo.mobile.android diff --git a/src/duckduckgo/SOURCE_CODE.txt b/src/duckduckgo/SOURCE_CODE.txt new file mode 100644 index 0000000..26fbc2b --- /dev/null +++ b/src/duckduckgo/SOURCE_CODE.txt @@ -0,0 +1 @@ +https://github.com/duckduckgo/duckduckgo-privacy-extension diff --git a/src/duckduckgo/URL.txt b/src/duckduckgo/URL.txt new file mode 100644 index 0000000..f6d4e3a --- /dev/null +++ b/src/duckduckgo/URL.txt @@ -0,0 +1 @@ +*.duckduckgo.com diff --git a/src/duckduckgo/WILDCARD.txt b/src/duckduckgo/WILDCARD.txt new file mode 100644 index 0000000..32b9f08 --- /dev/null +++ b/src/duckduckgo/WILDCARD.txt @@ -0,0 +1,2 @@ +http://*.duckduckgo.com +*.duckduckgo.com diff --git a/src/duckduckgo/note.txt b/src/duckduckgo/note.txt new file mode 100644 index 0000000..fccf288 --- /dev/null +++ b/src/duckduckgo/note.txt @@ -0,0 +1 @@ +10995 https://hackerone.com/duckduckgo DuckDuckGo duckduckgo diff --git a/src/dynamic_labs/URL.txt b/src/dynamic_labs/URL.txt new file mode 100644 index 0000000..656c54e --- /dev/null +++ b/src/dynamic_labs/URL.txt @@ -0,0 +1,3 @@ +app.dynamic-preprod.xyz +demo.dynamic.xyz +app.dynamic.xyz diff --git a/src/dynamic_labs/note.txt b/src/dynamic_labs/note.txt new file mode 100644 index 0000000..260a4e6 --- /dev/null +++ b/src/dynamic_labs/note.txt @@ -0,0 +1 @@ +57935 https://hackerone.com/dynamic_labs Dynamic Labs dynamic_labs diff --git a/src/dynatrace/DOWNLOADABLE_EXECUTABLES.txt b/src/dynatrace/DOWNLOADABLE_EXECUTABLES.txt new file mode 100644 index 0000000..4823b83 --- /dev/null +++ b/src/dynatrace/DOWNLOADABLE_EXECUTABLES.txt @@ -0,0 +1,3 @@ +Dynatrace OneAgent +Dynatrace ActiveGate +Dynatrace MobileAgent diff --git a/src/dynatrace/OTHER.txt b/src/dynatrace/OTHER.txt new file mode 100644 index 0000000..25bcd30 --- /dev/null +++ b/src/dynatrace/OTHER.txt @@ -0,0 +1,2 @@ +All other Assets +Core Assets diff --git a/src/dynatrace/SOURCE_CODE.txt b/src/dynatrace/SOURCE_CODE.txt new file mode 100644 index 0000000..f8cad43 --- /dev/null +++ b/src/dynatrace/SOURCE_CODE.txt @@ -0,0 +1,3 @@ +https://github.com/Dynatrace-innovationlab +https://github.com/Dynatrace +https://github.com/Dynatrace-oss-contrib diff --git a/src/dynatrace/URL.txt b/src/dynatrace/URL.txt new file mode 100644 index 0000000..991889f --- /dev/null +++ b/src/dynatrace/URL.txt @@ -0,0 +1,4 @@ +account-sprint.dynatracelabs.com +sso-sprint.dynatracelabs.com +university-staging.dynatracelabs.com +myaccount-hardening.dynatracelabs.com diff --git a/src/dynatrace/WILDCARD.txt b/src/dynatrace/WILDCARD.txt new file mode 100644 index 0000000..3931c9e --- /dev/null +++ b/src/dynatrace/WILDCARD.txt @@ -0,0 +1,2 @@ +*.sprint.dynatracelabs.com +*.sprint.apps.dynatracelabs.com diff --git a/src/dynatrace/note.txt b/src/dynatrace/note.txt new file mode 100644 index 0000000..6f9ecbb --- /dev/null +++ b/src/dynatrace/note.txt @@ -0,0 +1 @@ +39572 https://hackerone.com/dynatrace Dynatrace dynatrace diff --git a/src/dyson/APPLE_STORE_APP_ID.txt b/src/dyson/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..63d66a0 --- /dev/null +++ b/src/dyson/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +993135524 diff --git a/src/dyson/GOOGLE_PLAY_APP_ID.txt b/src/dyson/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..f4592fd --- /dev/null +++ b/src/dyson/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.dyson.mobile.android diff --git a/src/dyson/HARDWARE.txt b/src/dyson/HARDWARE.txt new file mode 100644 index 0000000..a5c478e --- /dev/null +++ b/src/dyson/HARDWARE.txt @@ -0,0 +1 @@ +Dyson Connected Products (IoT Hardware) diff --git a/src/dyson/OTHER.txt b/src/dyson/OTHER.txt new file mode 100644 index 0000000..bad3a2a --- /dev/null +++ b/src/dyson/OTHER.txt @@ -0,0 +1,3 @@ +*.dyson.com +Other Dyson Assets +Github findings diff --git a/src/dyson/URL.txt b/src/dyson/URL.txt new file mode 100644 index 0000000..03a1bb9 --- /dev/null +++ b/src/dyson/URL.txt @@ -0,0 +1,61 @@ +www.dyson.co.uk +www.dyson.com +www.dysoncanada.ca +www.dyson.it +www.dyson.ie +www.dyson.ch +www.dyson.se +www.dyson.nl +www.dyson.at +www.dyson.be +www.dyson.pt +www.dyson.de +www.dyson.fr +www.dyson.no +www.dyson.dk +www.dyson.es +www.fi.dyson.com +api.dyson.se +api.dysoncanada.ca +api.dyson.dk +api.dyson.it +api.dyson.es +api.dyson.co.uk +api.dyson.at +api.dyson.nl +api.dyson.be +api.dyson.pt +api.dyson.no +api.dyson.de +api.dyson.ch +api.dyson.fr +api.dyson.ie +api.dyson.com +api.fi.dyson.com +www.dyson.pl +www.dyson.in +www.dyson.com.mx +www.dyson.com.sg +www.dyson.co.kr +www.dyson.co.nz +www.dyson.com.tr +www.dyson.ae +www.dyson.co.il +www.dyson.com.au +www.dyson.hk +www.dyson.co.th +www.dyson.my +shop.dyson.co.za +www.sa.dyson.com +www.dyson.cz +www.dyson.hu +www.dyson.co.jp +www.dyson.com.ro +www.dyson.vn +*.cp.dyson.com +www.dyson.cn +shop.dyson.ru +www.dyson.com.ua +shop.dyson.tw +www.dyson.tw +www.gr.dyson.com diff --git a/src/dyson/WILDCARD.txt b/src/dyson/WILDCARD.txt new file mode 100644 index 0000000..5bb0a43 --- /dev/null +++ b/src/dyson/WILDCARD.txt @@ -0,0 +1 @@ +*.dyson.com diff --git a/src/dyson/note.txt b/src/dyson/note.txt new file mode 100644 index 0000000..ad5d16f --- /dev/null +++ b/src/dyson/note.txt @@ -0,0 +1 @@ +9322 https://hackerone.com/dyson Dyson dyson diff --git a/src/early_warning/APPLE_STORE_APP_ID.txt b/src/early_warning/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..07d3952 --- /dev/null +++ b/src/early_warning/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +com.zellepay.zelle diff --git a/src/early_warning/GOOGLE_PLAY_APP_ID.txt b/src/early_warning/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..07d3952 --- /dev/null +++ b/src/early_warning/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.zellepay.zelle diff --git a/src/early_warning/URL.txt b/src/early_warning/URL.txt new file mode 100644 index 0000000..2a589c6 --- /dev/null +++ b/src/early_warning/URL.txt @@ -0,0 +1,11 @@ +api.zellepay.com +api.zmsp.earlywarning.com +platformtest.cat.earlywarning.io +https://mywallet-management-east.wallet.cat.earlywarning.io/ +https://mywallet-management-west.wallet.cat.earlywarning.io/ +https://sandbox.digitalwallet.earlywarning.com +earlywarningapi.force.com +zellepay.force.com +zelleservice.my.site.com +ews-fusion.my.site.com +platform.cat.earlywarning.io diff --git a/src/early_warning/WILDCARD.txt b/src/early_warning/WILDCARD.txt new file mode 100644 index 0000000..e0c99b6 --- /dev/null +++ b/src/early_warning/WILDCARD.txt @@ -0,0 +1,7 @@ +*.zellepay.com +*.earlywarning.com +*.clearxchange.com +developer*.earlywarning.com +support*.earlywarning.com +api.zmsp.*.earlywarning.io +*.zelle.com diff --git a/src/early_warning/note.txt b/src/early_warning/note.txt new file mode 100644 index 0000000..f7a4532 --- /dev/null +++ b/src/early_warning/note.txt @@ -0,0 +1 @@ +37035 https://hackerone.com/early_warning Early Warning early_warning diff --git a/src/earny/APPLE_STORE_APP_ID.txt b/src/earny/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..096d2d3 --- /dev/null +++ b/src/earny/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +1070049375 diff --git a/src/earny/GOOGLE_PLAY_APP_ID.txt b/src/earny/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..b65dc9c --- /dev/null +++ b/src/earny/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.earny.android diff --git a/src/earny/URL.txt b/src/earny/URL.txt new file mode 100644 index 0000000..b5ffff5 --- /dev/null +++ b/src/earny/URL.txt @@ -0,0 +1,3 @@ +www.earny.co +api.earny.com +www.earny.com diff --git a/src/earny/note.txt b/src/earny/note.txt new file mode 100644 index 0000000..eca18ac --- /dev/null +++ b/src/earny/note.txt @@ -0,0 +1 @@ +44163 https://hackerone.com/earny Earny earny diff --git a/src/ed/OTHER.txt b/src/ed/OTHER.txt new file mode 100644 index 0000000..e33e035 --- /dev/null +++ b/src/ed/OTHER.txt @@ -0,0 +1 @@ +BBAC diff --git a/src/ed/SOURCE_CODE.txt b/src/ed/SOURCE_CODE.txt new file mode 100644 index 0000000..777d6dc --- /dev/null +++ b/src/ed/SOURCE_CODE.txt @@ -0,0 +1,2 @@ +https://github.com/EdOverflow/* +https://github.com/securitytxt/* diff --git a/src/ed/URL.txt b/src/ed/URL.txt new file mode 100644 index 0000000..eda7da1 --- /dev/null +++ b/src/ed/URL.txt @@ -0,0 +1,6 @@ +https://securitytxt.org/ +https://edoverflow.com/ +https://bugbountyguide.com/ +securitytxt.org +edoverflow.com +bugbountyguide.com diff --git a/src/ed/note.txt b/src/ed/note.txt new file mode 100644 index 0000000..d01f5a2 --- /dev/null +++ b/src/ed/note.txt @@ -0,0 +1 @@ +24342 https://hackerone.com/ed Ed ed diff --git a/src/eero/APPLE_STORE_APP_ID.txt b/src/eero/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..d4bc42a --- /dev/null +++ b/src/eero/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +1023499075 diff --git a/src/eero/GOOGLE_PLAY_APP_ID.txt b/src/eero/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..64608ca --- /dev/null +++ b/src/eero/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.eero.android diff --git a/src/eero/HARDWARE.txt b/src/eero/HARDWARE.txt new file mode 100644 index 0000000..e828035 --- /dev/null +++ b/src/eero/HARDWARE.txt @@ -0,0 +1,8 @@ +eero Pro (2nd Generation) +eero Beacon (2nd Generation) +eero (2nd Generation) +eero 6 (3rd Generation) +eero 6 Extender (3rd Generation) +eero 6 Pro +eero 6+ (4th Gen) +eero 6E Pro (4th Gen) diff --git a/src/eero/OTHER.txt b/src/eero/OTHER.txt new file mode 100644 index 0000000..e0fef7e --- /dev/null +++ b/src/eero/OTHER.txt @@ -0,0 +1,2 @@ +https://node.e2ro.com/* +https://api-user.e2ro.com/* diff --git a/src/eero/URL.txt b/src/eero/URL.txt new file mode 100644 index 0000000..dd94bbf --- /dev/null +++ b/src/eero/URL.txt @@ -0,0 +1,2 @@ +node.e2ro.com/* +api-user.e2ro.com/* diff --git a/src/eero/note.txt b/src/eero/note.txt new file mode 100644 index 0000000..57ef990 --- /dev/null +++ b/src/eero/note.txt @@ -0,0 +1,2 @@ +62568 https://hackerone.com/eero Eero eero +62568 https://hackerone.com/eero eero eero diff --git a/src/egress-vdp/URL.txt b/src/egress-vdp/URL.txt new file mode 100644 index 0000000..7b334ce --- /dev/null +++ b/src/egress-vdp/URL.txt @@ -0,0 +1,5 @@ +reader.egress.com +switch.egress.com +www.egress.com +reader.vdp-egress.com +switch.vdp-egress.com diff --git a/src/egress-vdp/WILDCARD.txt b/src/egress-vdp/WILDCARD.txt new file mode 100644 index 0000000..e2601db --- /dev/null +++ b/src/egress-vdp/WILDCARD.txt @@ -0,0 +1,3 @@ +*.defend.egress.com +*.esi.egress.com +*.reader.egress.com diff --git a/src/egress-vdp/note.txt b/src/egress-vdp/note.txt new file mode 100644 index 0000000..05d95b6 --- /dev/null +++ b/src/egress-vdp/note.txt @@ -0,0 +1 @@ +60430 https://hackerone.com/egress-vdp Egress Software Technologies egress-vdp diff --git a/src/elastic/DOWNLOADABLE_EXECUTABLES.txt b/src/elastic/DOWNLOADABLE_EXECUTABLES.txt new file mode 100644 index 0000000..52bdd5a --- /dev/null +++ b/src/elastic/DOWNLOADABLE_EXECUTABLES.txt @@ -0,0 +1,18 @@ +Beats - Auditbeat +Beats - Filebeat +Beats - Heartbeat +Beats - Metricbeat +Beats - Packetbeat +Beats - Winlogbeat +Elastic Agent +Elastic Cloud Enterprise (ECE) +Elastic Cloud on Kubernetes (ECK) +Elastic Enterprise Search +Elastic Maps Server +Elasticsearch +Logstash +Observability - APM Agents +Observability - APM Server +Fleet Server +Kibana +Beats diff --git a/src/elastic/OTHER.txt b/src/elastic/OTHER.txt new file mode 100644 index 0000000..bd2d2c2 --- /dev/null +++ b/src/elastic/OTHER.txt @@ -0,0 +1,8 @@ +other +All Elastic Products +Elastic Package Registry +Elastic Synthetics Monitoring +Other +elastic.co credentials +Software Supply Chain +Elastic Clients diff --git a/src/elastic/SOURCE_CODE.txt b/src/elastic/SOURCE_CODE.txt new file mode 100644 index 0000000..eb44e1a --- /dev/null +++ b/src/elastic/SOURCE_CODE.txt @@ -0,0 +1,4 @@ +https://github.com/elastic/elasticsearch +https://github.com/elastic/kibana +https://github.com/elastic/logstash +https://github.com/elastic/beats diff --git a/src/elastic/URL.txt b/src/elastic/URL.txt new file mode 100644 index 0000000..ec0fe63 --- /dev/null +++ b/src/elastic/URL.txt @@ -0,0 +1,11 @@ +www.elastic.co +cloud.elastic.co +*.elastic.co +elasticsearch-ci.elastic.co +*.found.io +*.swiftype.com +*.elstc.co +*.elasticnet.co +*.eops.nl +*.elastic-cloud.com +elastic-cloud.com diff --git a/src/elastic/WILDCARD.txt b/src/elastic/WILDCARD.txt new file mode 100644 index 0000000..72fb315 --- /dev/null +++ b/src/elastic/WILDCARD.txt @@ -0,0 +1,14 @@ +http://*.elastic.co +http://*.found.io +http://*.swiftype.com +http://*.elstc.co +http://*.elasticnet.co +http://*.eops.nl +http://*.elastic-cloud.com +*.elastic.co +*.found.io +*.swiftype.com +*.elstc.co +*.elasticnet.co +*.eops.nl +*.elastic-cloud.com diff --git a/src/elastic/note.txt b/src/elastic/note.txt new file mode 100644 index 0000000..08ea09d --- /dev/null +++ b/src/elastic/note.txt @@ -0,0 +1 @@ +23607 https://hackerone.com/elastic Elastic elastic diff --git a/src/emoney-advisor/URL.txt b/src/emoney-advisor/URL.txt new file mode 100644 index 0000000..568af87 --- /dev/null +++ b/src/emoney-advisor/URL.txt @@ -0,0 +1,6 @@ +*.emaplan.com +*.emoneyadvisor.com +wealth.emaplan.com +www.getincentive.com +api.getincentive.com +home.getincentive.com diff --git a/src/emoney-advisor/WILDCARD.txt b/src/emoney-advisor/WILDCARD.txt new file mode 100644 index 0000000..38d76be --- /dev/null +++ b/src/emoney-advisor/WILDCARD.txt @@ -0,0 +1,4 @@ +http://*.emaplan.com +http://*.emoneyadvisor.com +*.emaplan.com +*.emoneyadvisor.com diff --git a/src/emoney-advisor/note.txt b/src/emoney-advisor/note.txt new file mode 100644 index 0000000..59f4804 --- /dev/null +++ b/src/emoney-advisor/note.txt @@ -0,0 +1 @@ +50698 https://hackerone.com/emoney-advisor eMoney Advisor emoney-advisor diff --git a/src/endless_group/CIDR.txt b/src/endless_group/CIDR.txt new file mode 100644 index 0000000..9a85771 --- /dev/null +++ b/src/endless_group/CIDR.txt @@ -0,0 +1,2 @@ +185.86.231.0/24 +207.90.251.0/24 diff --git a/src/endless_group/OTHER.txt b/src/endless_group/OTHER.txt new file mode 100644 index 0000000..869b06c --- /dev/null +++ b/src/endless_group/OTHER.txt @@ -0,0 +1,3 @@ +(*).theendlessweb.com +(*).itsendless.org +(*).endlessgroup.org diff --git a/src/endless_group/SOURCE_CODE.txt b/src/endless_group/SOURCE_CODE.txt new file mode 100644 index 0000000..ff63e62 --- /dev/null +++ b/src/endless_group/SOURCE_CODE.txt @@ -0,0 +1 @@ +https://github.com/EndlessHosting diff --git a/src/endless_group/URL.txt b/src/endless_group/URL.txt new file mode 100644 index 0000000..f826f86 --- /dev/null +++ b/src/endless_group/URL.txt @@ -0,0 +1,5 @@ +(*).theendlessweb.com +(*).itsendless.org +(*).endlessgroup.org +app.raisable.org +api.raisable.org diff --git a/src/endless_group/note.txt b/src/endless_group/note.txt new file mode 100644 index 0000000..a689e5b --- /dev/null +++ b/src/endless_group/note.txt @@ -0,0 +1 @@ +37038 https://hackerone.com/endless_group Endless Group endless_group diff --git a/src/engel_volkers/APPLE_STORE_APP_ID.txt b/src/engel_volkers/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..fa2ac0c --- /dev/null +++ b/src/engel_volkers/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +1147690535 diff --git a/src/engel_volkers/GOOGLE_PLAY_APP_ID.txt b/src/engel_volkers/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..8f03557 --- /dev/null +++ b/src/engel_volkers/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.engelvoelkers.propertysearch diff --git a/src/engel_volkers/URL.txt b/src/engel_volkers/URL.txt new file mode 100644 index 0000000..c63d2d0 --- /dev/null +++ b/src/engel_volkers/URL.txt @@ -0,0 +1,2 @@ +*.engelvoelkers.com +authz.engelvoelkers.com/ diff --git a/src/engel_volkers/note.txt b/src/engel_volkers/note.txt new file mode 100644 index 0000000..b77eeb4 --- /dev/null +++ b/src/engel_volkers/note.txt @@ -0,0 +1 @@ +40276 https://hackerone.com/engel_volkers Engel & Völkers Technology GmbH engel_volkers diff --git a/src/engel_volkers_bbp/URL.txt b/src/engel_volkers_bbp/URL.txt new file mode 100644 index 0000000..1b3fc36 --- /dev/null +++ b/src/engel_volkers_bbp/URL.txt @@ -0,0 +1,13 @@ +https://www.engelvoelkers.com/ +https://login.engelvoelkers.com/* +https://www.engelvoelkers.com/search/* +https://www.engelvoelkers.com/owner-app/login/* +https://www.engelvoelkers.com/owner-app/agent/login/* +https://filewave.engelvoelkers.com/* +https://t-box.engelvoelkers.com/* +https://www.engelvoelkers.com/de/immobilie-bewerten/* +https://www.engelvoelkers.com/de-de/immobilie-verkaufen/* +https://master-data-service.engelvoelkers.com/* +https://leadhub.engelvoelkers.com/* +https://engelvoelkers.tech/* +www.engelvoelkers.com diff --git a/src/engel_volkers_bbp/WILDCARD.txt b/src/engel_volkers_bbp/WILDCARD.txt new file mode 100644 index 0000000..1a72d9f --- /dev/null +++ b/src/engel_volkers_bbp/WILDCARD.txt @@ -0,0 +1,11 @@ +https://login.engelvoelkers.com/* +https://www.engelvoelkers.com/search/* +https://www.engelvoelkers.com/owner-app/login/* +https://www.engelvoelkers.com/owner-app/agent/login/* +https://filewave.engelvoelkers.com/* +https://t-box.engelvoelkers.com/* +https://www.engelvoelkers.com/de/immobilie-bewerten/* +https://www.engelvoelkers.com/de-de/immobilie-verkaufen/* +https://master-data-service.engelvoelkers.com/* +https://leadhub.engelvoelkers.com/* +https://engelvoelkers.tech/* diff --git a/src/engel_volkers_bbp/note.txt b/src/engel_volkers_bbp/note.txt new file mode 100644 index 0000000..31a3f64 --- /dev/null +++ b/src/engel_volkers_bbp/note.txt @@ -0,0 +1 @@ +43132 https://hackerone.com/engel_volkers_bbp Engel & Völkers Technology GmbH BBP engel_volkers_bbp diff --git a/src/enjin/APPLE_STORE_APP_ID.txt b/src/enjin/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..dca2123 --- /dev/null +++ b/src/enjin/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +com.enjin.mobile.wallet diff --git a/src/enjin/GOOGLE_PLAY_APP_ID.txt b/src/enjin/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..dca2123 --- /dev/null +++ b/src/enjin/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.enjin.mobile.wallet diff --git a/src/enjin/OTHER.txt b/src/enjin/OTHER.txt new file mode 100644 index 0000000..9762b59 --- /dev/null +++ b/src/enjin/OTHER.txt @@ -0,0 +1,2 @@ +Enjin Coin - Ethereum ERC-20 Contract +Enjin - Ethereum ERC-1155 Contract diff --git a/src/enjin/URL.txt b/src/enjin/URL.txt new file mode 100644 index 0000000..61c4e87 --- /dev/null +++ b/src/enjin/URL.txt @@ -0,0 +1,10 @@ +cloud.enjin.io,kovan.cloud.enjin.io,jumpnet.cloud.enjin.io +beam.enjin.io,jumpnet.beam.enjin.io +enjinx.io,enjinx.cn,api.enjinx.io,api.enjinx.cn,*.api.enjinx.io,*.api.enjinx.cn +assets.enjin.io,cdn.enjin.io,cdn.enjin.cn,cdn.enjinx.io,cdn.enjinx.cn +cloud.enjin.io,goerli.cloud.enjin.io,jumpnet.cloud.enjin.io +assets.enjin.io,cdn.enjin.io,*.cdn.enjin.io,*.cdn.enjin.cn,cdn.enjin.cn,cdn.enjinx.io,cdn.enjinx.cn,enjinusercontent.com,*.enjinusercontent.com +api.enjinx.io +enjinx.io +nft.io +platform.enjin.io diff --git a/src/enjin/WILDCARD.txt b/src/enjin/WILDCARD.txt new file mode 100644 index 0000000..8df40b6 --- /dev/null +++ b/src/enjin/WILDCARD.txt @@ -0,0 +1,4 @@ +http://enjinx.io,enjinx.cn,api.enjinx.io,api.enjinx.cn,*.api.enjinx.io,*.api.enjinx.cn +http://assets.enjin.io,cdn.enjin.io,*.cdn.enjin.io,*.cdn.enjin.cn,cdn.enjin.cn,cdn.enjinx.io,cdn.enjinx.cn,enjinusercontent.com,*.enjinusercontent.com +enjinx.io,enjinx.cn,api.enjinx.io,api.enjinx.cn,*.api.enjinx.io,*.api.enjinx.cn +assets.enjin.io,cdn.enjin.io,*.cdn.enjin.io,*.cdn.enjin.cn,cdn.enjin.cn,cdn.enjinx.io,cdn.enjinx.cn,enjinusercontent.com,*.enjinusercontent.com diff --git a/src/enjin/note.txt b/src/enjin/note.txt new file mode 100644 index 0000000..10849e3 --- /dev/null +++ b/src/enjin/note.txt @@ -0,0 +1 @@ +16388 https://hackerone.com/enjin Enjin enjin diff --git a/src/enter/URL.txt b/src/enter/URL.txt new file mode 100644 index 0000000..dab5711 --- /dev/null +++ b/src/enter/URL.txt @@ -0,0 +1,3 @@ +api.enter.health +login.enter.health +provider.enter.health diff --git a/src/enter/note.txt b/src/enter/note.txt new file mode 100644 index 0000000..7e038d8 --- /dev/null +++ b/src/enter/note.txt @@ -0,0 +1 @@ +563 https://hackerone.com/enter Enter enter diff --git a/src/epam-bbp/APPLE_STORE_APP_ID.txt b/src/epam-bbp/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..2f01d87 --- /dev/null +++ b/src/epam-bbp/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +1135407607 diff --git a/src/epam-bbp/GOOGLE_PLAY_APP_ID.txt b/src/epam-bbp/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..c3b9194 --- /dev/null +++ b/src/epam-bbp/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.epam.connect.android diff --git a/src/epam-bbp/OTHER.txt b/src/epam-bbp/OTHER.txt new file mode 100644 index 0000000..030ec5f --- /dev/null +++ b/src/epam-bbp/OTHER.txt @@ -0,0 +1,3 @@ +Subdomain takeover +*.opensource.epam.com +Disclosure of the credentials or confidential information diff --git a/src/epam-bbp/URL.txt b/src/epam-bbp/URL.txt new file mode 100644 index 0000000..f406652 --- /dev/null +++ b/src/epam-bbp/URL.txt @@ -0,0 +1,14 @@ +*.epam.com +*.infongen.com +access.epam.com +cloud.epam.com +anywhere.epam.com +examinator.epam.com +training.epam.com +*.lab.epam.com +*.projects.epam.com +*.emakina.group +*.emakina.com +*.emakina.ch +*.emakina.fr +*.emakina.us diff --git a/src/epam-bbp/note.txt b/src/epam-bbp/note.txt new file mode 100644 index 0000000..960a87c --- /dev/null +++ b/src/epam-bbp/note.txt @@ -0,0 +1 @@ +53215 https://hackerone.com/epam-bbp EPAM Bounty epam-bbp diff --git a/src/epam/APPLE_STORE_APP_ID.txt b/src/epam/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..2f01d87 --- /dev/null +++ b/src/epam/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +1135407607 diff --git a/src/epam/GOOGLE_PLAY_APP_ID.txt b/src/epam/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..c3b9194 --- /dev/null +++ b/src/epam/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.epam.connect.android diff --git a/src/epam/URL.txt b/src/epam/URL.txt new file mode 100644 index 0000000..7fcf7bc --- /dev/null +++ b/src/epam/URL.txt @@ -0,0 +1,4 @@ +*.epam.com +*.infongen.com +*.telescopeai.com +dojorena.io diff --git a/src/epam/note.txt b/src/epam/note.txt new file mode 100644 index 0000000..e86a0e0 --- /dev/null +++ b/src/epam/note.txt @@ -0,0 +1 @@ +53216 https://hackerone.com/epam EPAM epam diff --git a/src/epicgames/APPLE_STORE_APP_ID.txt b/src/epicgames/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..10e1c73 --- /dev/null +++ b/src/epicgames/APPLE_STORE_APP_ID.txt @@ -0,0 +1,2 @@ +id1520720139 +id1534920947 diff --git a/src/epicgames/DOWNLOADABLE_EXECUTABLES.txt b/src/epicgames/DOWNLOADABLE_EXECUTABLES.txt new file mode 100644 index 0000000..53cd5d2 --- /dev/null +++ b/src/epicgames/DOWNLOADABLE_EXECUTABLES.txt @@ -0,0 +1,8 @@ +FortniteClient-Win64-Shipping.exe +FortniteLauncher-Win64-Shipping.exe +FortniteLauncher-Win64-Shipping_BE.exe +FortniteLauncher-Win64-Shipping_EAC.exe +FortniteLauncher.exe +EOS C# SDK +UnrealEditorFortnite-Win64-Shipping.exe +EpicGamesLauncher.exe diff --git a/src/epicgames/OTHER.txt b/src/epicgames/OTHER.txt new file mode 100644 index 0000000..f476703 --- /dev/null +++ b/src/epicgames/OTHER.txt @@ -0,0 +1,2 @@ +Any other Epic games owned asset not listed in the out of scope section +EpicOnlineServices diff --git a/src/epicgames/OTHER_APK.txt b/src/epicgames/OTHER_APK.txt new file mode 100644 index 0000000..da44a7e --- /dev/null +++ b/src/epicgames/OTHER_APK.txt @@ -0,0 +1 @@ +FortniteClient-Android-Shipping-arm64-es2.apk diff --git a/src/epicgames/URL.txt b/src/epicgames/URL.txt new file mode 100644 index 0000000..d1db63f --- /dev/null +++ b/src/epicgames/URL.txt @@ -0,0 +1,61 @@ +*.rocketleague.com +*.psynet.gg +*.unrealtournament.com +*.epicgames.com +*.unrealengine.com +*.fortnite.com +*.epicgames.dev +metahuman.unrealengine.com +twinmotion.unrealengine.com +*.psyonix.com +*.3lateral.com +*.cubicmotion.com +*.oncatapult.com +*.fallguys.com +*.mediatonic.co.uk +*.artstation.com +*.easy.ac +*.sketchfab.com +*.quixel.com +*.superawesome.tv +*.superawesome.com +*.popjam.com +*.rukkaz.com +*.jellychat.com +help.sketchfab.com +forum.sketchfab.com +*.bandcamp.com +isitbandcampfriday.com +*.bcbits.com +*.amplitude-game.com +*.audicagame.com +*.dancecentral.com +*.dropmix.com +ps3-meta.rockband.com +www.rockband4.com +*.rockbandvr.com +*.singspacegame.com +*.harmonixmusic.com +*.hmxservices.com +*.hmxwebservices.com +fallguys.com +fortnite.com +hmxservices.com +harmonixmusic.com +aqtooling.com +aquiris.com.br +aquiris.studio +aquiristech.com +ballistic.com +ballistic.com.br +buckingfuggy.com +hc2services.com +hc2tooling.com +horizonchase.com.br +horizonchase.com +horizonchaseturbo.com +playwonderbox.com.br +playwonderbox.com +wonderboxapi.com +wonderboxdev.com +capturingreality.com diff --git a/src/epicgames/WILDCARD.txt b/src/epicgames/WILDCARD.txt new file mode 100644 index 0000000..60e0ebf --- /dev/null +++ b/src/epicgames/WILDCARD.txt @@ -0,0 +1,2 @@ +*.bandcamp.com +*.bcbits.com diff --git a/src/epicgames/note.txt b/src/epicgames/note.txt new file mode 100644 index 0000000..dde102c --- /dev/null +++ b/src/epicgames/note.txt @@ -0,0 +1 @@ +23233 https://hackerone.com/epicgames Epic Games epicgames diff --git a/src/equifax/OTHER.txt b/src/equifax/OTHER.txt new file mode 100644 index 0000000..8c60ad0 --- /dev/null +++ b/src/equifax/OTHER.txt @@ -0,0 +1,54 @@ +*equifax.com +*equifax.com.ar +*equifax.com.mx +*equifax.com.pr +*equifax.com.tw +*equifax.ca +*equifax.com.au +*equifax.cl +*equifax.co.cr +*equifax.ec +*equifax.sv +*equifax.hn +*equifax.co.in +*equifax.co.nz +*equifax.com.py +*equifax.pe +*equifax.pt +*equifax.ru +*equifax.es +*equifax.co.uk +*.mapcity.com +*.dicom.cl +*.ansoniacreditdata.com +*.talx.com +*.i2verify.com +*.kount.net +*.hiretech.com +*.wageverify.com +*.kount.com +*.accountscore.com +*.accountscore.co.uk +*.accountscore.net +*.employersedge.com +*.employersedge.net +*.datacredito.com +*.datacredito.com.do +*.datacredito.info +*.healthefx.net +*.healthefx.us +*.healthefxforms.us +*.paynet.us,*.paynet.ca,*.paynet.com,*.paynet.credit +*.equifax.com.pe +*.i9anywhere.com +*.paynetonline.us,*.paynetonline.ca,*.paynetonline.com,*.paynetonline.site,*.paynetonline.mobi +*.efficienthire.com +*.efficientforms.com +*.i9advantage.com +*.midigator.com +*.appriss.com,*.appriss.net,*.apprissafety.com,*.apprissgomobile.com,*.apprissinsights.com,*.apprissinsights.net,*.apprissmobile.com +*.datacredito1.com +*.datacredito2.com +*.datacredito3.com +*.equifax.cl +*.equifax.com diff --git a/src/equifax/URL.txt b/src/equifax/URL.txt new file mode 100644 index 0000000..5afe7fb --- /dev/null +++ b/src/equifax/URL.txt @@ -0,0 +1,90 @@ +*equifax.com +*equifax.com.ar +*equifax.com.mx +*equifax.com.pr +*equifax.com.tw +*equifax.ca +*equifax.com.au +*equifax.cl +*equifax.co.cr +*equifax.ec +*equifax.sv +*equifax.hn +*equifax.co.in +*equifax.co.nz +*equifax.com.py +*equifax.pe +*equifax.pt +*equifax.ru +*equifax.es +*equifax.co.uk +www.equifax.com +*.mapcity.com +*.dicom.cl +chaodeudas.cl +*.ansoniacreditdata.com +*.talx.com +*.i2verify.com +*.kount.net +*.hiretech.com +*.wageverify.com +*.kount.com +*.accountscore.com +*.accountscore.co.uk +*.accountscore.net +*.employersedge.com +*.employersedge.net +*.datacredito.com +*.datacredito.com.do +*.datacredito.info +*.healthefx.net +*.healthefx.us +*.healthefxforms.us +ext-equifax.cl +mail.ext-equifax.cl +CALLCENTER-JOBS.CO +HOURLY-JOBS.NET +HOURLYJOBSONLINE.COM +HOURLYJOBSTODAY.COM +JOBAL.IN +JOBALIE.COM +JOBALIGN.COM +JOBALIGN.INFO +JOBALIGN.NET +JOBALINE-DATA.COM +JOBALINE.CO +JOBALINE.COM +JOBALINE.INFO +JOBALINE.NET +JOBALINECI.COM +jobalinedemo.com +jobalinesandbox.com +JOBALINESTAGING.COM +WAREHOUSE-JOB.US +welcomeclient.com +wotcprocessor.com +wotcprocessor.info +wotcprocessor.net +wotcprocessor.org +efficeintforms.com +efficienthire.com +efficienthire.info +efficienthire.net +efficienthire.org +efficientwotc.com +efhire.com +efwotc.com +EHXFORMS.COM +ehxhr.com +help.equifax.com +ntcusa.com +wotctech.com +wotcprocessor.us +nationaltaxcredit.com +github.com +BE-THE-AMERICAN-DREAM.US +BE-THE-AMERICAN-DREAM.ORG +BE-THE-AMERICAN-DREAM.net +BE-THE-AMERICAN-DREAM.COM +https://vpoconfig.tools.prod.appriss.com +register.alertxpress.com diff --git a/src/equifax/WILDCARD.txt b/src/equifax/WILDCARD.txt new file mode 100644 index 0000000..4b39b46 --- /dev/null +++ b/src/equifax/WILDCARD.txt @@ -0,0 +1,25 @@ +http://*.mytaxform.com +https://*.mytaxform.com +https://*.walletinsights.com +https://*.vineprotect.com +https://*.alertxpress.com +https://*.registervpo.com +https://*.justicexchange.com +*.idwatchdog.com +*.mercury.com.au +*.ntcusa.com +*.acertandosuascontas.com.br +*.acordocerto.com.br +*.boavistascpc.com.br +*.boavistaservicos.com.br +*.bvsnet.com.br +*.certificadoboavista.com.br +*.consumidorpositivo.com.br +*.konduto.com +*.redeverdeamarela.com.br +*.scpcnet.com.br +*.servicodeprotecaoaocredito.com.br +*.seuladobom.com.br +*.fraudday.com +*.konduto.blog +*.decisionpoint3.com diff --git a/src/equifax/note.txt b/src/equifax/note.txt new file mode 100644 index 0000000..aba6b10 --- /dev/null +++ b/src/equifax/note.txt @@ -0,0 +1,2 @@ +5044 https://hackerone.com/equifax Equifax equifax +5044 https://hackerone.com/equifax Equifax-vdp equifax diff --git a/src/eslint/SOURCE_CODE.txt b/src/eslint/SOURCE_CODE.txt new file mode 100644 index 0000000..d39c619 --- /dev/null +++ b/src/eslint/SOURCE_CODE.txt @@ -0,0 +1,2 @@ +https://github.com/eslint/eslint-github-bot +https://github.com/eslint/eslint diff --git a/src/eslint/URL.txt b/src/eslint/URL.txt new file mode 100644 index 0000000..9d9c153 --- /dev/null +++ b/src/eslint/URL.txt @@ -0,0 +1 @@ +jenkins.eslint.org diff --git a/src/eslint/note.txt b/src/eslint/note.txt new file mode 100644 index 0000000..52d97b3 --- /dev/null +++ b/src/eslint/note.txt @@ -0,0 +1 @@ +31752 https://hackerone.com/eslint ESLint eslint diff --git a/src/estee-lauder/URL.txt b/src/estee-lauder/URL.txt new file mode 100644 index 0000000..0ea7f77 --- /dev/null +++ b/src/estee-lauder/URL.txt @@ -0,0 +1,43 @@ +aveda.com +aveda.co.uk +bobbibrowncosmetics.com +bobbibrown.co.uk +smashbox.com +smashbox.co.uk +clinique.jp +cosmeticscompanystore.ca +cs.estee.com +cy.estee.com +de.estee.com +dk.estee.com +drjart.estee.com +eccqa.estee.com +elc.estee.com +elcbeautyperks.com +elcbeautyperksemea.com +elceurope.com +elclearninglibrary.com +elcompanies.com +elcompanies.net +elcompanies.onmicrosoft.com +elcpress.com +elcprivilege.com +elcv.com +es.estee.com +www.tomfordbeauty.com +theonlinecompanystore.co.nz +theonlinecompanystore.com.au +thecompanyikeepbook.com +techdayofpink.com +elcspark.com +elcompanies.jp +elcompanies.cn +elchackathon.com +elcdev.net +elccompanies.net +elcapp.cn +elcacademy.com +elc.academy +develcompanies.net +za.estee.com +vn.estee.com diff --git a/src/estee-lauder/WILDCARD.txt b/src/estee-lauder/WILDCARD.txt new file mode 100644 index 0000000..7f720a1 --- /dev/null +++ b/src/estee-lauder/WILDCARD.txt @@ -0,0 +1,13 @@ +*.elcompanies.com +*.esteelauder.com +*.maccosmetics.com +*.clinique.com +*.jomalone.co.uk +*.esteelauder.co.uk +*.maccosmetics.co.uk +*.clinique.co.uk +*.jomalone.com +*.origins.co.uk +*.origins.com +*.cremedelamer.co.uk +*.cremedelamer.com diff --git a/src/estee-lauder/note.txt b/src/estee-lauder/note.txt new file mode 100644 index 0000000..4863373 --- /dev/null +++ b/src/estee-lauder/note.txt @@ -0,0 +1 @@ +49230 https://hackerone.com/estee-lauder Esteé Lauder estee-lauder diff --git a/src/etoro_bbp/APPLE_STORE_APP_ID.txt b/src/etoro_bbp/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..9ba8f69 --- /dev/null +++ b/src/etoro_bbp/APPLE_STORE_APP_ID.txt @@ -0,0 +1,3 @@ +com.etoro.openbook +com.etoro.wallet +io.getdelta.ios diff --git a/src/etoro_bbp/GOOGLE_PLAY_APP_ID.txt b/src/etoro_bbp/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..7e84d1c --- /dev/null +++ b/src/etoro_bbp/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1,3 @@ +com.etoro.openbook +com.etoro.wallet +io.getdelta.android diff --git a/src/etoro_bbp/URL.txt b/src/etoro_bbp/URL.txt new file mode 100644 index 0000000..6d1ef94 --- /dev/null +++ b/src/etoro_bbp/URL.txt @@ -0,0 +1,36 @@ +www.etoro.com +etoropartners.com +partners.etoro.com +aggregator.etoro.com +api.etoro.com +billing.etoro.com +billing-pci.etoro.com +candle.etoro.com +candle-src.etoro.com +cashier.etoro.com +cashier-src.etoro.com +charts.etoro.com +push-d-gw.cloud.etoro.com +push-d-hap.cloud.etoro.com +push-demo-hk-lightstreamer.cloud.etoro.com +push-demo-lightstreamer.cloud.etoro.com +push-dn-hap.cloud.etoro.com +push-hap.cloud.etoro.com +push-lightstreamer.cloud.etoro.com +push-n-hap.cloud.etoro.com +push-real-hk-lightstreamer.cloud.etoro.com +etorologsapi.etoro.com +kyc.etoro.com +kyc-src.etoro.com +r.etoro.com +streams.etoro.com +sts.etoro.com +tapi-demo.etoro.com +tapi-real.etoro.com +uapi-front.etoro.com +wallet.etoro.com +watchlistapi.etoro.com +etorox.com +rankings.etoro.com +delta.app +bullsheet.me diff --git a/src/etoro_bbp/note.txt b/src/etoro_bbp/note.txt new file mode 100644 index 0000000..f86cb15 --- /dev/null +++ b/src/etoro_bbp/note.txt @@ -0,0 +1 @@ +34960 https://hackerone.com/etoro_bbp eToro BBP etoro_bbp diff --git a/src/eufy_security/APPLE_STORE_APP_ID.txt b/src/eufy_security/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..e36bf30 --- /dev/null +++ b/src/eufy_security/APPLE_STORE_APP_ID.txt @@ -0,0 +1,4 @@ +com.security.care +com.security.BatteryCam +com.eufylife.EufyHome +com.anker.AnkerMake diff --git a/src/eufy_security/GOOGLE_PLAY_APP_ID.txt b/src/eufy_security/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..7440b89 --- /dev/null +++ b/src/eufy_security/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1,3 @@ +com.oceanwing.care.cam +com.oceanwing.battery.cam +com.oceanwing.FDMPrint diff --git a/src/eufy_security/HARDWARE.txt b/src/eufy_security/HARDWARE.txt new file mode 100644 index 0000000..139e09d --- /dev/null +++ b/src/eufy_security/HARDWARE.txt @@ -0,0 +1,5 @@ +https://us.eufy.com/products/e8213181 +https://us.eufy.com/products/t88711w1 +https://us.eufy.com/products/t88511d1 +https://us.eufy.com/products/t8410121 +https://www.ankermake.com/products/m5?variant=42744298373269 diff --git a/src/eufy_security/URL.txt b/src/eufy_security/URL.txt new file mode 100644 index 0000000..ed8fc1e --- /dev/null +++ b/src/eufy_security/URL.txt @@ -0,0 +1 @@ +https://passport.eufy.com/?app=eufy-us diff --git a/src/eufy_security/note.txt b/src/eufy_security/note.txt new file mode 100644 index 0000000..1997b15 --- /dev/null +++ b/src/eufy_security/note.txt @@ -0,0 +1 @@ +62739 https://hackerone.com/eufy_security eufy Security eufy_security diff --git a/src/eurofins/OTHER.txt b/src/eurofins/OTHER.txt new file mode 100644 index 0000000..5488c20 --- /dev/null +++ b/src/eurofins/OTHER.txt @@ -0,0 +1 @@ +Eurofins Assets diff --git a/src/eurofins/URL.txt b/src/eurofins/URL.txt new file mode 100644 index 0000000..b8a6cf9 --- /dev/null +++ b/src/eurofins/URL.txt @@ -0,0 +1 @@ +https://metrak.metlabs.com/client/ diff --git a/src/eurofins/note.txt b/src/eurofins/note.txt new file mode 100644 index 0000000..8a6ca0e --- /dev/null +++ b/src/eurofins/note.txt @@ -0,0 +1 @@ +63537 https://hackerone.com/eurofins Eurofins eurofins diff --git a/src/evernote/APPLE_STORE_APP_ID.txt b/src/evernote/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..1b38111 --- /dev/null +++ b/src/evernote/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +281796108 diff --git a/src/evernote/DOWNLOADABLE_EXECUTABLES.txt b/src/evernote/DOWNLOADABLE_EXECUTABLES.txt new file mode 100644 index 0000000..f3799da --- /dev/null +++ b/src/evernote/DOWNLOADABLE_EXECUTABLES.txt @@ -0,0 +1 @@ +406056744 diff --git a/src/evernote/GOOGLE_PLAY_APP_ID.txt b/src/evernote/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..25b35f3 --- /dev/null +++ b/src/evernote/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1,2 @@ +com.evernote.android +com.evernote diff --git a/src/evernote/URL.txt b/src/evernote/URL.txt new file mode 100644 index 0000000..6aa880b --- /dev/null +++ b/src/evernote/URL.txt @@ -0,0 +1,6 @@ +https://www.evernote.com +accounts.evernote.com +api.evernote.com +accounts.stage.evernote.com +api.stage.evernote.com +www.evernote.com diff --git a/src/evernote/WINDOWS_APP_STORE_APP_ID.txt b/src/evernote/WINDOWS_APP_STORE_APP_ID.txt new file mode 100644 index 0000000..c8f40e7 --- /dev/null +++ b/src/evernote/WINDOWS_APP_STORE_APP_ID.txt @@ -0,0 +1 @@ +9wzdncrfj3mb diff --git a/src/evernote/note.txt b/src/evernote/note.txt new file mode 100644 index 0000000..fd6b7ff --- /dev/null +++ b/src/evernote/note.txt @@ -0,0 +1 @@ +44211 https://hackerone.com/evernote Evernote evernote diff --git a/src/exness/APPLE_STORE_APP_ID.txt b/src/exness/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..5f728a7 --- /dev/null +++ b/src/exness/APPLE_STORE_APP_ID.txt @@ -0,0 +1,6 @@ +1359763701 +1579331769 +1392465628 +Exness Trade: Online Trading +Exness Social Trading +Exness Investor diff --git a/src/exness/GOOGLE_PLAY_APP_ID.txt b/src/exness/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..1216ebf --- /dev/null +++ b/src/exness/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1,3 @@ +com.exness.investor +com.exness.investments +com.exness.android.pa diff --git a/src/exness/OTHER.txt b/src/exness/OTHER.txt new file mode 100644 index 0000000..f426ba7 --- /dev/null +++ b/src/exness/OTHER.txt @@ -0,0 +1,10 @@ +Personal Area for Web Trading +Web Terminal +Logical trading issues +Partnership +Portfolio Management +Public Area for Web Trading +Social Trading +Any subdomain infrastructure issue +Any subdomain application issue +External service data leakage diff --git a/src/exness/OTHER_APK.txt b/src/exness/OTHER_APK.txt new file mode 100644 index 0000000..e24bd7c --- /dev/null +++ b/src/exness/OTHER_APK.txt @@ -0,0 +1 @@ +com.exness.android.pa diff --git a/src/exness/URL.txt b/src/exness/URL.txt new file mode 100644 index 0000000..8897e14 --- /dev/null +++ b/src/exness/URL.txt @@ -0,0 +1,10 @@ +my.exness.com +pay.ibex.exchange +https://my.exness.com/webtrading/ +exnessaffiliates.com +https://my.exness.com/pa/socialtrading +https://my.exness.com/pa/pim/manager +pwapi.ex2b.com +exness.com +api.excalls.mobi +social-trading.exness.com diff --git a/src/exness/note.txt b/src/exness/note.txt new file mode 100644 index 0000000..b0b8988 --- /dev/null +++ b/src/exness/note.txt @@ -0,0 +1 @@ +12719 https://hackerone.com/exness EXNESS exness diff --git a/src/exodus/APPLE_STORE_APP_ID.txt b/src/exodus/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..71cf06d --- /dev/null +++ b/src/exodus/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +exodus-movement.exodus diff --git a/src/exodus/DOWNLOADABLE_EXECUTABLES.txt b/src/exodus/DOWNLOADABLE_EXECUTABLES.txt new file mode 100644 index 0000000..b3c5324 --- /dev/null +++ b/src/exodus/DOWNLOADABLE_EXECUTABLES.txt @@ -0,0 +1 @@ +Exodus Desktop Wallet diff --git a/src/exodus/GOOGLE_PLAY_APP_ID.txt b/src/exodus/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..c05bfa3 --- /dev/null +++ b/src/exodus/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +exodusmovement.exodus diff --git a/src/exodus/OTHER.txt b/src/exodus/OTHER.txt new file mode 100644 index 0000000..0decf5e --- /dev/null +++ b/src/exodus/OTHER.txt @@ -0,0 +1 @@ +Exodus Browser Extension diff --git a/src/exodus/URL.txt b/src/exodus/URL.txt new file mode 100644 index 0000000..b49ba2a --- /dev/null +++ b/src/exodus/URL.txt @@ -0,0 +1,3 @@ +*.exodus.io +*.a.exodus.io +*.exodus.com diff --git a/src/exodus/WILDCARD.txt b/src/exodus/WILDCARD.txt new file mode 100644 index 0000000..0f5c8d8 --- /dev/null +++ b/src/exodus/WILDCARD.txt @@ -0,0 +1,6 @@ +http://*.exodus.io +http://*.a.exodus.io +http://*.exodus.com +*.exodus.io +*.a.exodus.io +*.exodus.com diff --git a/src/exodus/note.txt b/src/exodus/note.txt new file mode 100644 index 0000000..2f14b06 --- /dev/null +++ b/src/exodus/note.txt @@ -0,0 +1 @@ +43825 https://hackerone.com/exodus Exodus exodus diff --git a/src/expediagroup/OTHER.txt b/src/expediagroup/OTHER.txt new file mode 100644 index 0000000..28228a6 --- /dev/null +++ b/src/expediagroup/OTHER.txt @@ -0,0 +1 @@ +Other Expedia-owned Asset diff --git a/src/expediagroup/URL.txt b/src/expediagroup/URL.txt new file mode 100644 index 0000000..be38a5c --- /dev/null +++ b/src/expediagroup/URL.txt @@ -0,0 +1,35 @@ +*.expedia.com +*.hotwire.com +*.orbitz.com +*.hotels.com +*.homeaway.com +*.cheaptickets.com +*.travelocity.com +*.wotif.com +*.cruiseshipcenters.com +*.lastminute.com.au +*.carrentals.com +*.expediapartnercentral.com +*.abritel.fr +*.bookabach.co.nz +*.fewo-direkt.de +*.stayz.com.au +*.expediagroup.com +*.egadvertising.com +*.flights.com +*.hoteles.com +*.hoteis.com +*.vrbo.com +*.hotwirepartnercentral.com +*.ebookers.com +*.mrjet.se +*.expediapartnersolutions.com +*.ean.com +*.lastminute.co.nz +*.travelocity.ca +*.expediaagents.com +china.airasiago.com +thailand.airasiago.com +www.cruiseshipcenters.com/api/searchcenter +http://www.cruiseshipcenters.com/api/searchcenter +www.vrbo.com diff --git a/src/expediagroup/WILDCARD.txt b/src/expediagroup/WILDCARD.txt new file mode 100644 index 0000000..cde8826 --- /dev/null +++ b/src/expediagroup/WILDCARD.txt @@ -0,0 +1,61 @@ +http://*.expedia.com +http://*.hotwire.com +http://*.orbitz.com +http://*.hotels.com +http://*.homeaway.com +http://*.cheaptickets.com +http://*.travelocity.com +http://*.wotif.com +http://*.cruiseshipcenters.com +http://*.lastminute.com.au +http://*.carrentals.com +http://*.expediapartnercentral.com +http://*.abritel.fr +http://*.bookabach.co.nz +http://*.fewo-direkt.de +http://*.stayz.com.au +http://*.expediagroup.com +http://*.egadvertising.com +http://*.flights.com +http://*.hoteles.com +http://*.hoteis.com +http://*.vrbo.com +http://*.hotwirepartnercentral.com +http://*.ebookers.com +http://*.mrjet.se +http://*.expediapartnersolutions.com +http://*.ean.com +http://*.lastminute.co.nz +http://*.travelocity.ca +http://*.expediaagents.com +*.expedia.com +*.hotwire.com +*.orbitz.com +*.hotels.com +*.homeaway.com +*.cheaptickets.com +*.travelocity.com +*.wotif.com +*.cruiseshipcenters.com +*.lastminute.com.au +*.carrentals.com +*.expediapartnercentral.com +*.abritel.fr +*.bookabach.co.nz +*.fewo-direkt.de +*.stayz.com.au +*.expediagroup.com +*.egadvertising.com +*.flights.com +*.hoteles.com +*.hoteis.com +*.vrbo.com +*.hotwirepartnercentral.com +*.ebookers.com +*.mrjet.se +*.expediapartnersolutions.com +*.ean.com +*.lastminute.co.nz +*.travelocity.ca +*.expediaagents.com +*.expediacruises.com diff --git a/src/expediagroup/note.txt b/src/expediagroup/note.txt new file mode 100644 index 0000000..81b006a --- /dev/null +++ b/src/expediagroup/note.txt @@ -0,0 +1 @@ +33400 https://hackerone.com/expediagroup Expedia Group expediagroup diff --git a/src/expediagroup_bbp/APPLE_STORE_APP_ID.txt b/src/expediagroup_bbp/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..3940bed --- /dev/null +++ b/src/expediagroup_bbp/APPLE_STORE_APP_ID.txt @@ -0,0 +1,9 @@ +566635048 +403546234 +483394780 +427916203 +531549799 +880759727 +284803487 +284971959 +1245772818 diff --git a/src/expediagroup_bbp/GOOGLE_PLAY_APP_ID.txt b/src/expediagroup_bbp/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..13d1e31 --- /dev/null +++ b/src/expediagroup_bbp/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1,9 @@ +com.hotwire.hotels +com.ebookers +com.orbitz +com.expedia.bookings +com.wotif.android +com.cheaptickets +com.travelocity.android +com.hcom.android +com.vrbo.android diff --git a/src/expediagroup_bbp/URL.txt b/src/expediagroup_bbp/URL.txt new file mode 100644 index 0000000..65c6b6c --- /dev/null +++ b/src/expediagroup_bbp/URL.txt @@ -0,0 +1,27 @@ +www.hotels.com +www.expedia.com +www.expediapartnercentral.com +www.vrbo.com +www.hotwire.com +www.hotwirepartnercentral.com +www.orbitz.com +www.ebookers.com +www.ebookers.fi +www.mrjet.se +www.expediapartnersolutions.com +www.carrentals.com +www.wotif.com +www.cheaptickets.com +www.lastminute.co.nz +www.lastminute.com.au +www.travelocity.com +www.travelocity.ca +www.expediacruises.com +www.expediaagents.com +www.abritel.fr +www.bookabach.co.nz +www.fewo-direkt.de +www.stayz.com.au +www.expediagroup.com +www.flights.com +www.expediataap.com diff --git a/src/expediagroup_bbp/WILDCARD.txt b/src/expediagroup_bbp/WILDCARD.txt new file mode 100644 index 0000000..9b2ae36 --- /dev/null +++ b/src/expediagroup_bbp/WILDCARD.txt @@ -0,0 +1,11 @@ +*.vrbo.com +*.hotwire.com +*.carrentals.com +*.wotif.com +*.cheaptickets.com +*.lastminute.co.nz +*.lastminute.com.au +*.travelocity.com +*.travelocity.ca +*.expediacruises.com +*.expediapartnercentral.com diff --git a/src/expediagroup_bbp/note.txt b/src/expediagroup_bbp/note.txt new file mode 100644 index 0000000..4f1872a --- /dev/null +++ b/src/expediagroup_bbp/note.txt @@ -0,0 +1 @@ +33992 https://hackerone.com/expediagroup_bbp Expedia Group Bug Bounty expediagroup_bbp diff --git a/src/expressionengine/note.txt b/src/expressionengine/note.txt new file mode 100644 index 0000000..c9a1aa4 --- /dev/null +++ b/src/expressionengine/note.txt @@ -0,0 +1 @@ +265 https://hackerone.com/expressionengine ExpressionEngine expressionengine diff --git a/src/facebook/note.txt b/src/facebook/note.txt new file mode 100644 index 0000000..252ff23 --- /dev/null +++ b/src/facebook/note.txt @@ -0,0 +1,2 @@ +41286 https://hackerone.com/facebook Facebook facebook +41286 https://hackerone.com/facebook Meta facebook diff --git a/src/fanduel/APPLE_STORE_APP_ID.txt b/src/fanduel/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..4b18913 --- /dev/null +++ b/src/fanduel/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +599664106 diff --git a/src/fanduel/GOOGLE_PLAY_APP_ID.txt b/src/fanduel/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..30bab10 --- /dev/null +++ b/src/fanduel/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.fanduel.android.self diff --git a/src/fanduel/URL.txt b/src/fanduel/URL.txt new file mode 100644 index 0000000..436d640 --- /dev/null +++ b/src/fanduel/URL.txt @@ -0,0 +1,29 @@ +fdbox.net +*.fanduel.com +sportsbook.fanduel.com +fanduel.design +com.fanduel.android.live +*racing.fanduel.com +tvg.com +4njbets.tvgnetwork.com +www.tvg.com +b2b.tvgnetwork.com +ia.tvg.com +login-4ngbets.us.betfair.com +login.pabets.tvg.com +login-ia.tvg.com +login.tvg.com +m.4njbets.tvg.com +mobile-prod.tvg.com +pabets.tvg.com +promos.tvg.com +service.tvg.com +us.tvg.com +www.4njbets.com +fanduel.com +service.racing.fanduel.com +4njbets.com +4njbets.tvg.com +4njbets.us.betfair.com +login-4njbets.us.betfair.com +login-pabets.tvg.com diff --git a/src/fanduel/WILDCARD.txt b/src/fanduel/WILDCARD.txt new file mode 100644 index 0000000..7f6a486 --- /dev/null +++ b/src/fanduel/WILDCARD.txt @@ -0,0 +1,11 @@ +http://*.fanduel.com +http://*racing.fanduel.com +*.fanduel.com +*racing.fanduel.com +*.east.fdbox.net +*.prod.fdbox.net +*.mgmt.fndlsb.net +*.prd.fndlsb.net +*inf.fndlsb.net +*.numberfire.com +*.canada.fanduel.com diff --git a/src/fanduel/note.txt b/src/fanduel/note.txt new file mode 100644 index 0000000..bfef4c6 --- /dev/null +++ b/src/fanduel/note.txt @@ -0,0 +1 @@ +34753 https://hackerone.com/fanduel FanDuel fanduel diff --git a/src/fanfootage/note.txt b/src/fanfootage/note.txt new file mode 100644 index 0000000..27f8dbe --- /dev/null +++ b/src/fanfootage/note.txt @@ -0,0 +1 @@ +222 https://hackerone.com/fanfootage FanFootage fanfootage diff --git a/src/fantasytote/note.txt b/src/fantasytote/note.txt new file mode 100644 index 0000000..8be1a01 --- /dev/null +++ b/src/fantasytote/note.txt @@ -0,0 +1 @@ +12707 https://hackerone.com/fantasytote FantasyTote fantasytote diff --git a/src/faraday_inc/OTHER.txt b/src/faraday_inc/OTHER.txt new file mode 100644 index 0000000..4eb92e7 --- /dev/null +++ b/src/faraday_inc/OTHER.txt @@ -0,0 +1,2 @@ +s3://faraday-uploads +s3://faraday-secret diff --git a/src/faraday_inc/URL.txt b/src/faraday_inc/URL.txt new file mode 100644 index 0000000..7698a7b --- /dev/null +++ b/src/faraday_inc/URL.txt @@ -0,0 +1,3 @@ +app.faraday.io +app.faraday.ai +api.faraday.ai diff --git a/src/faraday_inc/note.txt b/src/faraday_inc/note.txt new file mode 100644 index 0000000..910581d --- /dev/null +++ b/src/faraday_inc/note.txt @@ -0,0 +1 @@ +45675 https://hackerone.com/faraday_inc Faraday, Inc. faraday_inc diff --git a/src/fastify/SOURCE_CODE.txt b/src/fastify/SOURCE_CODE.txt new file mode 100644 index 0000000..6cc9001 --- /dev/null +++ b/src/fastify/SOURCE_CODE.txt @@ -0,0 +1 @@ +https://github.com/fastify diff --git a/src/fastify/note.txt b/src/fastify/note.txt new file mode 100644 index 0000000..086e343 --- /dev/null +++ b/src/fastify/note.txt @@ -0,0 +1 @@ +52423 https://hackerone.com/fastify Fastify fastify diff --git a/src/fastly-vdp/URL.txt b/src/fastly-vdp/URL.txt new file mode 100644 index 0000000..bfec938 --- /dev/null +++ b/src/fastly-vdp/URL.txt @@ -0,0 +1,8 @@ +https://*.fastly.com/ +https://manage.fastly.com/ +api.fastly.com +*.signalsciences.com +*.fanout.io +https://docs.fastly.com/ +manage.fastly.com +docs.fastly.com diff --git a/src/fastly-vdp/WILDCARD.txt b/src/fastly-vdp/WILDCARD.txt new file mode 100644 index 0000000..9046ff4 --- /dev/null +++ b/src/fastly-vdp/WILDCARD.txt @@ -0,0 +1,6 @@ +http://*.fastly.com +http://*.signalsciences.com +http://*.fanout.io +https://*.fastly.com/ +*.signalsciences.com +*.fanout.io diff --git a/src/fastly-vdp/note.txt b/src/fastly-vdp/note.txt new file mode 100644 index 0000000..25413ec --- /dev/null +++ b/src/fastly-vdp/note.txt @@ -0,0 +1 @@ +53632 https://hackerone.com/fastly-vdp Fastly VDP fastly-vdp diff --git a/src/federal-reserve/URL.txt b/src/federal-reserve/URL.txt new file mode 100644 index 0000000..34f42a1 --- /dev/null +++ b/src/federal-reserve/URL.txt @@ -0,0 +1,14 @@ +federalreserveonline.org +atlantafed.org +bostonfed.org +chicagofed.org +clevelandfed.org +dallasfed.org +kansascityfed.org +minneapolisfed.org +newyorkfed.org +philadelphiafed.org +richmondfed.org +frbsf.org +stlouisfed.org +alfred.stlouisfed.org diff --git a/src/federal-reserve/note.txt b/src/federal-reserve/note.txt new file mode 100644 index 0000000..e8cfbb4 --- /dev/null +++ b/src/federal-reserve/note.txt @@ -0,0 +1 @@ +50109 https://hackerone.com/federal-reserve Federal Reserve federal-reserve diff --git a/src/fertitta_entertainment/URL.txt b/src/fertitta_entertainment/URL.txt new file mode 100644 index 0000000..6f80d53 --- /dev/null +++ b/src/fertitta_entertainment/URL.txt @@ -0,0 +1,22 @@ +www.wildwoodcasino.net +aqbeerfest.com +aqwine.com +boardwalkfantasea.com +brennersfest.com +chefsdinners.com +dungeonofdoomkemah.com +galvestonholidayinn.com +hunttinginn.com +kemahbeerfest.com +lilliesasiancuisine.com +r-u-i.com +pleasurepier.com +sanluisresort.com +muer.com +wildwoodcasino.net +goldennugget.com +thepostoak.com +thepostoakhotel.com +shoppostoak.com +tilmanfertitta.com +fertittaentertainmentinc.com diff --git a/src/fertitta_entertainment/WILDCARD.txt b/src/fertitta_entertainment/WILDCARD.txt new file mode 100644 index 0000000..030b37e --- /dev/null +++ b/src/fertitta_entertainment/WILDCARD.txt @@ -0,0 +1,13 @@ +*.landrysinc.com +*.landrysambassador.com +*.landrysselect.com +*.ldry.com +*.goldennugget.com +*.tilmanfertitta.com +*.thepostoak.com +*.thepostoakhotel.com +*.shoppostoak.com +*.goriocruises.com +*.kemahboardwalk.com +*.aquariumrestaurants.com +*.fertittaentertainmentinc.com diff --git a/src/fertitta_entertainment/note.txt b/src/fertitta_entertainment/note.txt new file mode 100644 index 0000000..1c22f39 --- /dev/null +++ b/src/fertitta_entertainment/note.txt @@ -0,0 +1 @@ +61537 https://hackerone.com/fertitta_entertainment Fertitta Entertainment fertitta_entertainment diff --git a/src/fetlife/URL.txt b/src/fetlife/URL.txt new file mode 100644 index 0000000..dad9c72 --- /dev/null +++ b/src/fetlife/URL.txt @@ -0,0 +1,2 @@ +fetlife.com +*.fetlife.com diff --git a/src/fetlife/WILDCARD.txt b/src/fetlife/WILDCARD.txt new file mode 100644 index 0000000..68bffa6 --- /dev/null +++ b/src/fetlife/WILDCARD.txt @@ -0,0 +1,2 @@ +http://*.fetlife.com +*.fetlife.com diff --git a/src/fetlife/note.txt b/src/fetlife/note.txt new file mode 100644 index 0000000..dff2108 --- /dev/null +++ b/src/fetlife/note.txt @@ -0,0 +1 @@ +6820 https://hackerone.com/fetlife FetLife fetlife diff --git a/src/fidelity/APPLE_STORE_APP_ID.txt b/src/fidelity/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..7b8dfc1 --- /dev/null +++ b/src/fidelity/APPLE_STORE_APP_ID.txt @@ -0,0 +1,4 @@ +com.fidelity.watchlist +com.fidelity.sqrl +mobi.wealthscape +mobi.wealthscapeinvestor diff --git a/src/fidelity/GOOGLE_PLAY_APP_ID.txt b/src/fidelity/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..5317eea --- /dev/null +++ b/src/fidelity/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1,4 @@ +com.fidelity.android +com.fidelity.sqrl +com.fmr.eca.android.wealthscape +com.fmr.eca.android.wealthscapeinvestor diff --git a/src/fidelity/URL.txt b/src/fidelity/URL.txt new file mode 100644 index 0000000..b305110 --- /dev/null +++ b/src/fidelity/URL.txt @@ -0,0 +1,3 @@ +*.fidelity.com +www.fidelityworkplace.com +www.myfidelitysolutions.com diff --git a/src/fidelity/WILDCARD.txt b/src/fidelity/WILDCARD.txt new file mode 100644 index 0000000..165b4e9 --- /dev/null +++ b/src/fidelity/WILDCARD.txt @@ -0,0 +1,4 @@ +*.streetscape.com +*.advisorchannel.com +*.mystreetscape.com +*.wealthscape.com diff --git a/src/fidelity/note.txt b/src/fidelity/note.txt new file mode 100644 index 0000000..c8e420c --- /dev/null +++ b/src/fidelity/note.txt @@ -0,0 +1 @@ +56081 https://hackerone.com/fidelity Fidelity fidelity diff --git a/src/fifth_third_bank_vdp/IP_ADDRESS.txt b/src/fifth_third_bank_vdp/IP_ADDRESS.txt new file mode 100644 index 0000000..10f6844 --- /dev/null +++ b/src/fifth_third_bank_vdp/IP_ADDRESS.txt @@ -0,0 +1 @@ +216.131.54.65 diff --git a/src/fifth_third_bank_vdp/OTHER.txt b/src/fifth_third_bank_vdp/OTHER.txt new file mode 100644 index 0000000..a66b3d4 --- /dev/null +++ b/src/fifth_third_bank_vdp/OTHER.txt @@ -0,0 +1 @@ +Security vulnerabilities that are identified in Fifth Third Bank products or in website domains owned, operated, or controlled by Fifth Third Bank are in scope. diff --git a/src/fifth_third_bank_vdp/URL.txt b/src/fifth_third_bank_vdp/URL.txt new file mode 100644 index 0000000..a01abd4 --- /dev/null +++ b/src/fifth_third_bank_vdp/URL.txt @@ -0,0 +1,24 @@ +express.53.com +https://ablreporter.53.com/ +https://cdao.53.com/onboarding +https://commercialcard.53.com/ +https://dpm.53.com/identityservice/identityservice.asmx +https://express.53.com/portal +https://globaltradedirect.53.com/ +https://lqm.53.com/ +https://myapps.53.com/app/fifththird_degreedcontractor_1/exk5q7jnnuzgrrdct4h7/sso/saml +https://onlinebanking.53.com/ +https://openonline.53.com/ +https://sys.express.53.com +locations.53.com +onlinebanking.53.com +www.53.com +zta.nube.53.com +ztc.nube.53.com +https://load-webescrow.info53.com +https://pingfederate-admin-ocp-prd-bc3574.ocpf.info53.com/pingfederate/app +https://shipper-stage.info53.com/shipper/app/ +https://slapmsp001.info53.com:9443 +https://wsde260n-1.info53.com:481/olb/#/login +newline53.com +sandbox.newline53.com diff --git a/src/fifth_third_bank_vdp/WILDCARD.txt b/src/fifth_third_bank_vdp/WILDCARD.txt new file mode 100644 index 0000000..4fe5afc --- /dev/null +++ b/src/fifth_third_bank_vdp/WILDCARD.txt @@ -0,0 +1 @@ +*53.com diff --git a/src/fifth_third_bank_vdp/note.txt b/src/fifth_third_bank_vdp/note.txt new file mode 100644 index 0000000..4dbd55a --- /dev/null +++ b/src/fifth_third_bank_vdp/note.txt @@ -0,0 +1 @@ +58322 https://hackerone.com/fifth_third_bank_vdp Fifth Third Bank VDP fifth_third_bank_vdp diff --git a/src/fig/URL.txt b/src/fig/URL.txt new file mode 100644 index 0000000..a4563e6 --- /dev/null +++ b/src/fig/URL.txt @@ -0,0 +1 @@ +www.fig.co diff --git a/src/fig/note.txt b/src/fig/note.txt new file mode 100644 index 0000000..82ff78b --- /dev/null +++ b/src/fig/note.txt @@ -0,0 +1 @@ +23855 https://hackerone.com/fig Fig fig diff --git a/src/figma/OTHER.txt b/src/figma/OTHER.txt new file mode 100644 index 0000000..f6083ef --- /dev/null +++ b/src/figma/OTHER.txt @@ -0,0 +1,5 @@ +Figma Atlassian App +Figma Desktop App +Figma iOS and Android apps +Figma Slack App +Figma for Microsoft Teams diff --git a/src/figma/URL.txt b/src/figma/URL.txt new file mode 100644 index 0000000..b4fa7c5 --- /dev/null +++ b/src/figma/URL.txt @@ -0,0 +1,2 @@ +www.figma.com +api.figma.com diff --git a/src/figma/note.txt b/src/figma/note.txt new file mode 100644 index 0000000..fdd7d25 --- /dev/null +++ b/src/figma/note.txt @@ -0,0 +1 @@ +48739 https://hackerone.com/figma Figma figma diff --git a/src/files/DOWNLOADABLE_EXECUTABLES.txt b/src/files/DOWNLOADABLE_EXECUTABLES.txt new file mode 100644 index 0000000..9348268 --- /dev/null +++ b/src/files/DOWNLOADABLE_EXECUTABLES.txt @@ -0,0 +1 @@ +Files.com Desktop Application for Windows or Mac diff --git a/src/files/OTHER.txt b/src/files/OTHER.txt new file mode 100644 index 0000000..d68fe60 --- /dev/null +++ b/src/files/OTHER.txt @@ -0,0 +1,2 @@ +FIles.com REST API +Files.com SDK's diff --git a/src/files/URL.txt b/src/files/URL.txt new file mode 100644 index 0000000..0071ec8 --- /dev/null +++ b/src/files/URL.txt @@ -0,0 +1,3 @@ +app.files.com +your-assigned-subdomain.files.com +www.files.com diff --git a/src/files/note.txt b/src/files/note.txt new file mode 100644 index 0000000..3dd608e --- /dev/null +++ b/src/files/note.txt @@ -0,0 +1 @@ +13031 https://hackerone.com/files Files.com files diff --git a/src/filezilla/SOURCE_CODE.txt b/src/filezilla/SOURCE_CODE.txt new file mode 100644 index 0000000..0ede29d --- /dev/null +++ b/src/filezilla/SOURCE_CODE.txt @@ -0,0 +1,4 @@ +https://svn.filezilla-project.org/svn/libfilezilla/trunk/ +https://svn.filezilla-project.org/svn/FileZilla3/trunk/ +https://svn.filezilla-project.org/svn/libfilezilla/trunk +https://filezilla-project.org/download.php?type=server&show_all=1 diff --git a/src/filezilla/URL.txt b/src/filezilla/URL.txt new file mode 100644 index 0000000..bb3ab19 --- /dev/null +++ b/src/filezilla/URL.txt @@ -0,0 +1,2 @@ +https://svn.filezilla-project.org/svn/FileZilla3/trunk/src/putty +https://svn.filezilla-project.org/svn/filezilla3/trunk/src/putty diff --git a/src/filezilla/note.txt b/src/filezilla/note.txt new file mode 100644 index 0000000..eeae91c --- /dev/null +++ b/src/filezilla/note.txt @@ -0,0 +1 @@ +36713 https://hackerone.com/filezilla FileZilla filezilla diff --git a/src/filezilla_h1c/SOURCE_CODE.txt b/src/filezilla_h1c/SOURCE_CODE.txt new file mode 100644 index 0000000..054bc8a --- /dev/null +++ b/src/filezilla_h1c/SOURCE_CODE.txt @@ -0,0 +1,2 @@ +https://svn.filezilla-project.org/svn/FileZilla3/trunk/ +https://svn.filezilla-project.org/svn/libfilezilla/trunk diff --git a/src/filezilla_h1c/URL.txt b/src/filezilla_h1c/URL.txt new file mode 100644 index 0000000..bb3ab19 --- /dev/null +++ b/src/filezilla_h1c/URL.txt @@ -0,0 +1,2 @@ +https://svn.filezilla-project.org/svn/FileZilla3/trunk/src/putty +https://svn.filezilla-project.org/svn/filezilla3/trunk/src/putty diff --git a/src/filezilla_h1c/note.txt b/src/filezilla_h1c/note.txt new file mode 100644 index 0000000..1c914a3 --- /dev/null +++ b/src/filezilla_h1c/note.txt @@ -0,0 +1 @@ +36866 https://hackerone.com/filezilla_h1c FileZilla (European Commission - DIGIT) filezilla_h1c diff --git a/src/finra/URL.txt b/src/finra/URL.txt new file mode 100644 index 0000000..a4020f2 --- /dev/null +++ b/src/finra/URL.txt @@ -0,0 +1,2 @@ +*.finra.org +https://ews.qa.finra.org/* diff --git a/src/finra/WILDCARD.txt b/src/finra/WILDCARD.txt new file mode 100644 index 0000000..56f8d94 --- /dev/null +++ b/src/finra/WILDCARD.txt @@ -0,0 +1,4 @@ +http://*.finra.org +http://ews.qa.finra.org/* +*.finra.org +https://ews.qa.finra.org/* diff --git a/src/finra/note.txt b/src/finra/note.txt new file mode 100644 index 0000000..89acfdd --- /dev/null +++ b/src/finra/note.txt @@ -0,0 +1 @@ +48980 https://hackerone.com/finra FINRA Response finra diff --git a/src/fireblocks/URL.txt b/src/fireblocks/URL.txt new file mode 100644 index 0000000..81bad08 --- /dev/null +++ b/src/fireblocks/URL.txt @@ -0,0 +1,4 @@ +sandbox.fireblocks.io +http://sb-mobile-api.fireblocks.io +http://sb-console-api.fireblocks.io +http://sandbox-api.fireblocks.io diff --git a/src/fireblocks/note.txt b/src/fireblocks/note.txt new file mode 100644 index 0000000..07e3147 --- /dev/null +++ b/src/fireblocks/note.txt @@ -0,0 +1 @@ +57779 https://hackerone.com/fireblocks Fireblocks fireblocks diff --git a/src/fireblocks_mpc/SOURCE_CODE.txt b/src/fireblocks_mpc/SOURCE_CODE.txt new file mode 100644 index 0000000..36a962a --- /dev/null +++ b/src/fireblocks_mpc/SOURCE_CODE.txt @@ -0,0 +1 @@ +https://github.com/fireblocks/mpc-lib diff --git a/src/fireblocks_mpc/note.txt b/src/fireblocks_mpc/note.txt new file mode 100644 index 0000000..f02d0df --- /dev/null +++ b/src/fireblocks_mpc/note.txt @@ -0,0 +1 @@ +70022 https://hackerone.com/fireblocks_mpc Fireblocks MPC fireblocks_mpc diff --git a/src/flexport_vdp/URL.txt b/src/flexport_vdp/URL.txt new file mode 100644 index 0000000..31a3a94 --- /dev/null +++ b/src/flexport_vdp/URL.txt @@ -0,0 +1,2 @@ +*.flexport.com +*.transmissionapp.com diff --git a/src/flexport_vdp/WILDCARD.txt b/src/flexport_vdp/WILDCARD.txt new file mode 100644 index 0000000..543d2bf --- /dev/null +++ b/src/flexport_vdp/WILDCARD.txt @@ -0,0 +1,4 @@ +http://*.flexport.com +http://*.transmissionapp.com +*.flexport.com +*.transmissionapp.com diff --git a/src/flexport_vdp/note.txt b/src/flexport_vdp/note.txt new file mode 100644 index 0000000..9365259 --- /dev/null +++ b/src/flexport_vdp/note.txt @@ -0,0 +1 @@ +46196 https://hackerone.com/flexport_vdp Flexport VDP flexport_vdp diff --git a/src/flickr/APPLE_STORE_APP_ID.txt b/src/flickr/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..2cff13c --- /dev/null +++ b/src/flickr/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +328407587 diff --git a/src/flickr/GOOGLE_PLAY_APP_ID.txt b/src/flickr/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..9627213 --- /dev/null +++ b/src/flickr/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.yahoo.mobile.client.android.flickr diff --git a/src/flickr/URL.txt b/src/flickr/URL.txt new file mode 100644 index 0000000..be733b1 --- /dev/null +++ b/src/flickr/URL.txt @@ -0,0 +1 @@ +*.flickr.com diff --git a/src/flickr/WILDCARD.txt b/src/flickr/WILDCARD.txt new file mode 100644 index 0000000..4d349e0 --- /dev/null +++ b/src/flickr/WILDCARD.txt @@ -0,0 +1,2 @@ +http://*.flickr.com +*.flickr.com diff --git a/src/flickr/note.txt b/src/flickr/note.txt new file mode 100644 index 0000000..e407311 --- /dev/null +++ b/src/flickr/note.txt @@ -0,0 +1 @@ +32982 https://hackerone.com/flickr Flickr flickr diff --git a/src/floqast/URL.txt b/src/floqast/URL.txt new file mode 100644 index 0000000..cbd5683 --- /dev/null +++ b/src/floqast/URL.txt @@ -0,0 +1,3 @@ +*.eu.floqast.app +api-eu.floqast.app +*.floqast.app diff --git a/src/floqast/WILDCARD.txt b/src/floqast/WILDCARD.txt new file mode 100644 index 0000000..a02ed6d --- /dev/null +++ b/src/floqast/WILDCARD.txt @@ -0,0 +1,5 @@ +http://*.eu.floqast.app +http://*.floqast.app +*.eu.floqast.app +*.floqast.app +https://*.floqast.engineering diff --git a/src/floqast/note.txt b/src/floqast/note.txt new file mode 100644 index 0000000..e332d97 --- /dev/null +++ b/src/floqast/note.txt @@ -0,0 +1 @@ +56830 https://hackerone.com/floqast FloQast floqast diff --git a/src/flox/note.txt b/src/flox/note.txt new file mode 100644 index 0000000..5c6d52e --- /dev/null +++ b/src/flox/note.txt @@ -0,0 +1 @@ +2738 https://hackerone.com/flox Flox flox diff --git a/src/flutteruki/GOOGLE_PLAY_APP_ID.txt b/src/flutteruki/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..0262079 --- /dev/null +++ b/src/flutteruki/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.flutter.bem.release diff --git a/src/flutteruki/OTHER_APK.txt b/src/flutteruki/OTHER_APK.txt new file mode 100644 index 0000000..57595c3 --- /dev/null +++ b/src/flutteruki/OTHER_APK.txt @@ -0,0 +1,3 @@ +com.paddypower.sportsbook.u.inhouse +com.betfair.sportsbook +com.betfair.exchange diff --git a/src/flutteruki/URL.txt b/src/flutteruki/URL.txt new file mode 100644 index 0000000..4b5896d --- /dev/null +++ b/src/flutteruki/URL.txt @@ -0,0 +1,41 @@ +*.betfair.com +*.paddypower.com +*.betfair.es +*.betfair.it +*.betfair.ro +*.betfair.se +*.paddypower.it +*.skygamingcontent.com +*.skycasino.com +*.sbgcdn.com +*.skybet.com +*.betviewapi.com +*.skypoker.com +*.skyvegas.com +*.skybingo.com +*.sbgcore.com +*.platformservices.io +*.skybetservices.com +*.sbgorigin.com +*.sbgservices.com +*.bonne-terre-data-layer.com +*.skybettingandgaming.com +*.bingoservices.io +*.casinoservices.io +*.msgsvc.io +*.operationstechnology.io +*.securityservices.io +*.skybet.net +*.skybet.co.uk +*.datops.io +*.hestview.com +*.sbgtest.net +*.skybettest.net +*.skybettingandgaming.design +*.skybettingandgaming.info +*.gamingtechnology.io +*.betsharedservices.io +*.plateng.io +online.*.skybingo.com +super6.skysports.com +itv7.itv.com diff --git a/src/flutteruki/WILDCARD.txt b/src/flutteruki/WILDCARD.txt new file mode 100644 index 0000000..acc28c7 --- /dev/null +++ b/src/flutteruki/WILDCARD.txt @@ -0,0 +1,74 @@ +http://*.betfair.com +http://*.paddypower.com +http://*.betfair.es +http://*.betfair.it +http://*.betfair.ro +http://*.betfair.se +http://*.paddypower.it +http://*.skygamingcontent.com +http://*.skycasino.com +http://*.sbgcdn.com +http://*.skybet.com +http://*.betviewapi.com +http://*.skypoker.com +http://*.skyvegas.com +http://*.skybingo.com +http://*.sbgcore.com +http://*.platformservices.io +http://*.skybetservices.com +http://*.sbgorigin.com +http://*.sbgservices.com +http://*.bonne-terre-data-layer.com +http://*.skybettingandgaming.com +http://*.msgsvc.io +http://*.operationstechnology.io +http://*.securityservices.io +http://*.skybet.net +http://*.skybet.co.uk +http://*.datops.io +http://*.hestview.com +http://*.sbgtest.net +http://*.skybettest.net +http://*.skybettingandgaming.design +http://*.skybettingandgaming.info +http://*.betsharedservices.io +http://*.plateng.io +*.betfair.com +*.paddypower.com +*.betfair.es +*.betfair.it +*.betfair.ro +*.betfair.se +*.paddypower.it +*.skygamingcontent.com +*.skycasino.com +*.sbgcdn.com +*.skybet.com +*.betviewapi.com +*.skypoker.com +*.skyvegas.com +*.skybingo.com +*.sbgcore.com +*.platformservices.io +*.skybetservices.com +*.sbgorigin.com +*.sbgservices.com +*.bonne-terre-data-layer.com +*.skybettingandgaming.com +*.msgsvc.io +*.operationstechnology.io +*.securityservices.io +*.skybet.net +*.skybet.co.uk +*.datops.io +*.hestview.com +*.sbgtest.net +*.skybettest.net +*.skybettingandgaming.design +*.skybettingandgaming.info +*.betsharedservices.io +*.plateng.io +*.sportinglife.com +*.paddypartners.com +*.ppbdev.com +*.dibz.co.uk diff --git a/src/flutteruki/note.txt b/src/flutteruki/note.txt new file mode 100644 index 0000000..aea9aa7 --- /dev/null +++ b/src/flutteruki/note.txt @@ -0,0 +1 @@ +24587 https://hackerone.com/flutteruki Flutter UK&I flutteruki diff --git a/src/ford/APPLE_STORE_APP_ID.txt b/src/ford/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..bd9ebbe --- /dev/null +++ b/src/ford/APPLE_STORE_APP_ID.txt @@ -0,0 +1,12 @@ +1095418609 +587040067 +599142823 +1068283395 +1316029395 +1290945517 +1142223695 +950707840 +1225744589 +1141482401 +1290960071 +1316029168 diff --git a/src/ford/GOOGLE_PLAY_APP_ID.txt b/src/ford/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..f149989 --- /dev/null +++ b/src/ford/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1,11 @@ +com.ford.fordpass +com.ford.remoteaccess +com.ford.fordalexa +com.ford.mfm +com.ford.fordplay +com.ford.performance.android.experience +com.ford.therightway +com.ford.fordvr +com.lincoln.lincolnway +com.lincoln.lincolnalexa +com.lincoln.lincolnplay diff --git a/src/ford/HARDWARE.txt b/src/ford/HARDWARE.txt new file mode 100644 index 0000000..8f84eee --- /dev/null +++ b/src/ford/HARDWARE.txt @@ -0,0 +1 @@ +Vehicle diff --git a/src/ford/URL.txt b/src/ford/URL.txt new file mode 100644 index 0000000..0ad3ee3 --- /dev/null +++ b/src/ford/URL.txt @@ -0,0 +1,5 @@ +*.ford.com +*.lincoln.com +*.quicklane.com +*.motorcraft.com +*.omnicraftautoparts.com diff --git a/src/ford/note.txt b/src/ford/note.txt new file mode 100644 index 0000000..312c4e8 --- /dev/null +++ b/src/ford/note.txt @@ -0,0 +1 @@ +35812 https://hackerone.com/ford Ford ford diff --git a/src/forescout_technologies/CIDR.txt b/src/forescout_technologies/CIDR.txt new file mode 100644 index 0000000..4e9f0de --- /dev/null +++ b/src/forescout_technologies/CIDR.txt @@ -0,0 +1,9 @@ +135.84.145.0/27 +38.140.238.56/29 +97.105.243.96/28 +64.47.18.80/29 +194.90.25.80/29 +194.90.151.192/28 +194.90.89.165/32 +212.143.112.81/29 +64.84.60.0/24 diff --git a/src/forescout_technologies/HARDWARE.txt b/src/forescout_technologies/HARDWARE.txt new file mode 100644 index 0000000..94c2f0e --- /dev/null +++ b/src/forescout_technologies/HARDWARE.txt @@ -0,0 +1,2 @@ +CounterAct 8.3 +CounterAct 8.4 diff --git a/src/forescout_technologies/URL.txt b/src/forescout_technologies/URL.txt new file mode 100644 index 0000000..5735e05 --- /dev/null +++ b/src/forescout_technologies/URL.txt @@ -0,0 +1,91 @@ +www.forescout.com +datapod-2-ingest.Acceptance.ForescoutCloud.net +datapod-2-query.Acceptance.ForescoutCloud.net +datapod-1-ingest.Production.ForescoutCloud.net +datapod-1-query.Production.ForescoutCloud.net +mgmtpod-1-dashboard.Production.ForescoutCloud.net +mgmtpod-1.Production.ForescoutCloud.net +logstash-props.devicecloud.acceptance.forescoutcloud.net +datapod-1-100-druid-ingest.development.forescoutcloud.net +datapod-1-100-druid-query.development.forescoutcloud.net +datapod-1-100-druid-ingest.Testing.ForescoutCloud.net +a360f0bcc63ca11ea92550aeac091f3d-1101372245.us-east-1.elb.amazonaws.com +datapod-1-druid-ingest.production.forescoutcloud.net +datapod-1-100-druid-query.production.forescoutcloud.net +datapod-2-druid-ingest.production.forescoutcloud.net +https://telemetry-polling.devicecloud.acceptance.forescoutcloud.net/v1/upload +https://telemetry-polling.devicecloud.acceptance.forescoutcloud.net/v1/polling +https://telemetry-polling.devicecloud.acceptance.forescoutcloud.net/v1/package +logstash-props.devicecloud.production.forescoutcloud.net/api/v1/properties +backend-api.devicecloud.production.forescoutcloud.net/api/v1/settings +datapod-1-druid-ingest.production.forescoutcloud.net/v1/upload +mgmtpod-1.production.forescoutcloud.net/oauth/token +datapod-1-druid-query.production.forescoutcloud.net/v2/query/groupToGroup +datapod-1-druid-query.production.forescoutcloud.net/v2/query/firstReportTimeEntry +datapod-1-druid-query.production.forescoutcloud.net/v2/query/ipList +datapod-1-druid-query.production.forescoutcloud.net/v3/matrixOverview +datapod-1-druid-query.production.forescoutcloud.net/v3/query/overlappingZones +datapod-1-druid-query.production.forescoutcloud.net/v1/query/agg +datapod-1-druid-query.production.forescoutcloud.net/v1/polling +datapod-1-druid-query.production.forescoutcloud.net/v2/query/overlappingGroups +datapod-1-druid-query.production.forescoutcloud.net/v2/matrixOverview +datapod-1-druid-query.production.forescoutcloud.net/v3/query/zoneToZone +datapod-1-druid-query.production.forescoutcloud.net/v2/deleteStatus +datapod-1-druid-query.production.forescoutcloud.net/v2/query/ips/bySrc +datapod-1-druid-query.production.forescoutcloud.net/v2/service-list +datapod-1-druid-query.production.forescoutcloud.net/v2/query/ips/byDst/details +datapod-1-druid-query.production.forescoutcloud.net/v2/services +agatha.eyesightx.testing.forescoutcloud.net +app.eyesightx.testing.forescoutcloud.net +risk-api.eyesightx.testing.forescoutcloud.net +mgmt-sensors.eyesightx.testing.forescoutcloud.net +obs-sensors.eyesightx.testing.forescoutcloud.net +pulsar.eyesightx.testing.forescoutcloud.net +iris-testing-us-east-1-nlb-4df4bbde6f6e2bbb.elb.us-east-1.amazonaws.com +updates.forescout.com +streaming.iris.acceptance.forescoutcloud.net +app.iris.acceptance.forescoutcloud.net +mgmt-sensors.iris.acceptance.forescoutcloud.net +obs-sensors.iris.acceptance.forescoutcloud.net +streaming-api.iris.acceptance.forescoutcloud.net +aebddc74953f248bc8455665b0f7d47b-78af959a11e5d0c1.elb.us-east-1.amazonaws.com +streaming.iris.production.forescoutcloud.net +app.iris.production.forescoutcloud.net +mgmt-sensors.iris.production.forescoutcloud.net +obs-sensors.iris.production.forescoutcloud.net +streaming-api.iris.production.forescoutcloud.net +ab2b0c50cdc7b445391f99d4957850c5-cd4ccfdb37dfafad.elb.us-east-1.amazonaws.com +streaming-gw.iris.production.forescoutcloud.net +community.forescout.com +silentdefense-training.forescout.com +us.forescout.cloud +uk.forescout.cloud +de.forescout.cloud +cysiv.com +app.command.cysiv.com +datapod-2-ingest.acceptance.forescoutcloud.net +datapod-2-query.acceptance.forescoutcloud.net +datapod-1-ingest.production.forescoutcloud.net +datapod-1-query.production.forescoutcloud.net +mgmtpod-1-dashboard.production.forescoutcloud.net +mgmtpod-1.production.forescoutcloud.net +datapod-1-100-druid-ingest.testing.forescoutcloud.net +http://logstash-props.devicecloud.production.forescoutcloud.net/api/v1/properties +http://backend-api.devicecloud.production.forescoutcloud.net/api/v1/settings +http://datapod-1-druid-ingest.production.forescoutcloud.net/v1/upload +http://mgmtpod-1.production.forescoutcloud.net/oauth/token +http://datapod-1-druid-query.production.forescoutcloud.net/v2/query/grouptogroup +http://datapod-1-druid-query.production.forescoutcloud.net/v2/query/firstreporttimeentry +http://datapod-1-druid-query.production.forescoutcloud.net/v2/query/iplist +http://datapod-1-druid-query.production.forescoutcloud.net/v3/matrixoverview +http://datapod-1-druid-query.production.forescoutcloud.net/v3/query/overlappingzones +http://datapod-1-druid-query.production.forescoutcloud.net/v1/query/agg +http://datapod-1-druid-query.production.forescoutcloud.net/v1/polling +http://datapod-1-druid-query.production.forescoutcloud.net/v2/query/overlappinggroups +http://datapod-1-druid-query.production.forescoutcloud.net/v2/matrixoverview +http://datapod-1-druid-query.production.forescoutcloud.net/v3/query/zonetozone +http://datapod-1-druid-query.production.forescoutcloud.net/v2/deletestatus +http://datapod-1-druid-query.production.forescoutcloud.net/v2/query/ips/bysrc +http://datapod-1-druid-query.production.forescoutcloud.net/v2/service-list +http://datapod-1-druid-query.production.forescoutcloud.net/v2/query/ips/bydst/details +http://datapod-1-druid-query.production.forescoutcloud.net/v2/services diff --git a/src/forescout_technologies/note.txt b/src/forescout_technologies/note.txt new file mode 100644 index 0000000..895bf47 --- /dev/null +++ b/src/forescout_technologies/note.txt @@ -0,0 +1 @@ +39489 https://hackerone.com/forescout_technologies ForeScout Technologies forescout_technologies diff --git a/src/formassembly/APPLE_STORE_APP_ID.txt b/src/formassembly/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..fe3fc3a --- /dev/null +++ b/src/formassembly/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +1120698698 diff --git a/src/formassembly/OTHER.txt b/src/formassembly/OTHER.txt new file mode 100644 index 0000000..24bac5e --- /dev/null +++ b/src/formassembly/OTHER.txt @@ -0,0 +1 @@ +https://wordpress.org/plugins/formassembly-web-forms/ diff --git a/src/formassembly/URL.txt b/src/formassembly/URL.txt new file mode 100644 index 0000000..0924953 --- /dev/null +++ b/src/formassembly/URL.txt @@ -0,0 +1,5 @@ +appsecfa.tfaforms.net +app.formassembly.com +typeahead.formassembly.com +www.formassembly.com +formassembly.com diff --git a/src/formassembly/note.txt b/src/formassembly/note.txt new file mode 100644 index 0000000..cfa0722 --- /dev/null +++ b/src/formassembly/note.txt @@ -0,0 +1 @@ +224 https://hackerone.com/formassembly FormAssembly formassembly diff --git a/src/fossil/URL.txt b/src/fossil/URL.txt new file mode 100644 index 0000000..6f72a31 --- /dev/null +++ b/src/fossil/URL.txt @@ -0,0 +1,558 @@ +*.fossil.com +shard.wwwfeo.fossil.com.edgekey.net +m.fossil.co.jp +m.fossil.co.uk +m.fossil.de +store.emporioarmaniwatches.com +www.fossil.ch +www.fossil.co.jp +www.fossil.co.kr +www.fossil.co.uk +www.fossil.co.za +www.fossil.com.au +www.fossil.de +www.fossil.es +www.fossil.fr +www.fossil.hk +www.fossil.in +www.fossil.it +www.fossil.nl +www.fossilaustralia.com.au +www.fossilcanada.ca +www.fossilchina.cn +www.fossilglobal.com +www.fossilnorway.no +www.fossilsingapore.com.sg +www.fossilsweden.se +*.michele.com +*.misfit.com +*.skagen.com +www.skagenbrand.de +www.skagenglobal.com +www.skagenwatch.co.uk +www.watchstation.co.uk +*.watchstation.com +*.zodiacwatches.com +dev.shopkatchin.com +jp.misfit.com +m.skagen.de +prod.shopkatchin.com +www.111watches.com +www.fossil.be +www.fossilfoundation.org +www.skagen-japan.com +www.watchstation.de +www.watchstation.fr +www.fossil.co.id +cdgcitizen.com +cdgfossil.com +fossilcare.com +fossilcrm.com +fossilgroup.com +linkplatforms.com +misfitwearable.com +smartwatchstations.com +fossil.com.vn +www.shopkatchin.com +fossil-staging2.cloud.akeneo.com +fossil.cloud.akeneo.com +http://www.findemand.in/dmdprod/ +fossilhk.com +fossilmy.com +www.fossilsg.com +https://smartstore.naver.com/fossilkorea +watchstationhk.com +www.watchstationindia.com +fossil.at +10tenmagazine.com +54fossil.com +abacuswatches.com +abacuswatches.net +afossil.com +antima.ch +armani-watches.eu +b2btimeframes.com +cmd-network.com +cmdportfolio.com +colortheorywatches.com +datafossil.com +dieselgioielli.it +dieseljewellery.it +dieselorologi.it +dieseltimeframes.at +dieseltimeframes.cn +dieseltimeframes.co.kr +dieseltimeframes.co.nl +dieseltimeframes.co.uk +dieseltimeframes.de +dieseltimeframes.fr +dieseltimeframes.it +dieseltimeframes.jp +dieseltimeframes.kr +erelic.com +fgcdn.com +fgservices.com +fgtoolbox.com +fiftyfourfossil.com +forrus.com.hk +fossi.com +fossil-asia.com +fossil-polska.pl +fossil-schmuck.at +fossil-schmuck.de +fossil-test-demo.com +fossil-uhren.de +fossil.asia +fossil.cl +fossil.co +fossil.co.in +fossil.co.no +fossil.co.th +fossil.co.uk +fossil.com.es +fossil.com.lk +fossil.com.mo +fossil.com.mx +fossil.com.my +fossil.com.ph +fossil.com.pk +fossil.com.ro +fossil.com.tw +fossil.eu +fossil.ie +fossil.kr +fossil.li +fossil.lk +fossil.mo +fossil.mx +fossil.my +fossil.net.cn +fossil.net.nz +fossil.org.nz +fossil.ph +fossil.pt +fossil.se +fossil.sg +fossil.tw +fossil54.com +fossilcanada.com +fossilchina.com.cn +fossilchina.xn--fiqs8s +fossilcollectorsclub.com +fossilcorporatemarkets.com +fossildenmark.dk +fossilfiftyfour.com +fossilfootwear.ca +fossilfootwear.ch +fossilfootwear.cn +fossilfootwear.co.uk +fossilfootwear.com.es +fossilfootwear.com.fr +fossilfootwear.com.mo +fossilfootwear.com.mx +fossilfootwear.es +fossilfootwear.eu +fossilfootwear.hk +fossilfootwear.in +fossilfootwear.it +fossilfootwear.jp +fossilfootwear.kr +fossilfootwear.my +fossilfootwear.nl +fossilfootwear.ph +fossilfootwear.pk +fossilfootwear.sg +fossilfootwear.tw +fossilfootwear.vn +fossilfoundation.com +fossilgroup.cn +fossilgroup.co.nz +fossilgroup.com.au +fossilgroup.com.bd +fossilgroup.fr +fossilgroup.hk +fossilgroup.in +fossilgroup.jp +fossilgroup.kr +fossilgroup.nl +fossilgroup.nz +fossilgroup.pt +fossilgroup.sg +fossilgroup.tw +fossilgroup.us +fossilhorologes.nl +fossilindia.com +fossiljapansalestore.com +fossilmalaysia.com +fossilnorway.co.no +fossilnz.co.nz +fossilnz.net.nz +fossilnz.nz +fossilonline.co.za +fossilpolska.pl +fossilq.com +fossilq.tv +fossilqmuse.tv +fossilqpilot.tv +fossilqranger.tv +fossilqwanderer.tv +fossilqwatch.tv +fossilrevelver.tv +fossilsafeworkplace.com +fossilschmuck.at +fossilschmuck.com +fossilschmuck.de +fossilshoe.at +fossilshoe.ca +fossilshoe.ch +fossilshoe.cn +fossilshoe.co.uk +fossilshoe.com.es +fossilshoe.com.mo +fossilshoe.com.mx +fossilshoe.de +fossilshoe.es +fossilshoe.eu +fossilshoe.fr +fossilshoe.hk +fossilshoe.in +fossilshoe.it +fossilshoe.jp +fossilshoe.kr +fossilshoe.my +fossilshoe.net.cn +fossilshoe.nl +fossilshoe.org.cn +fossilshoe.ph +fossilshoe.pk +fossilshoe.sg +fossilshoe.tw +fossilshoe.vn +fossilshoes.at +fossilshoes.ch +fossilshoes.cn +fossilshoes.co.uk +fossilshoes.com.au +fossilshoes.com.mo +fossilshoes.com.mx +fossilshoes.de +fossilshoes.eu +fossilshoes.fr +fossilshoes.hk +fossilshoes.in +fossilshoes.jp +fossilshoes.kr +fossilshoes.my +fossilshoes.nl +fossilshoes.ph +fossilshoes.pk +fossilshoes.sg +fossilshoes.tw +fossilshoes.vn +fossilsignapore.sg +fossilsing.com.sg +fossilsingapore.sg +fossilspecialmarkets.com +fossilstore.ca +fossilstores.ca +fossiluhren.at +fossilunbound.com +fossilunbound.org +fossilwatch.ca +fossilwatches.info +fossilwatchesstore.com +fossilworkflow.com +googledev.fossil.com +inkandironswatches.com +irelic.com +karlwatches.com +lewatchcollections.com +logisav.com +maketimeforgood.com +metro-servicecenter.com +metroservicecenter.com +metroservicecentre.ca +metroservicecentrecanada.ca +metrowatchcompany.com +michele-watches.com +michele.asia +michele.co +michele.co.kr +michele.eu +michele.jp +michele.mobi +micheleuhren.de +michelewatch.co.uk +michelewatch.com +michelewatch.de +michelewatch.jp +michelewatch.net +michelewatches.biz +michelewatches.ch +michelewatches.co.uk +michelewatches.com +michelewatches.de +michelewatches.jp +michelewatches.net +michelewatches.org +michelewatches.us +michellewatch.com +michellewatches.com +modernwatch.com +modernwatch.net +modernwatchco.com +modernwatchco.net +modernwatchcompany.com +modernwatchcompany.net +modwatchco.com +modwatchco.net +monamiewatch.com +monamiewatches.com +morewearablewearable.com +mw-michele.com +mw-watches.com +mwmichele.com +mwwatches.com +myskagen.info +myskagen.net +myskagen.org +olieoliverwatches.com +oneelevenwatches.com +relic.co +relicbrand.com +relicbrand.net +relicshop.com +relicstore.com +relicwatch.com +relicwatches.com +relicwatches.net +shopcatchin.com +shopkatchin.com +skagen-designs.at +skagen-designs.be +skagen-designs.ch +skagen-designs.de +skagen-designs.lu +skagen-designs.nl +skagen.ae +skagen.asia +skagen.bg +skagen.ch +skagen.co +skagen.co.il +skagen.co.in +skagen.co.nl +skagen.co.nz +skagen.co.th +skagen.co.uk +skagen.co.za +skagen.com.au +skagen.com.pl +skagen.com.tr +skagen.com.ua +skagen.de.com +skagen.es +skagen.fr +skagen.gr +skagen.hk +skagen.in +skagen.it +skagen.kr +skagen.mx +skagen.my +skagen.ph +skagen.pk +skagen.pt +skagen.ro +skagen.sk +skagen.tw +skagen.vn +skagen.xn--kpry57d +skagen20years.info +skagen20years.net +skagen20years.org +skagenbrand.at +skagenbrand.cn +skagenbrand.hk +skagenbrand.it +skagenbrand.kr +skagenbrand.my +skagenbrand.sg +skagenbrand.tw +skagenclocks.biz +skagenclocks.com +skagenclocks.info +skagenclocks.mobi +skagenclocks.net +skagenclocks.org +skagenclocks.us +skagenconnected.com +skagencorporate.com +skagendenmark.ca +skagendenmark.cn +skagendenmark.fr +skagendenmark.hk +skagendenmark.kr +skagendenmark.tw +skagendesign.cn +skagendesign.hk +skagendesign.kr +skagendesign.tw +skagendesigns.at +skagendesigns.be +skagendesigns.biz +skagendesigns.cn +skagendesigns.co.uk +skagendesigns.com +skagendesigns.dk +skagendesigns.fr +skagendesigns.hk +skagendesigns.jp +skagendesigns.kr +skagendesigns.lu +skagendesigns.mobi +skagendesigns.nl +skagendesigns.org +skagendesigns.ru +skagendesigns.se +skagendesigns.us +skagendesignsmedia.com +skagendesings.com +skagengermany.de +skagenhorloge.nl +skagenhorologe.nl +skagenhygge.co.uk +skagenhygge.com +skagenjewelry.com +skagenjewelry.info +skagenjewelry.net +skagenjewelry.org +skagenonline.com +skagenora.hu +skagenoutlet.com +skagenoutlet.info +skagenoutlet.net +skagenoutlet.org +skagenretail.com +skagenretail.info +skagenretail.net +skagenretail.org +skagensale.com +skagensale.net +skagensdesigns.cn +skagenshades.com +skagenshadows.com +skagenshadows.net +skagensite.com +skagensteel.com +skagensteel.info +skagensteel.net +skagensteel.org +skagenstore.ca +skagenstore.com +skagensunglasses.com +skagensunglasses.info +skagensunglasses.net +skagensunglasses.org +skagentitanium.biz +skagentitanium.com +skagentitanium.info +skagentitanium.mobi +skagentitanium.net +skagentitanium.org +skagentitanium.us +skagenuk.com +skagenwatch.at +skagenwatch.be +skagenwatch.bg +skagenwatch.cn +skagenwatch.co.nz +skagenwatch.com.au +skagenwatch.de +skagenwatch.dk +skagenwatch.es +skagenwatch.fr +skagenwatch.hk +skagenwatch.ie +skagenwatch.in +skagenwatch.info +skagenwatch.it +skagenwatch.jp +skagenwatch.kr +skagenwatch.mx +skagenwatch.net +skagenwatch.org +skagenwatch.pl +skagenwatch.se +skagenwatch.sg +skagenwatch.tw +skagenwatches.at +skagenwatches.biz +skagenwatches.ca +skagenwatches.cn +skagenwatches.de +skagenwatches.dk +skagenwatches.hk +skagenwatches.info +skagenwatches.it +skagenwatches.jp +skagenwatches.mx +skagenwatches.nl +skagenwholesale.com +skagenwholesale.info +skagenwholesale.net +skagenwholesale.org +skagn.com +skkagen.com +stpch.com +strlctr.com +swiss-stc.ch +swiss-stc.com +swisstp.com +ten10magazine.com +tentenmagazine.com +thefashioninfluencerslab.com +thefossilcollectorsclub.com +themorewearablewearable.com +themorewearablewearable.net +thinmeshwatch.com +uhren-fossil.de +watchdom.com.hk +watchkarl.com +watchstation.at +watchstation.be +watchstation.ch +watchstation.cl +watchstation.co +watchstation.com.au +watchstation.com.cn +watchstation.es +watchstationglobal.com +wearablessupport.com +wearvolli.com +wsiwatches.cn +wsiwatches.co.in +wsiwatches.co.kr +wsiwatches.co.nz +wsiwatches.com +wsiwatches.com.au +wsiwatches.com.cn +wsiwatches.com.my +wsiwatches.com.ph +wsiwatches.com.sg +wsiwatches.com.tw +wsiwatches.hk +wsiwatches.in +wsiwatches.jp +wsiwatches.kr +wsiwatches.nz +wsiwatches.ph +wsiwatches.sg +xn--sbu07ojn6a.com +zegarkifossil.pl +zodiac.co +zodiacbrand.com +zodiacbrand.net +zodiacwatches.mobi +fgemp.fnfsale.in +fossil.fnfsale.in diff --git a/src/fossil/WILDCARD.txt b/src/fossil/WILDCARD.txt new file mode 100644 index 0000000..581c811 --- /dev/null +++ b/src/fossil/WILDCARD.txt @@ -0,0 +1,924 @@ +http://*.fossil.com +http://*.michele.com +http://*.misfit.com +http://*.skagen.com +http://*.watchstation.com +http://*.zodiacwatches.com +*.fossil.com +*.michele.com +*.misfit.com +*.skagen.com +*.watchstation.com +*.zodiacwatches.com +*.cdgfossil.com +*.linkplatforms.com +*.cdgcitizen.com +*.fossil.vn +*.smartwatchstations.com +*.misfitwearables.com +*.fossilgroup.com +*.fossil.com.hk +*.fossil.com.au +*.10tenmagazine.com +*.111watches.com +*.54fossil.com +*.abacuswatches.com +*.abacuswatches.net +*.antima.ch +*.armani-watches.eu +*.b2btimeframes.com +*.cmd-network.com +*.cmdportfolio.com +*.colortheorywatches.com +*.datafossil.com +*.dieselgioielli.it +*.dieseljewellery.it +*.dieselorologi.it +*.dieseltimeframes.at +*.dieseltimeframes.cn +*.dieseltimeframes.co.kr +*.dieseltimeframes.co.nl +*.dieseltimeframes.co.uk +*.dieseltimeframes.de +*.dieseltimeframes.fr +*.dieseltimeframes.it +*.dieseltimeframes.jp +*.dieseltimeframes.kr +*.erelic.com +*.fgcdn.com +*.fgservices.com +*.fgtoolbox.com +*.fiftyfourfossil.com +*.forrus.com.hk +*.fossi.com +*.fossil-asia.com +*.fossil-polska.pl +*.fossil-schmuck.at +*.fossil-schmuck.de +*.fossil-uhren.de +*.fossil.asia +*.fossil.at +*.fossil.be +*.fossil.ch +*.fossil.cl +*.fossil.co +*.fossil.co.id +*.fossil.co.in +*.fossil.co.jp +*.fossil.co.kr +*.fossil.co.no +*.fossil.co.th +*.fossil.co.uk +*.fossil.co.za +*.fossil.com.es +*.fossil.com.lk +*.fossil.com.mo +*.fossil.com.mx +*.fossil.com.my +*.fossil.com.ph +*.fossil.com.pk +*.fossil.com.ro +*.fossil.com.tw +*.fossil.com.vn +*.fossil.de +*.fossil.es +*.fossil.eu +*.fossil.fr +*.fossil.hk +*.fossil.ie +*.fossil.in +*.fossil.it +*.fossil.kr +*.fossil.li +*.fossil.lk +*.fossil.mo +*.fossil.mx +*.fossil.my +*.fossil.net.cn +*.fossil.net.nz +*.fossil.nl +*.fossil.org.nz +*.fossil.ph +*.fossil.pt +*.fossil.se +*.fossil.sg +*.fossil.tw +*.fossil54.com +*.fossilaustralia.com.au +*.fossilcanada.ca +*.fossilcanada.com +*.fossilcare.com +*.fossilchina.cn +*.fossilchina.com.cn +*.fossilchina.xn--fiqs8s +*.fossilcollectorsclub.com +*.fossilcorporatemarkets.com +*.fossilcrm.com +*.fossildenmark.dk +*.fossilfiftyfour.com +*.fossilfootwear.ca +*.fossilfootwear.ch +*.fossilfootwear.cn +*.fossilfootwear.co.uk +*.fossilfootwear.com.es +*.fossilfootwear.com.fr +*.fossilfootwear.com.mo +*.fossilfootwear.com.mx +*.fossilfootwear.es +*.fossilfootwear.eu +*.fossilfootwear.hk +*.fossilfootwear.in +*.fossilfootwear.it +*.fossilfootwear.jp +*.fossilfootwear.kr +*.fossilfootwear.my +*.fossilfootwear.nl +*.fossilfootwear.ph +*.fossilfootwear.pk +*.fossilfootwear.sg +*.fossilfootwear.tw +*.fossilfootwear.vn +*.fossilfoundation.com +*.fossilfoundation.org +*.fossilglobal.com +*.fossilgroup.cn +*.fossilgroup.co.nz +*.fossilgroup.com.au +*.fossilgroup.com.bd +*.fossilgroup.fr +*.fossilgroup.hk +*.fossilgroup.in +*.fossilgroup.jp +*.fossilgroup.kr +*.fossilgroup.nl +*.fossilgroup.nz +*.fossilgroup.pt +*.fossilgroup.sg +*.fossilgroup.tw +*.fossilgroup.us +*.fossilhorologes.nl +*.fossilindia.com +*.fossiljapansalestore.com +*.fossilmalaysia.com +*.fossilnorway.co.no +*.fossilnorway.no +*.fossilnz.co.nz +*.fossilnz.net.nz +*.fossilnz.nz +*.fossilonline.co.za +*.fossilpolska.pl +*.fossilq.com +*.fossilq.tv +*.fossilqmuse.tv +*.fossilqpilot.tv +*.fossilqranger.tv +*.fossilqwanderer.tv +*.fossilqwatch.tv +*.fossilrevelver.tv +*.fossilsafeworkplace.com +*.fossilschmuck.at +*.fossilschmuck.com +*.fossilschmuck.de +*.fossilshoe.at +*.fossilshoe.ca +*.fossilshoe.ch +*.fossilshoe.cn +*.fossilshoe.co.uk +*.fossilshoe.com.es +*.fossilshoe.com.mo +*.fossilshoe.com.mx +*.fossilshoe.de +*.fossilshoe.es +*.fossilshoe.eu +*.fossilshoe.fr +*.fossilshoe.hk +*.fossilshoe.in +*.fossilshoe.it +*.fossilshoe.jp +*.fossilshoe.kr +*.fossilshoe.my +*.fossilshoe.net.cn +*.fossilshoe.nl +*.fossilshoe.org.cn +*.fossilshoe.ph +*.fossilshoe.pk +*.fossilshoe.sg +*.fossilshoe.tw +*.fossilshoe.vn +*.fossilshoes.at +*.fossilshoes.ch +*.fossilshoes.cn +*.fossilshoes.co.uk +*.fossilshoes.com.au +*.fossilshoes.com.mo +*.fossilshoes.com.mx +*.fossilshoes.de +*.fossilshoes.eu +*.fossilshoes.fr +*.fossilshoes.hk +*.fossilshoes.in +*.fossilshoes.jp +*.fossilshoes.kr +*.fossilshoes.my +*.fossilshoes.nl +*.fossilshoes.ph +*.fossilshoes.pk +*.fossilshoes.sg +*.fossilshoes.tw +*.fossilshoes.vn +*.fossilsignapore.sg +*.fossilsing.com.sg +*.fossilsingapore.com.sg +*.fossilsingapore.sg +*.fossilspecialmarkets.com +*.fossilstore.ca +*.fossilstores.ca +*.fossilsweden.se +*.fossiluhren.at +*.fossilunbound.com +*.fossilunbound.org +*.fossilwatch.ca +*.fossilwatches.info +*.fossilwatchesstore.com +*.fossilworkflow.com +*.googledev.fossil.com +*.inkandironswatches.com +*.irelic.com +*.karlwatches.com +*.lewatchcollections.com +*.logisav.com +*.maketimeforgood.com +*.metro-servicecenter.com +*.metroservicecenter.com +*.metroservicecentre.ca +*.metroservicecentrecanada.ca +*.metrowatchcompany.com +*.michele-watches.com +*.michele.asia +*.michele.co +*.michele.co.kr +*.michele.eu +*.michele.jp +*.michele.mobi +*.micheleuhren.de +*.michelewatch.co.uk +*.michelewatch.com +*.michelewatch.de +*.michelewatch.jp +*.michelewatch.net +*.michelewatches.biz +*.michelewatches.ch +*.michelewatches.co.uk +*.michelewatches.com +*.michelewatches.de +*.michelewatches.jp +*.michelewatches.net +*.michelewatches.org +*.michelewatches.us +*.michellewatch.com +*.michellewatches.com +*.modernwatch.com +*.modernwatch.net +*.modernwatchco.com +*.modernwatchco.net +*.modernwatchcompany.com +*.modernwatchcompany.net +*.modwatchco.com +*.modwatchco.net +*.monamiewatch.com +*.monamiewatches.com +*.morewearablewearable.com +*.mw-michele.com +*.mw-watches.com +*.mwmichele.com +*.mwwatches.com +*.myskagen.info +*.myskagen.net +*.myskagen.org +*.olieoliverwatches.com +*.oneelevenwatches.com +*.relic.co +*.relicbrand.com +*.relicbrand.net +*.relicshop.com +*.relicstore.com +*.relicwatch.com +*.relicwatches.com +*.relicwatches.net +*.shopcatchin.com +*.shopkatchin.com +*.skagen-designs.at +*.skagen-designs.be +*.skagen-designs.ch +*.skagen-designs.de +*.skagen-designs.lu +*.skagen-designs.nl +*.skagen-japan.com +*.skagen.ae +*.skagen.asia +*.skagen.bg +*.skagen.ch +*.skagen.co +*.skagen.co.il +*.skagen.co.in +*.skagen.co.nl +*.skagen.co.nz +*.skagen.co.th +*.skagen.co.uk +*.skagen.co.za +*.skagen.com.au +*.skagen.com.pl +*.skagen.com.tr +*.skagen.com.ua +*.skagen.de +*.skagen.de.com +*.skagen.es +*.skagen.fr +*.skagen.gr +*.skagen.hk +*.skagen.in +*.skagen.it +*.skagen.kr +*.skagen.mx +*.skagen.my +*.skagen.ph +*.skagen.pk +*.skagen.pt +*.skagen.ro +*.skagen.sk +*.skagen.tw +*.skagen.vn +*.skagen.xn--kpry57d +*.skagen20years.info +*.skagen20years.net +*.skagen20years.org +*.skagenbrand.at +*.skagenbrand.cn +*.skagenbrand.de +*.skagenbrand.hk +*.skagenbrand.it +*.skagenbrand.kr +*.skagenbrand.my +*.skagenbrand.sg +*.skagenbrand.tw +*.skagenclocks.biz +*.skagenclocks.com +*.skagenclocks.info +*.skagenclocks.mobi +*.skagenclocks.net +*.skagenclocks.org +*.skagenclocks.us +*.skagenconnected.com +*.skagencorporate.com +*.skagendenmark.ca +*.skagendenmark.cn +*.skagendenmark.fr +*.skagendenmark.hk +*.skagendenmark.kr +*.skagendenmark.tw +*.skagendesign.cn +*.skagendesign.hk +*.skagendesign.kr +*.skagendesign.tw +*.skagendesigns.at +*.skagendesigns.be +*.skagendesigns.biz +*.skagendesigns.cn +*.skagendesigns.co.uk +*.skagendesigns.com +*.skagendesigns.dk +*.skagendesigns.fr +*.skagendesigns.hk +*.skagendesigns.jp +*.skagendesigns.kr +*.skagendesigns.lu +*.skagendesigns.mobi +*.skagendesigns.nl +*.skagendesigns.org +*.skagendesigns.ru +*.skagendesigns.se +*.skagendesigns.us +*.skagendesignsmedia.com +*.skagendesings.com +*.skagengermany.de +*.skagenglobal.com +*.skagenhorloge.nl +*.skagenhorologe.nl +*.skagenhygge.co.uk +*.skagenhygge.com +*.skagenjewelry.com +*.skagenjewelry.info +*.skagenjewelry.net +*.skagenjewelry.org +*.skagenonline.com +*.skagenora.hu +*.skagenoutlet.com +*.skagenoutlet.info +*.skagenoutlet.net +*.skagenoutlet.org +*.skagenretail.com +*.skagenretail.info +*.skagenretail.net +*.skagenretail.org +*.skagensale.com +*.skagensale.net +*.skagensdesigns.cn +*.skagenshades.com +*.skagenshadows.com +*.skagenshadows.net +*.skagensite.com +*.skagensteel.com +*.skagensteel.info +*.skagensteel.net +*.skagensteel.org +*.skagenstore.ca +*.skagenstore.com +*.skagensunglasses.com +*.skagensunglasses.info +*.skagensunglasses.net +*.skagensunglasses.org +*.skagentitanium.biz +*.skagentitanium.com +*.skagentitanium.info +*.skagentitanium.mobi +*.skagentitanium.net +*.skagentitanium.org +*.skagentitanium.us +*.skagenuk.com +*.skagenwatch.at +*.skagenwatch.be +*.skagenwatch.bg +*.skagenwatch.cn +*.skagenwatch.co.nz +*.skagenwatch.co.uk +*.skagenwatch.com.au +*.skagenwatch.de +*.skagenwatch.dk +*.skagenwatch.es +*.skagenwatch.fr +*.skagenwatch.hk +*.skagenwatch.ie +*.skagenwatch.in +*.skagenwatch.info +*.skagenwatch.it +*.skagenwatch.jp +*.skagenwatch.kr +*.skagenwatch.mx +*.skagenwatch.net +*.skagenwatch.org +*.skagenwatch.pl +*.skagenwatch.se +*.skagenwatch.sg +*.skagenwatch.tw +*.skagenwatches.at +*.skagenwatches.biz +*.skagenwatches.ca +*.skagenwatches.cn +*.skagenwatches.de +*.skagenwatches.dk +*.skagenwatches.hk +*.skagenwatches.info +*.skagenwatches.it +*.skagenwatches.jp +*.skagenwatches.mx +*.skagenwatches.nl +*.skagenwholesale.com +*.skagenwholesale.info +*.skagenwholesale.net +*.skagenwholesale.org +*.skagn.com +*.skkagen.com +*.stpch.com +*.strlctr.com +*.swiss-stc.ch +*.swiss-stc.com +*.swisstp.com +*.ten10magazine.com +*.tentenmagazine.com +*.thefashioninfluencerslab.com +*.thefossilcollectorsclub.com +*.themorewearablewearable.com +*.themorewearablewearable.net +*.thinmeshwatch.com +*.uhren-fossil.de +*.watchdom.com.hk +*.watchkarl.com +*.watchstation.at +*.watchstation.be +*.watchstation.ch +*.watchstation.cl +*.watchstation.co +*.watchstation.co.uk +*.watchstation.com.au +*.watchstation.com.cn +*.watchstation.de +*.watchstation.es +*.watchstation.fr +*.watchstationglobal.com +*.wearablessupport.com +*.wearvolli.com +*.wsiwatches.cn +*.wsiwatches.co.in +*.wsiwatches.co.kr +*.wsiwatches.co.nz +*.wsiwatches.com +*.wsiwatches.com.au +*.wsiwatches.com.cn +*.wsiwatches.com.my +*.wsiwatches.com.ph +*.wsiwatches.com.sg +*.wsiwatches.com.tw +*.wsiwatches.hk +*.wsiwatches.in +*.wsiwatches.jp +*.wsiwatches.kr +*.wsiwatches.nz +*.wsiwatches.ph +*.wsiwatches.sg +*.xn--sbu07ojn6a.com +*.zegarkifossil.pl +*.zodiac.co +*.zodiacbrand.com +*.zodiacbrand.net +*.zodiacwatches.mobi +*.fossil.com.br +*.fossilsg.com +*.watchstationindia.com +*.watchstationhk.com +*.emporioarmaniwatches.com +*.fossilmy.com +*.fossilhk.com +*.afossil.com +*.antimaprivatelabel.com +*.athletetiming.com +*.bigtic.com +*.bodysurfwatches.biz +*.bodysurfwatches.com +*.bodysurfwatches.info +*.bodysurfwatches.net +*.bodysurfwatches.org +*.buildawatch.net +*.defenderbrand.com +*.defendersports.com +*.dieseljewellery.co.uk +*.dieseljewellery.de +*.dieseljewelleryshop.co.uk +*.dieseljewelry.co.uk +*.dieselschmuck.de +*.dieselschmuckshop.de +*.dieseltimeframe.nl +*.dieseluhrenshop.de +*.dieselwatches.de +*.dieselwatchshop.co.uk +*.donghofossilchinhhang.com +*.efossil.pl +*.fosil.net +*.fossiil.com +*.fossil-handbags.net +*.fossil-latam.com +*.fossil-watch.com +*.fossil-watch.info +*.fossil-watches.info +*.fossil-watches.net +*.fossil.co.rs +*.fossil.com.ar +*.fossil.com.bo +*.fossil.com.pa +*.fossil.com.pt +*.fossil.com.py +*.fossil.com.uy +*.fossil.fi +*.fossil.mobi +*.fossil.paris +*.fossil.pk +*.fossil.sucks +*.fossil.tel +*.fossil30.com +*.fossilaccessories.com +*.fossilathletic.com +*.fossilathletic.net +*.fossilblue.com +*.fossilbolivia.com +*.fossilbrand.ca +*.fossilbrand.com +*.fossilbrands.com +*.fossilclothing.com +*.fossildanmark.dk +*.fossildeutschland.de +*.fossilfinland.com +*.fossilfinland.fi +*.fossilfootwear.at +*.fossilfootwear.biz +*.fossilfootwear.de +*.fossilfootwear.fr +*.fossilfootwear.info +*.fossilfootwear.net +*.fossilfootwear.org +*.fossilfootwear.us +*.fossilgen5.xyz +*.fossilgermany.de +*.fossilgroup.at +*.fossilgroup.ch +*.fossilgroup.de +*.fossilgroup.dk +*.fossilgroup.es +*.fossilgroup.io +*.fossilgroup.it +*.fossilgroup.lu +*.fossilgroup.no +*.fossilgroup.se +*.fossilitalia.it +*.fossilitaly.it +*.fossill.com +*.fossilladieswatch.com +*.fossilmadrid.es +*.fossilnet.com +*.fossilnorge.no +*.fossilpda.com +*.fossilportugal.com +*.fossilportugal.pt +*.fossilqpilot.com +*.fossilqranger.net +*.fossilqwanderer.com +*.fossilqwanderer.net +*.fossilrevelver.net +*.fossilrip.com +*.fossilripoff.com +*.fossilsdead.com +*.fossilshoe.biz +*.fossilshoe.info +*.fossilshoe.us +*.fossilshoes.biz +*.fossilshoes.info +*.fossilshoes.it +*.fossilshoes.net +*.fossilshoes.org +*.fossilstinks.com +*.fossilstore.net +*.fossilsucks.com +*.fossilsuomi.fi +*.fossilsux.com +*.fossilswiss.net +*.fossilswiss.us +*.fossiltime.com.my +*.fossiltincontest.com +*.fossilturkey.com.tr +*.fossilturkiye.com.tr +*.fossilvault.com +*.fossilwatch.co +*.fossilwatch.com +*.fossilwatch.net +*.fossilwatchbar.com +*.fossilwatchdeals.com +*.fossilwatches.biz +*.fossilwatches.com +*.fossilwatches.net +*.fossilwatches.org +*.fossilwatches.ph +*.fossilwatchesformen.ws +*.fossilwatchess.ws +*.fossilwatchout.com +*.fossilwatchreplicas.ws +*.fossilwear.com +*.fossilworldwide.com +*.freefossil.com +*.hatefossil.com +*.inkplusirons.com +*.inkplusironswatches.com +*.jinglemerrycheer.com +*.katchin.ae +*.katchin.af +*.katchin.am +*.katchin.app +*.katchin.ar +*.katchin.asia +*.katchin.at +*.katchin.be +*.katchin.biz +*.katchin.by +*.katchin.bz +*.katchin.ca +*.katchin.ch +*.katchin.cl +*.katchin.cm +*.katchin.cn +*.katchin.co +*.katchin.co.it +*.katchin.co.kr +*.katchin.co.uk +*.katchin.co.za +*.katchin.com.cn +*.katchin.com.es +*.katchin.com.my +*.katchin.cz +*.katchin.de +*.katchin.email +*.katchin.es +*.katchin.eu +*.katchin.exposed +*.katchin.fashion +*.katchin.fi +*.katchin.fr +*.katchin.gt +*.katchin.id +*.katchin.info +*.katchin.it +*.katchin.kr +*.katchin.li +*.katchin.lu +*.katchin.ly +*.katchin.ma +*.katchin.my +*.katchin.net +*.katchin.net.cn +*.katchin.ng +*.katchin.no +*.katchin.online +*.katchin.org +*.katchin.org.cn +*.katchin.ph +*.katchin.pk +*.katchin.pr +*.katchin.ru +*.katchin.si +*.katchin.site +*.katchin.su +*.katchin.tc +*.katchin.tips +*.katchin.tw +*.katchin.uk +*.katchin.us +*.katchin.uy +*.katchin.vg +*.katchin.vi +*.katchin.xn--fiqs8s +*.katchin.xyz +*.katchinaccessories.com +*.katchinbeauty.com +*.katchineyewear.com +*.katchinjewellery.com +*.katchinjewelry.com +*.katchinofficial.com +*.katchinwatch.com +*.katchinwear.com +*.katichwatches.com +*.meetthefossil.com +*.metro-servicecentercanada.com +*.metro-servicecentre.ca +*.metro-servicecentre.com +*.metro-servicecentrecanada.ca +*.metro-servicecentrecanada.com +*.metroservicecenter.net +*.metroservicecenter.org +*.metroservicecentercanada.com +*.metroservicecentre.com +*.metroservicecentrecanada.com +*.metrowatchco.com +*.michele.com.mo +*.michele.com.pt +*.michele.pk +*.michele.pt +*.michele.tel +*.michele.watch +*.misfitflare.de +*.misfitflash.com +*.misfitphase.de +*.misfitvapor.de +*.misfitwatches.store +*.misfitwearables.no +*.mywatchwarranty.com +*.olieoliver.com +*.relic.com.pt +*.relic.coupons +*.relic.gripe +*.relic.pt +*.relic.tel +*.relicwatches.org +*.shopkatchin.asia +*.shopkatchin.biz +*.shopkatchin.by +*.shopkatchin.ca +*.shopkatchin.cm +*.shopkatchin.cn +*.shopkatchin.co.in +*.shopkatchin.co.it +*.shopkatchin.co.uk +*.shopkatchin.com.cn +*.shopkatchin.com.es +*.shopkatchin.com.jm +*.shopkatchin.com.my +*.shopkatchin.com.py +*.shopkatchin.com.ve +*.shopkatchin.cz +*.shopkatchin.de +*.shopkatchin.dk +*.shopkatchin.es +*.shopkatchin.eu +*.shopkatchin.fi +*.shopkatchin.fr +*.shopkatchin.ie +*.shopkatchin.in +*.shopkatchin.info +*.shopkatchin.it +*.shopkatchin.jp +*.shopkatchin.lt +*.shopkatchin.lu +*.shopkatchin.ly +*.shopkatchin.ma +*.shopkatchin.my +*.shopkatchin.net +*.shopkatchin.net.cn +*.shopkatchin.nl +*.shopkatchin.no +*.shopkatchin.org +*.shopkatchin.org.cn +*.shopkatchin.pt +*.shopkatchin.si +*.shopkatchin.uk +*.shopkatchin.us +*.shopkatchin.uy +*.shopkatchin.vi +*.shopkatchin.xn--fiqs8s +*.skagen-latam.com +*.skagen.com.ar +*.skagen.com.br +*.skagen.com.pa +*.skagen.com.py +*.skagen.com.uy +*.skagen.com.ve +*.skagen.coupons +*.skagen.jp +*.skagen.lv +*.skagen.se +*.skagen.sucks +*.skagenconnected.de +*.skagendesign.es +*.skagendesign.it +*.skagenuhrdamen.de +*.skagenwatch.no +*.skagenwatchstore.com +*.stpmovement.ch +*.stpmovements.ch +*.stpmovements.com +*.swisstechnolgoyproduction.com +*.the-watch-station.com +*.thefossilfoundations.org +*.thelastmeter.com +*.thewatchstation.com +*.thewearablesresearchlab.com +*.threegirlsdesign.com +*.threegirlsdesigns.com +*.threegirlshop.com +*.threegirlstuff.com +*.topfossil.com +*.twentytwoeighty.com +*.watch-station-australia.com +*.watch-station.net +*.watchstation-1.com +*.watchstation-australia.com +*.watchstation-online.com +*.watchstation.ar +*.watchstation.asia +*.watchstation.biz +*.watchstation.ca +*.watchstation.cn +*.watchstation.co.kr +*.watchstation.co.za +*.watchstation.com.ar +*.watchstation.com.br +*.watchstation.com.es +*.watchstation.com.fr +*.watchstation.com.hk +*.watchstation.com.mx +*.watchstation.com.my +*.watchstation.com.pa +*.watchstation.com.ph +*.watchstation.com.pt +*.watchstation.com.py +*.watchstation.com.ro +*.watchstation.com.sg +*.watchstation.com.tw +*.watchstation.com.uy +*.watchstation.com.ve +*.watchstation.dk +*.watchstation.hk +*.watchstation.info +*.watchstation.it +*.watchstation.jp +*.watchstation.li +*.watchstation.mobi +*.watchstation.mx +*.watchstation.my +*.watchstation.no +*.watchstation.org +*.watchstation.ph +*.watchstation.pk +*.watchstation.pt +*.watchstation.ro +*.watchstation.sg +*.watchstation.tel +*.wear.gl +*.wsiservicecentre.com.my +*.xn--cjru17f.cn +*.zodiac--watches.com +*.zodiac.tel diff --git a/src/fossil/note.txt b/src/fossil/note.txt new file mode 100644 index 0000000..0f51ac7 --- /dev/null +++ b/src/fossil/note.txt @@ -0,0 +1 @@ +55226 https://hackerone.com/fossil Fossil fossil diff --git a/src/fransvisitsvegas/note.txt b/src/fransvisitsvegas/note.txt new file mode 100644 index 0000000..2649124 --- /dev/null +++ b/src/fransvisitsvegas/note.txt @@ -0,0 +1 @@ +22649 https://hackerone.com/fransvisitsvegas Frans Visits Vegas fransvisitsvegas diff --git a/src/fresenius/note.txt b/src/fresenius/note.txt new file mode 100644 index 0000000..9413535 --- /dev/null +++ b/src/fresenius/note.txt @@ -0,0 +1 @@ +55164 https://hackerone.com/fresenius Fresenius fresenius diff --git a/src/freshworks/APPLE_STORE_APP_ID.txt b/src/freshworks/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..d7e80dc --- /dev/null +++ b/src/freshworks/APPLE_STORE_APP_ID.txt @@ -0,0 +1,7 @@ +Freshdesk-iOS-App +Freshservice-iOS-App +Freshsales-iOS-App +Freshchat-iOS-App +Freshcaller-iOS-App +Freshserive-Intune-iOS-App +Freshservice-Intune-iOS-App diff --git a/src/freshworks/GOOGLE_PLAY_APP_ID.txt b/src/freshworks/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..a37b11d --- /dev/null +++ b/src/freshworks/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1,6 @@ +com.freshservice.helpdesk +com.freshdesk.helpdesk +com.freshdesk.freshsales.mobile +com.freshchat.agent.android +com.freshworks.freshcaller +com.freshservice.helpdesk.intune diff --git a/src/freshworks/OTHER.txt b/src/freshworks/OTHER.txt new file mode 100644 index 0000000..bd6096a --- /dev/null +++ b/src/freshworks/OTHER.txt @@ -0,0 +1 @@ +Freshservice Discovery Agent and Probe diff --git a/src/freshworks/URL.txt b/src/freshworks/URL.txt new file mode 100644 index 0000000..73490ac --- /dev/null +++ b/src/freshworks/URL.txt @@ -0,0 +1,6 @@ +yourdomain.freshdesk.com +yourdomain.freshservice.com +http://yourdomain.myfreshworks.com/crm +yourdomain.freshchat.com +yourdomain.freshcaller.com +yourdomain.myfreshworks.com diff --git a/src/freshworks/note.txt b/src/freshworks/note.txt new file mode 100644 index 0000000..bbfe93f --- /dev/null +++ b/src/freshworks/note.txt @@ -0,0 +1 @@ +50166 https://hackerone.com/freshworks Freshworks freshworks diff --git a/src/frontegg/URL.txt b/src/frontegg/URL.txt new file mode 100644 index 0000000..180969f --- /dev/null +++ b/src/frontegg/URL.txt @@ -0,0 +1,2 @@ +api.au.frontegg.com +portal.au.frontegg.com diff --git a/src/frontegg/note.txt b/src/frontegg/note.txt new file mode 100644 index 0000000..4a471ba --- /dev/null +++ b/src/frontegg/note.txt @@ -0,0 +1 @@ +58820 https://hackerone.com/frontegg Frontegg frontegg diff --git a/src/fronthq/APPLE_STORE_APP_ID.txt b/src/fronthq/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..dfc29a4 --- /dev/null +++ b/src/fronthq/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +com.frontapp.mobile diff --git a/src/fronthq/DOWNLOADABLE_EXECUTABLES.txt b/src/fronthq/DOWNLOADABLE_EXECUTABLES.txt new file mode 100644 index 0000000..863016d --- /dev/null +++ b/src/fronthq/DOWNLOADABLE_EXECUTABLES.txt @@ -0,0 +1,2 @@ +Front for Mac +Front for Windows diff --git a/src/fronthq/GOOGLE_PLAY_APP_ID.txt b/src/fronthq/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..dfc29a4 --- /dev/null +++ b/src/fronthq/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.frontapp.mobile diff --git a/src/fronthq/URL.txt b/src/fronthq/URL.txt new file mode 100644 index 0000000..0ad3989 --- /dev/null +++ b/src/fronthq/URL.txt @@ -0,0 +1,3 @@ +app.frontapp.com +api2.frontapp.com +http://help.front.com diff --git a/src/fronthq/WILDCARD.txt b/src/fronthq/WILDCARD.txt new file mode 100644 index 0000000..e5fee7d --- /dev/null +++ b/src/fronthq/WILDCARD.txt @@ -0,0 +1 @@ +*.front.com diff --git a/src/fronthq/note.txt b/src/fronthq/note.txt new file mode 100644 index 0000000..09e7bbd --- /dev/null +++ b/src/fronthq/note.txt @@ -0,0 +1 @@ +35433 https://hackerone.com/fronthq Front fronthq diff --git a/src/gamestop/note.txt b/src/gamestop/note.txt new file mode 100644 index 0000000..9e5b675 --- /dev/null +++ b/src/gamestop/note.txt @@ -0,0 +1 @@ +56232 https://hackerone.com/gamestop GameStop gamestop diff --git a/src/gemini_trust_co_vdp/APPLE_STORE_APP_ID.txt b/src/gemini_trust_co_vdp/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..09e8d93 --- /dev/null +++ b/src/gemini_trust_co_vdp/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +com.gemini.ios diff --git a/src/gemini_trust_co_vdp/GOOGLE_PLAY_APP_ID.txt b/src/gemini_trust_co_vdp/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..b418ad5 --- /dev/null +++ b/src/gemini_trust_co_vdp/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.gemini.android.app diff --git a/src/gemini_trust_co_vdp/URL.txt b/src/gemini_trust_co_vdp/URL.txt new file mode 100644 index 0000000..5d1c1e3 --- /dev/null +++ b/src/gemini_trust_co_vdp/URL.txt @@ -0,0 +1,20 @@ +exchange.gemini.com +api.gemini.com +gemini.com +creditcard.exchange.gemini.com +cryptorewards.gemini.com +mobile.gemini.com +ota.gemini.com +static.gemini.com +status.gemini.com +support.gemini.com +www.gemini.com +blog.gemini.com +docs.gemini.com +api.sandbox.gemini.com +docs.sandbox.gemini.com +exchange.sandbox.gemini.com +mobile.exchange.sandbox.gemini.com +mobile.sandbox.gemini.com +sandbox.gemini.com +static.sandbox.gemini.com diff --git a/src/gemini_trust_co_vdp/note.txt b/src/gemini_trust_co_vdp/note.txt new file mode 100644 index 0000000..6304cea --- /dev/null +++ b/src/gemini_trust_co_vdp/note.txt @@ -0,0 +1,2 @@ +54275 https://hackerone.com/gemini_trust_co_vdp Gemini gemini_trust_co_vdp +54275 https://hackerone.com/gemini_trust_co_vdp Gemini VDP gemini_trust_co_vdp diff --git a/src/gener8/URL.txt b/src/gener8/URL.txt new file mode 100644 index 0000000..5756f9c --- /dev/null +++ b/src/gener8/URL.txt @@ -0,0 +1 @@ +*.gener8ads.com diff --git a/src/gener8/WILDCARD.txt b/src/gener8/WILDCARD.txt new file mode 100644 index 0000000..d34dd12 --- /dev/null +++ b/src/gener8/WILDCARD.txt @@ -0,0 +1,2 @@ +http://*.gener8ads.com +*.gener8ads.com diff --git a/src/gener8/note.txt b/src/gener8/note.txt new file mode 100644 index 0000000..f5eca68 --- /dev/null +++ b/src/gener8/note.txt @@ -0,0 +1 @@ +45986 https://hackerone.com/gener8 Gener8 gener8 diff --git a/src/github-security-lab/note.txt b/src/github-security-lab/note.txt new file mode 100644 index 0000000..ab6bd96 --- /dev/null +++ b/src/github-security-lab/note.txt @@ -0,0 +1 @@ +45140 https://hackerone.com/github-security-lab GitHub Security Lab github-security-lab diff --git a/src/github/DOWNLOADABLE_EXECUTABLES.txt b/src/github/DOWNLOADABLE_EXECUTABLES.txt new file mode 100644 index 0000000..f47c289 --- /dev/null +++ b/src/github/DOWNLOADABLE_EXECUTABLES.txt @@ -0,0 +1,3 @@ +GitHub Desktop +GitHub CLI +npm CLI diff --git a/src/github/HARDWARE.txt b/src/github/HARDWARE.txt new file mode 100644 index 0000000..8cfbf16 --- /dev/null +++ b/src/github/HARDWARE.txt @@ -0,0 +1 @@ +GitHub Enterprise Server diff --git a/src/github/OTHER.txt b/src/github/OTHER.txt new file mode 100644 index 0000000..b75ad79 --- /dev/null +++ b/src/github/OTHER.txt @@ -0,0 +1,9 @@ +GitHub Enterprise Cloud +GitHub Pages +GitHub Production Credentials +Dependabot +LGTM +GitHub for mobile +GitHub CSP +Copilot +Copilot Chat on dotcom diff --git a/src/github/URL.txt b/src/github/URL.txt new file mode 100644 index 0000000..2d2e0d1 --- /dev/null +++ b/src/github/URL.txt @@ -0,0 +1,15 @@ +GitHub.com +api.github.com +gist.github.com +classroom.github.com +*.githubapp.com +*.github.net +education.github.com +lab.github.com +jobs.github.com +semmle.net +semmle.com +*.githubusercontent.com +npmjs.com +npmjs.org +github.com diff --git a/src/github/note.txt b/src/github/note.txt new file mode 100644 index 0000000..4ea8709 --- /dev/null +++ b/src/github/note.txt @@ -0,0 +1 @@ +1894 https://hackerone.com/github GitHub github diff --git a/src/gitlab/OTHER.txt b/src/gitlab/OTHER.txt new file mode 100644 index 0000000..dd44b59 --- /dev/null +++ b/src/gitlab/OTHER.txt @@ -0,0 +1,3 @@ +Your Own GitLab Instance +Other non-production infrastructure +GitLab for Jira Cloud diff --git a/src/gitlab/SOURCE_CODE.txt b/src/gitlab/SOURCE_CODE.txt new file mode 100644 index 0000000..d7e64de --- /dev/null +++ b/src/gitlab/SOURCE_CODE.txt @@ -0,0 +1,7 @@ +https://gitlab.com/gitlab-org/gitlab +https://gitlab.com/gitlab-org/gitlab-runner +https://gitlab.com/gitlab-org/gitaly +https://gitlab.com/gitlab-org/gitlab-pages +https://gitlab.com/gitlab-org/gitlab-shell +https://gitlab.com/gitlab-org/gitlab-vscode-extension +https://gitlab.com/gitlab-org/opstrace/opstrace diff --git a/src/gitlab/URL.txt b/src/gitlab/URL.txt new file mode 100644 index 0000000..16d24a5 --- /dev/null +++ b/src/gitlab/URL.txt @@ -0,0 +1,10 @@ +customers.gitlab.com +registry.gitlab.com +gitlab.com +*.gitlab.net +*.gitlab.org +*.gitlap.com +about.gitlab.com +docs.gitlab.com +design.gitlab.com +advisories.gitlab.com diff --git a/src/gitlab/WILDCARD.txt b/src/gitlab/WILDCARD.txt new file mode 100644 index 0000000..30a413c --- /dev/null +++ b/src/gitlab/WILDCARD.txt @@ -0,0 +1,6 @@ +http://*.gitlab.net +http://*.gitlab.org +http://*.gitlap.com +*.gitlab.net +*.gitlab.org +*.gitlap.com diff --git a/src/gitlab/note.txt b/src/gitlab/note.txt new file mode 100644 index 0000000..cbf79b0 --- /dev/null +++ b/src/gitlab/note.txt @@ -0,0 +1 @@ +264 https://hackerone.com/gitlab GitLab gitlab diff --git a/src/glassdoor/APPLE_STORE_APP_ID.txt b/src/glassdoor/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..f7421cf --- /dev/null +++ b/src/glassdoor/APPLE_STORE_APP_ID.txt @@ -0,0 +1,2 @@ +589698942 +1005070636 diff --git a/src/glassdoor/GOOGLE_PLAY_APP_ID.txt b/src/glassdoor/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..f1766b1 --- /dev/null +++ b/src/glassdoor/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1,2 @@ +com.glassdoor.app +com.fishbowlmedia.fishbowl diff --git a/src/glassdoor/URL.txt b/src/glassdoor/URL.txt new file mode 100644 index 0000000..863bf8b --- /dev/null +++ b/src/glassdoor/URL.txt @@ -0,0 +1,6 @@ +http://www.glassdoor.com/ +http://api.glassdoor.com +https://help.glassdoor.com/ +https://www.glassdoor.com/* +https://api.glassdoor.com/* +https://help.glassdoor.com/* diff --git a/src/glassdoor/WILDCARD.txt b/src/glassdoor/WILDCARD.txt new file mode 100644 index 0000000..13558a9 --- /dev/null +++ b/src/glassdoor/WILDCARD.txt @@ -0,0 +1,10 @@ +http://www.glassdoor.com/* +http://api.glassdoor.com/* +http://help.glassdoor.com/* +https://*.glassdoor.com/* +https://www.glassdoor.com/* +https://api.glassdoor.com/* +https://help.glassdoor.com/* +https://www.fishbowlapp.com/* +https://api.fishbowlapp.com/* +https://design.glassdoor.com/* diff --git a/src/glassdoor/note.txt b/src/glassdoor/note.txt new file mode 100644 index 0000000..968ae0a --- /dev/null +++ b/src/glassdoor/note.txt @@ -0,0 +1 @@ +204 https://hackerone.com/glassdoor Glassdoor glassdoor diff --git a/src/glasswire/note.txt b/src/glasswire/note.txt new file mode 100644 index 0000000..3f6cb66 --- /dev/null +++ b/src/glasswire/note.txt @@ -0,0 +1 @@ +374 https://hackerone.com/glasswire GlassWire glasswire diff --git a/src/global-payments/OTHER.txt b/src/global-payments/OTHER.txt new file mode 100644 index 0000000..ce5e2de --- /dev/null +++ b/src/global-payments/OTHER.txt @@ -0,0 +1,34 @@ +Heartland Payment Systems +TSYS +AdvancedMD +GP eCom +GPE +UCS +Bleep +GP AUNZ +Storman +eWay +Ezidebit +Sentral +Quickcliq +GP Integrated +PayGateway +3PointData / CX2 +OpenEdge +Cayan +Callpop +Global Payments Integrated +Xenial (Xenial) +SICOM +Nextep +Active Networks +TouchNet +Heartland Restaurant / Retail / Payroll / Human Capital Management (Get Hired) +Greater Giving +Micropayments +Gaming +ECSI +Zego +Commercia Global Payments +MineralTree +EVO Payments, Inc. diff --git a/src/global-payments/SOURCE_CODE.txt b/src/global-payments/SOURCE_CODE.txt new file mode 100644 index 0000000..cc0fb14 --- /dev/null +++ b/src/global-payments/SOURCE_CODE.txt @@ -0,0 +1 @@ +Analytics & Customer Engagement (ACE) diff --git a/src/global-payments/note.txt b/src/global-payments/note.txt new file mode 100644 index 0000000..51c77e7 --- /dev/null +++ b/src/global-payments/note.txt @@ -0,0 +1 @@ +51924 https://hackerone.com/global-payments Global Payments global-payments diff --git a/src/globaleaks/SOURCE_CODE.txt b/src/globaleaks/SOURCE_CODE.txt new file mode 100644 index 0000000..07e780b --- /dev/null +++ b/src/globaleaks/SOURCE_CODE.txt @@ -0,0 +1 @@ +https://github.com/globaleaks/GlobaLeaks diff --git a/src/globaleaks/URL.txt b/src/globaleaks/URL.txt new file mode 100644 index 0000000..dbbb70e --- /dev/null +++ b/src/globaleaks/URL.txt @@ -0,0 +1 @@ +try.globaleaks.org diff --git a/src/globaleaks/note.txt b/src/globaleaks/note.txt new file mode 100644 index 0000000..81d609a --- /dev/null +++ b/src/globaleaks/note.txt @@ -0,0 +1 @@ +1660 https://hackerone.com/globaleaks GlobaLeaks globaleaks diff --git a/src/glovo/URL.txt b/src/glovo/URL.txt new file mode 100644 index 0000000..ee71ff6 --- /dev/null +++ b/src/glovo/URL.txt @@ -0,0 +1,8 @@ +*.glovoapp.com +*.glovoint.com +*.glovostore.com +*.testglovo.com +*.askglovo.com +*.glovoaccess.com +*.glovocookroom.com +*.glovoxtchallenge.com diff --git a/src/glovo/WILDCARD.txt b/src/glovo/WILDCARD.txt new file mode 100644 index 0000000..5c2fa90 --- /dev/null +++ b/src/glovo/WILDCARD.txt @@ -0,0 +1,8 @@ +http://*.glovoapp.com +http://*.glovoint.com +http://*.glovostore.com +http://*.testglovo.com +*.glovoapp.com +*.glovoint.com +*.glovostore.com +*.testglovo.com diff --git a/src/glovo/note.txt b/src/glovo/note.txt new file mode 100644 index 0000000..3244fe9 --- /dev/null +++ b/src/glovo/note.txt @@ -0,0 +1 @@ +51815 https://hackerone.com/glovo Glovo glovo diff --git a/src/gm/note.txt b/src/gm/note.txt new file mode 100644 index 0000000..78a8e33 --- /dev/null +++ b/src/gm/note.txt @@ -0,0 +1 @@ +7205 https://hackerone.com/gm General Motors gm diff --git a/src/gmelius/URL.txt b/src/gmelius/URL.txt new file mode 100644 index 0000000..56fa6b4 --- /dev/null +++ b/src/gmelius/URL.txt @@ -0,0 +1,2 @@ +api.gmelius.com +gmelius.io diff --git a/src/gmelius/note.txt b/src/gmelius/note.txt new file mode 100644 index 0000000..d256bcf --- /dev/null +++ b/src/gmelius/note.txt @@ -0,0 +1 @@ +43432 https://hackerone.com/gmelius Gmelius gmelius diff --git a/src/gocardless_bbp/OTHER.txt b/src/gocardless_bbp/OTHER.txt new file mode 100644 index 0000000..ff02201 --- /dev/null +++ b/src/gocardless_bbp/OTHER.txt @@ -0,0 +1 @@ +bankaccountdata.gocardless.com, ob.gocardless.com diff --git a/src/gocardless_bbp/URL.txt b/src/gocardless_bbp/URL.txt new file mode 100644 index 0000000..5021e34 --- /dev/null +++ b/src/gocardless_bbp/URL.txt @@ -0,0 +1,9 @@ +manage-sandbox.gocardless.com +pay-sandbox.gocardless.com +api-sandbox.gocardless.com +connect-sandbox.gocardless.com +www.gocardless.com +oauth-sandbox.gocardless.com +xero-sandbox.gocardless.com +bankaccountdata.gocardless.com +ob.gocardless.com diff --git a/src/gocardless_bbp/WILDCARD.txt b/src/gocardless_bbp/WILDCARD.txt new file mode 100644 index 0000000..f7ec374 --- /dev/null +++ b/src/gocardless_bbp/WILDCARD.txt @@ -0,0 +1,6 @@ +*.gocardless.io,*.gocardless-banking.io +*.gocardless-cicd.io +*.gocardless.com +*.gocardless-staging.io +*.gocardless-lab.io +*.gocardless.dev diff --git a/src/gocardless_bbp/note.txt b/src/gocardless_bbp/note.txt new file mode 100644 index 0000000..17c59f6 --- /dev/null +++ b/src/gocardless_bbp/note.txt @@ -0,0 +1 @@ +39750 https://hackerone.com/gocardless_bbp GoCardless Bug Bounty Program gocardless_bbp diff --git a/src/gocd/DOWNLOADABLE_EXECUTABLES.txt b/src/gocd/DOWNLOADABLE_EXECUTABLES.txt new file mode 100644 index 0000000..c4e59dd --- /dev/null +++ b/src/gocd/DOWNLOADABLE_EXECUTABLES.txt @@ -0,0 +1 @@ +GoCD (https://www.gocd.org/download) diff --git a/src/gocd/note.txt b/src/gocd/note.txt new file mode 100644 index 0000000..acbd805 --- /dev/null +++ b/src/gocd/note.txt @@ -0,0 +1 @@ +13559 https://hackerone.com/gocd GoCD gocd diff --git a/src/godaddy-vdp/note.txt b/src/godaddy-vdp/note.txt new file mode 100644 index 0000000..93a9859 --- /dev/null +++ b/src/godaddy-vdp/note.txt @@ -0,0 +1 @@ +54832 https://hackerone.com/godaddy-vdp GoDaddy VDP godaddy-vdp diff --git a/src/gojek/APPLE_STORE_APP_ID.txt b/src/gojek/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..5e5b895 --- /dev/null +++ b/src/gojek/APPLE_STORE_APP_ID.txt @@ -0,0 +1,2 @@ +944875099 +1573529788 diff --git a/src/gojek/GOOGLE_PLAY_APP_ID.txt b/src/gojek/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..f3a5868 --- /dev/null +++ b/src/gojek/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1,2 @@ +com.gojek.app +com.gojek.partner diff --git a/src/gojek/URL.txt b/src/gojek/URL.txt new file mode 100644 index 0000000..602adbb --- /dev/null +++ b/src/gojek/URL.txt @@ -0,0 +1,18 @@ +*.gojekapi.com +*.gopayapi.com +api.gojek.co.id +https://www.gojek.com +https://portal.gosend.id +https://gocorp.gojek.com +https://gofood.co.id +https://gosend.id/ +https://go-tix.id/ +*.findaya.com +*.findaya.co.id +*.mab.co.id +www.gojek.com +portal.gosend.id +gocorp.gojek.com +gofood.co.id +gosend.id +go-tix.id diff --git a/src/gojek/WILDCARD.txt b/src/gojek/WILDCARD.txt new file mode 100644 index 0000000..1e1d94b --- /dev/null +++ b/src/gojek/WILDCARD.txt @@ -0,0 +1,10 @@ +http://*.gojekapi.com +http://*.gopayapi.com +http://*.findaya.com +http://*.findaya.co.id +http://*.mab.co.id +*.gojekapi.com +*.gopayapi.com +*.findaya.com +*.findaya.co.id +*.mab.co.id diff --git a/src/gojek/note.txt b/src/gojek/note.txt new file mode 100644 index 0000000..9f344d5 --- /dev/null +++ b/src/gojek/note.txt @@ -0,0 +1 @@ +52437 https://hackerone.com/gojek Gojek gojek diff --git a/src/goldmansachs/APPLE_STORE_APP_ID.txt b/src/goldmansachs/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..15cbdb2 --- /dev/null +++ b/src/goldmansachs/APPLE_STORE_APP_ID.txt @@ -0,0 +1,6 @@ +com.marcus.ios-us +com.marcus.ios-uk +com.gs.pwmdigital.external +com.gs.gstrader.external +com.gs.gsnow.external +GS Select iOS app diff --git a/src/goldmansachs/GOOGLE_PLAY_APP_ID.txt b/src/goldmansachs/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..66dc5b0 --- /dev/null +++ b/src/goldmansachs/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1,6 @@ +com.marcus.android.uk +com.marcus.android +com.gs.pwmdigital.external.android +com.gs.pfmg.wellness +com.gs.mobile.trader +com.gs.mobile.gsnow diff --git a/src/goldmansachs/OTHER.txt b/src/goldmansachs/OTHER.txt new file mode 100644 index 0000000..093847e --- /dev/null +++ b/src/goldmansachs/OTHER.txt @@ -0,0 +1,11 @@ +*.advisorsolutions.gs.com +*.folioclient.com +*.foliofn.com +*.folioidentity.com +*.folioinstitutional.com +*.nnip.com +*.vennhypotheken.nl +*.foliodigitalwealth.com +*.foliofirst.com +*.folioinvesting.com +*.nextcapital.com diff --git a/src/goldmansachs/SOURCE_CODE.txt b/src/goldmansachs/SOURCE_CODE.txt new file mode 100644 index 0000000..5521c61 --- /dev/null +++ b/src/goldmansachs/SOURCE_CODE.txt @@ -0,0 +1 @@ +https://github.com/finos/CatchIT diff --git a/src/goldmansachs/URL.txt b/src/goldmansachs/URL.txt new file mode 100644 index 0000000..5eea12b --- /dev/null +++ b/src/goldmansachs/URL.txt @@ -0,0 +1,27 @@ +*.goldmansachs.com +*.gs.com +*.goldman.com +*.marcus.com +*.honestdollar.com +*.marcus.co.uk +research.gs.com +*.gsam.com +*.gsselect.com +*.gs-mosaic.qa.gs.com +*.gs-mosaic.gs.com +*.qaglobal-liquidity.gs.com +*.global-liquidity.gs.com +developer.gs.com +goldmansachsindices.com +marquee.gs.com +*.ayco.com +www.rocaton.com +*.gspublishing.com +*.gs.de +*.unitedcp.com +*.goldmanpfm.com +*.finlife.com +*.finlifepartners.com +*.claritymoney.com +apigw.foliofn.com +api.foliofn.com diff --git a/src/goldmansachs/note.txt b/src/goldmansachs/note.txt new file mode 100644 index 0000000..da76d5b --- /dev/null +++ b/src/goldmansachs/note.txt @@ -0,0 +1 @@ +5708 https://hackerone.com/goldmansachs Goldman Sachs goldmansachs diff --git a/src/goodrx/APPLE_STORE_APP_ID.txt b/src/goodrx/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..da8a89d --- /dev/null +++ b/src/goodrx/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +com.goodrx.iphone diff --git a/src/goodrx/GOOGLE_PLAY_APP_ID.txt b/src/goodrx/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..814f79e --- /dev/null +++ b/src/goodrx/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.goodrx diff --git a/src/goodrx/URL.txt b/src/goodrx/URL.txt new file mode 100644 index 0000000..cff79b0 --- /dev/null +++ b/src/goodrx/URL.txt @@ -0,0 +1,2 @@ +www.goodrx.com +api.heydoctor.com diff --git a/src/goodrx/note.txt b/src/goodrx/note.txt new file mode 100644 index 0000000..c8c872e --- /dev/null +++ b/src/goodrx/note.txt @@ -0,0 +1 @@ +1684 https://hackerone.com/goodrx GoodRx goodrx diff --git a/src/govtech-vdp/note.txt b/src/govtech-vdp/note.txt new file mode 100644 index 0000000..c9d642d --- /dev/null +++ b/src/govtech-vdp/note.txt @@ -0,0 +1 @@ +41648 https://hackerone.com/govtech-vdp GovTech VDP govtech-vdp diff --git a/src/grab/APPLE_STORE_APP_ID.txt b/src/grab/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..cb95d52 --- /dev/null +++ b/src/grab/APPLE_STORE_APP_ID.txt @@ -0,0 +1,4 @@ +647268330 +1257641454 +1343620481 +1142114207 diff --git a/src/grab/GOOGLE_PLAY_APP_ID.txt b/src/grab/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..a78249d --- /dev/null +++ b/src/grab/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1,5 @@ +com.grabtaxi.passenger +com.grabtaxi.driver2 +com.grab.merchant +com.grabpay.merchant +ovo.id diff --git a/src/grab/OTHER.txt b/src/grab/OTHER.txt new file mode 100644 index 0000000..a6e5cac --- /dev/null +++ b/src/grab/OTHER.txt @@ -0,0 +1,2 @@ +C100447517 +C103149579 diff --git a/src/grab/URL.txt b/src/grab/URL.txt new file mode 100644 index 0000000..13b2cf4 --- /dev/null +++ b/src/grab/URL.txt @@ -0,0 +1,19 @@ +*.myteksi.com +*.myteksi.net +*.grab.com +p.grabtaxi.com +gamma.grab.co +drive.grab.co +manage.grab.co +jira.grab.com +wiki.grab.com +api.grabpay.com +*.grabpay.com +xtramile.grabpay.com +*.grabtaxi.com +*.grab.co +grab.careers +mos.grabpay.com +kartaview.org +*.grab-sure.com +gifts.grab.com diff --git a/src/grab/WILDCARD.txt b/src/grab/WILDCARD.txt new file mode 100644 index 0000000..57996f0 --- /dev/null +++ b/src/grab/WILDCARD.txt @@ -0,0 +1,16 @@ +http://*.myteksi.com +http://*.myteksi.net +http://*.grab.com +http://*.grabpay.com +http://*.grab-sure.com +http://*.grabtaxi.com +http://*.grab.co +*.myteksi.com +*.myteksi.net +*.grab.com +*.grabpay.com +*.grab-sure.com +*.grabtaxi.com +*.grab.co +*.ovo.id +*.taralite.com diff --git a/src/grab/note.txt b/src/grab/note.txt new file mode 100644 index 0000000..676555d --- /dev/null +++ b/src/grab/note.txt @@ -0,0 +1 @@ +1659 https://hackerone.com/grab Grab grab diff --git a/src/grammarly/AI_MODEL.txt b/src/grammarly/AI_MODEL.txt new file mode 100644 index 0000000..1e078dc --- /dev/null +++ b/src/grammarly/AI_MODEL.txt @@ -0,0 +1 @@ +Grammarly AI Assistant diff --git a/src/grammarly/APPLE_STORE_APP_ID.txt b/src/grammarly/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..50b4ccb --- /dev/null +++ b/src/grammarly/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +com.grammarly.keyboard diff --git a/src/grammarly/DOWNLOADABLE_EXECUTABLES.txt b/src/grammarly/DOWNLOADABLE_EXECUTABLES.txt new file mode 100644 index 0000000..68ab019 --- /dev/null +++ b/src/grammarly/DOWNLOADABLE_EXECUTABLES.txt @@ -0,0 +1,5 @@ +Grammarly Editor for MacOS +Grammarly Editor for Windows +Grammarly for Microsoft Word +Grammarly Desktop for Windows +Grammarly Desktop for macOS diff --git a/src/grammarly/GOOGLE_PLAY_APP_ID.txt b/src/grammarly/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..2cf34d2 --- /dev/null +++ b/src/grammarly/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.grammarly.android.keyboard diff --git a/src/grammarly/OTHER.txt b/src/grammarly/OTHER.txt new file mode 100644 index 0000000..c1203ff --- /dev/null +++ b/src/grammarly/OTHER.txt @@ -0,0 +1,6 @@ + MS Office Add-In +Browser Extensions +Capture the Flag +AppActions +Grammarly Assistant +Grammarly Business Features diff --git a/src/grammarly/SOURCE_CODE.txt b/src/grammarly/SOURCE_CODE.txt new file mode 100644 index 0000000..c430bb9 --- /dev/null +++ b/src/grammarly/SOURCE_CODE.txt @@ -0,0 +1 @@ +Grammarly for Developers Text Editor SDK diff --git a/src/grammarly/URL.txt b/src/grammarly/URL.txt new file mode 100644 index 0000000..52c002f --- /dev/null +++ b/src/grammarly/URL.txt @@ -0,0 +1,4 @@ +*.grammarly.io +*.grammarlyaws.com +*.grammarly.com +grammarly.ai diff --git a/src/grammarly/WILDCARD.txt b/src/grammarly/WILDCARD.txt new file mode 100644 index 0000000..747810c --- /dev/null +++ b/src/grammarly/WILDCARD.txt @@ -0,0 +1,6 @@ +http://*.grammarly.io +http://*.grammarlyaws.com +http://*.grammarly.com +*.grammarly.io +*.grammarlyaws.com +*.grammarly.com diff --git a/src/grammarly/note.txt b/src/grammarly/note.txt new file mode 100644 index 0000000..836ba1e --- /dev/null +++ b/src/grammarly/note.txt @@ -0,0 +1 @@ +22746 https://hackerone.com/grammarly Grammarly grammarly diff --git a/src/greenfly/URL.txt b/src/greenfly/URL.txt new file mode 100644 index 0000000..584a3a3 --- /dev/null +++ b/src/greenfly/URL.txt @@ -0,0 +1,2 @@ +api.greenfly.com +portal.greenfly.com diff --git a/src/greenfly/note.txt b/src/greenfly/note.txt new file mode 100644 index 0000000..baa0f92 --- /dev/null +++ b/src/greenfly/note.txt @@ -0,0 +1 @@ +60123 https://hackerone.com/greenfly Greenfly greenfly diff --git a/src/greenhouse/URL.txt b/src/greenhouse/URL.txt new file mode 100644 index 0000000..778d316 --- /dev/null +++ b/src/greenhouse/URL.txt @@ -0,0 +1,9 @@ +app.greenhouse.io +boards.greenhouse.io +api.greenhouse.io +onboarding.greenhouse.io +support.greenhouse.io +jss.greenhouse.io +www.greenhouse.io +interseller.io +app.interseller.io diff --git a/src/greenhouse/note.txt b/src/greenhouse/note.txt new file mode 100644 index 0000000..9992a3c --- /dev/null +++ b/src/greenhouse/note.txt @@ -0,0 +1 @@ +312 https://hackerone.com/greenhouse Greenhouse.io greenhouse diff --git a/src/grindr/APPLE_STORE_APP_ID.txt b/src/grindr/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..5c9a9eb --- /dev/null +++ b/src/grindr/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +319881193 diff --git a/src/grindr/GOOGLE_PLAY_APP_ID.txt b/src/grindr/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..6e73769 --- /dev/null +++ b/src/grindr/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.grindrapp.android diff --git a/src/grindr/URL.txt b/src/grindr/URL.txt new file mode 100644 index 0000000..4f90f97 --- /dev/null +++ b/src/grindr/URL.txt @@ -0,0 +1,6 @@ +*.grindr.io +*.grindr.com +*.grindr.mobi +*.dev.grindr.io +preprod1.grindr.com +web.grindr.com diff --git a/src/grindr/WILDCARD.txt b/src/grindr/WILDCARD.txt new file mode 100644 index 0000000..9657130 --- /dev/null +++ b/src/grindr/WILDCARD.txt @@ -0,0 +1,8 @@ +http://*.grindr.io +http://*.grindr.com +http://*.grindr.mobi +http://*.dev.grindr.io +*.grindr.io +*.grindr.com +*.grindr.mobi +*.dev.grindr.io diff --git a/src/grindr/note.txt b/src/grindr/note.txt new file mode 100644 index 0000000..12a130c --- /dev/null +++ b/src/grindr/note.txt @@ -0,0 +1 @@ +50697 https://hackerone.com/grindr Grindr grindr diff --git a/src/gsa-h1c3/URL.txt b/src/gsa-h1c3/URL.txt new file mode 100644 index 0000000..fc6a2c6 --- /dev/null +++ b/src/gsa-h1c3/URL.txt @@ -0,0 +1,6 @@ +login.gov +idp.int.identitysandbox.gov +idp.staging.login.gov +secure.login.gov +node1.pivcac.staging.login.gov +node1.pivcac.prod.login.gov diff --git a/src/gsa-h1c3/note.txt b/src/gsa-h1c3/note.txt new file mode 100644 index 0000000..6cbff47 --- /dev/null +++ b/src/gsa-h1c3/note.txt @@ -0,0 +1 @@ +61998 https://hackerone.com/gsa-h1c3 GSA H1C3 gsa-h1c3 diff --git a/src/gsa_bbp/SOURCE_CODE.txt b/src/gsa_bbp/SOURCE_CODE.txt new file mode 100644 index 0000000..72d8062 --- /dev/null +++ b/src/gsa_bbp/SOURCE_CODE.txt @@ -0,0 +1,20 @@ +https://github.com/18F/federalist-proxy +https://github.com/18F/federalist +https://github.com/18F/federalist-builder +https://github.com/18F/federalist-docker-build +https://github.com/18F/identity-idp +https://github.com/18F/identity-saml-sinatra +https://github.com/18F/identity-saml-rails +https://github.com/GSA/datagov-deploy +https://github.com/GSA/data.gov +https://github.com/18F/docker-ruby-ubuntu +https://github.com/18f/federalist-proxy +https://github.com/18f/federalist +https://github.com/18f/federalist-builder +https://github.com/18f/federalist-docker-build +https://github.com/18f/identity-idp +https://github.com/18f/identity-saml-sinatra +https://github.com/18f/identity-saml-rails +https://github.com/gsa/datagov-deploy +https://github.com/gsa/data.gov +https://github.com/18f/docker-ruby-ubuntu diff --git a/src/gsa_bbp/URL.txt b/src/gsa_bbp/URL.txt new file mode 100644 index 0000000..c6b1f2d --- /dev/null +++ b/src/gsa_bbp/URL.txt @@ -0,0 +1,62 @@ +https://federalist-proxy.app.cloud.gov +https://account.fr.cloud.gov +https://ci.fr.cloud.gov +https://dashboard.fr.cloud.gov +https://login.fr.cloud.gov/ +https://logs.fr.cloud.gov +https://www.data.gov +https://federation.data.gov +https://sdg.data.gov +https://labs.data.gov +https://catalog.data.gov +https://inventory.data.gov +https://admin-catalog-bsp.data.gov +https://idp.fr.cloud.gov +https://admin.fr.cloud.gov +https://alertmanager.fr.cloud.gov +https://diagrams.fr.cloud.gov +https://grafana.fr.cloud.gov +https://logs-platform.fr.cloud.gov +https://nessus.fr.cloud.gov +https://opslogin.fr.cloud.gov +https://prometheus.fr.cloud.gov +ssh.fr.cloud.gov +api.fr.cloud.gov +api.data.gov +*.login.gov +dashboard-beta.fr.cloud.gov +tock.18f.gov +*.code.gov +www.fedramp.gov +marketplace.fedramp.gov +*.search.gov +https://dashboard-beta.fr.cloud.gov/ +www.usa.gov +https://federalist.18f.gov +https://cloud.gov +https://federalist-docs.18f.gov +federalist-proxy.app.cloud.gov +account.fr.cloud.gov +ci.fr.cloud.gov +dashboard.fr.cloud.gov +login.fr.cloud.gov +logs.fr.cloud.gov +www.data.gov +federation.data.gov +sdg.data.gov +labs.data.gov +catalog.data.gov +inventory.data.gov +admin-catalog-bsp.data.gov +idp.fr.cloud.gov +admin.fr.cloud.gov +alertmanager.fr.cloud.gov +diagrams.fr.cloud.gov +grafana.fr.cloud.gov +logs-platform.fr.cloud.gov +nessus.fr.cloud.gov +opslogin.fr.cloud.gov +prometheus.fr.cloud.gov +cloud.gov +federalist.18f.gov +federalist-docs.18f.gov diff --git a/src/gsa_bbp/note.txt b/src/gsa_bbp/note.txt new file mode 100644 index 0000000..ab5e9ad --- /dev/null +++ b/src/gsa_bbp/note.txt @@ -0,0 +1 @@ +50592 https://hackerone.com/gsa_bbp GSA Bounty gsa_bbp diff --git a/src/gsa_vdp/OTHER.txt b/src/gsa_vdp/OTHER.txt new file mode 100644 index 0000000..4e8e544 --- /dev/null +++ b/src/gsa_vdp/OTHER.txt @@ -0,0 +1,6 @@ +*.gsa.gov +*.sam.gov +*.acquisition.gov +*.digital.gov +*.ecpic.gov +*.facadatabase.gov diff --git a/src/gsa_vdp/URL.txt b/src/gsa_vdp/URL.txt new file mode 100644 index 0000000..dc219cf --- /dev/null +++ b/src/gsa_vdp/URL.txt @@ -0,0 +1,511 @@ +CHALLENGE.GOV +CLOUD.GOV +CODE.GOV +COMPUTERSFORLEARNING.GOV +FEDRAMP.GOV +FMI.GOV +USA.GOV +*.DATA.GOV +*.FAI.GOV +www.FMI.GOV +*.GSAADVANTAGE.GOV +*.IDMANAGEMENT.GOV +*.LOGIN.GOV +*.REGINFO.GOV +*.ROCIS.GOV +*.SECTION508.GOV +*.SFTOOL.GOV +*.USA.GOV +SAM.GOV +ACQUISITION.GOV +BUYACCESSIBLE.GOV +*.CLOUD.GOV +www.sam.gov +portal.fas.gsa.gov +was.itss.gsa.gov +oasispet.gsa.gov +sws.gsa.gov +tams.gsa.gov +tams.preprod.gsa.gov +etsvendorsales.gsa.gov +hallways-staging.cap.gsa.gov +hallways.cap.gsa.gov +interact.gsa.gov +navigator.gsa.gov +p3.cap.gsa.gov +scopereview.gsa.gov +srp.fas.gsa.gov +tmss.gsa.gov +tmss.preprod-acqit.helix.gsa.gov +tscportal.fas.gsa.gov +vasalesportal.gsa.gov +drivethru.gsa.gov +autoauctions.gsa.gov +fms.fas.gsa.gov +arm.fas.gsa.gov +fmvrs.fas.gsa.gov +ffms.fas.gsa.gov +str.gsa.gov +amp.fas.gsa.gov +vehiclestdb.fas.gsa.gov +autovendorb.fas.gsa.gov +autochoiceb.fas.gsa.gov +roadsb.fas.gsa.gov +vehiclestd.fas.gsa.gov +autovendor.fas.gsa.gov +autochoice.fas.gsa.gov +roads.fas.gsa.gov +reportsportal.fas.gsa.gov +vehicledispatch.fas.gsa.gov +cars.fas.gsa.gov +fleet.gsa.gov/aiedecision/ +drivethru.gsa.gov/vfe.htm +spdatawarehouse.fas.gsa.gov +gsaxcess.gov +computersforlearning.gov +smartpaybi.fas.gsa.gov/BOE/BI/ +cops.fas.gsa.gov +cpsearch.fas.gsa.gov +eoffer.gsa.gov +extcws.fas.gsa.gov +gsaadvantage.gov +ebuy.gsa.gov +afadvantage.gov +dhsadvantage.gsa.gov +gsaglobalsupply.gsa.gov +usdaadvantage.gsa.gov +usmcservmart.gsa.gov +vaadvantage.gsa.gov +gsaelibrary.gsa.gov +asap.gsa.gov +poportal.gsa.gov +aacinquiry.fas.gsa.gov +8astars.fas.gsa.gov +gsaadvantage-cors.fas.gsa.gov +vsc.gsa.gov +ebuy-test.fas.gsa.gov +ebuyconnect.fas.gsa.gov +ebuyconnect-test.fas.gsa.gov +gsaadvantage-test.fas.gsa.gov +gsaadvantage-test2.fas.gsa.gov +gsaadvantage-test3.fas.gsa.gov +vscftp.gsa.gov +gsaadvantage.gsa.gov +gsadvantage.gsa.gov +*.cdo.gov +hrlinks.anywhere.gsa.gov +bm-hrlinks.anywhere.gsa.gov +tc-hrlinks.anywhere.gsa.gov +downloads.anywhere.gsa.gov +vdi.anywhere.gsa.gov +vdi-central.anywhere.gsa.gov +vdi-east.anywhere.gsa.gov +vdi-test.anywhere.gsa.gov +anywhere.gsa.gov +co-vpn.gsa.gov +ithelp.gsa.gov +mobile.anywhere.gsa.gov +ncr-vpn.gsa.gov +ncr.anywhere.gsa.gov +r06.anywhere.gsa.gov +r6-vpn.gsa.gov +r7-vpn.gsa.gov +secureauth.dev.gsa.gov +secureauth.gsa.gov +vpntest.gsa.gov +vpn.gsa.gov +vpntest2.gsa.gov +le.dms.gsa.gov +smartpay.gsa.gov +training.smartpay.gsa.gov +gsafinearts.pbs.gsa.gov +mysmartplans.gsa.gov +ncrrecycles.gsa.gov +publiccourts.gsa.gov +r2.gsa.gov +ilmt.pbs.gsa.gov +lmt.pbs.gsa.gov +pappcon1.pbs.gsa.gov +pappcon2.pbs.gsa.gov +tappcon1.pbs.gsa.gov +tappcon2.pbs.gsa.gov +uappcon1.pbs.gsa.gov +uappcon2.pbs.gsa.gov +ulmt.pbs.gsa.gov +api.sftool.gov +app.buyaccessible.gov +arch.idmanagement.gov +demo.sftool.gov +devicepki.idmanagement.gov +digitaldashboard.gov +fpki.idmanagement.gov +pacs.idmanagement.gov +piv.idmanagement.gov +pm.idmanagement.gov +registration.section508.gov +training.section508.gov +uat.digitaldashboard.gov +Alpha2.sam.gov +jss.gsa.gov +api-alpha.sam.gov +dss.gsa.gov +dpa.gsa.gov +soa-ext.fas.gsa.gov +*.ptt.gov +ptt.gov +PCSCOTUS.GOV +*.PCSCOTUS.GOV +SaferFederalWorkforce.gov +FASCC.GSA.GOV) +gis.gsa.gov +indoors.gsa.gov +spdatawarehousebi.gsa.gov +pbrb.gov +fmi.gov +PPMS.GOV +charlie.sam.gov +grex.pbs.gsa.gov +travel.reporting.gov +property.reporting.gov +reporting.gov +fairs.reporting.gov +beta.property.reporting.gov +beta.travel.reporting.gov +leasing.gsa.gov +facadatabase.gov +realpropertyprofile.gov +beta.facadatabase.gov +frpg.gov +ask.gsa.gov +cmls.gsa.gov +disposal.gsa.gov +fedspecs.gsa.gov +ftp.gsa.gov +itjobs.open.gsa.gov +labs.gsa.gov +listserv.gsa.gov +lop.gsa.gov +rc.gsa.gov +usaccess-alp.gsa.gov +vec.gsa.gov +api.acquisition.gov +editor.acquisition.gov +editor.acquisition-uat.gsa.gov +acquisition-uat.gsa.gov +api.acquisition-uat.gsa.gov +training.reginfo.gov +rpa.gov +thenamingcommission.gov +madeinamerica.gov +fleet.fas.gsa.gov +fleet.gsa.gov +fleeteur.fas.gsa.gov +gsac0.fas.gsa.gov +gsacin.fas.gsa.gov +gsafleet2go.fas.gsa.gov +webservices.fas.gsa.gov +edms.gsa.gov +api-staging.ppms.gov +api.ppms.gov +staging.ppms.gov +ppms.gov +federalist-proxy.app.cloud.gov +account.fr.cloud.gov +ci.fr.cloud.gov +dashboard.fr.cloud.gov +login.fr.cloud.gov +logs.fr.cloud.gov +data.gov +federation.data.gov +sdg.data.gov +labs.data.gov +catalog.data.gov +inventory.data.gov +admin-catalog-bsp.data.gov +idp.fr.cloud.gov +admin.fr.cloud.gov +alertmanager.fr.cloud.gov +diagrams.fr.cloud.gov +grafana.fr.cloud.gov +logs-platform.fr.cloud.gov +nessus.fr.cloud.gov +opslogin.fr.cloud.gov +prometheus.fr.cloud.gov +ssh.fr.cloud.gov +api.fr.cloud.gov +api.data.gov +*.login.gov +dashboard-beta.fr.cloud.gov +tock.18f.gov +*.code.gov +fedramp.gov +marketplace.fedramp.gov +*.search.gov +usa.gov +analytics.usa.gov +search.usa.gov +federalist.18f.gov +cloud.gov +federalist-docs.18f.gov +fy21payments.gsa.gov +uat-subdomains.digitaldashboard.gov +acquisition-staging.gsa.gov +https://portal.forms.gov +https://submission.forms.gov/ +https://sign.forms.gov +https://api.forms.gov/ +https://portal-dev.forms.gov +https://submission-dev.forms.gov/ +https://sign-dev.forms.gov +https://api-dev.forms.gov/ +https://portal-test.forms.gov +https://submission-test.forms.gov/ +https://sign-test.forms.gov +https://api-test.forms.gov/ +discovery.gsa.gov +benchmarks.gsa.gov +staging.d2d.gsa.gov +d2d.gsa.gov +tableau.d2d.gsa.gov +staging-tableau.d2d.gsa.gov +tss.d2d.gsa.gov +tss-staging.d2d.gsa.gov +staging-odc.d2d.gsa.gov +odc.d2d.gsa.gov +css.d2d.gsa.gov +css-staging.d2d.gsa.gov +aaapextsb.pbs.gsa.gov +aaapintsb.pbs.gsa.gov +advantage.gsa.gov +autochoice.gsa.gov +drivethrub.gsa.gov +ffmsb.fas.gsa.gov +fleetb.gsa.gov +fleeteurb.fas.gsa.gov +fmswseb.fas.gsa.gov +fmvrsb.fas.gsa.gov +roadsviewb.fas.gsa.gov +eoffer-test2.fas.gsa.gov +gsafleet.gov +connect.gsa.gov +fas.connect.gsa.gov +gsa.gov +publicfrppdata.realpropertyprofile.gov +beta.usaccess-alp.gsa.gov +beta.OCRTitleVI.gsa.gov +evaluation.gov +telluride.gsa.gov +ncportal.fas.gsa.gov +ncportalt.fas.gsa.gov +ncportals.fas.gsa.gov +webshop.gsa.gov +aspdotnetstorefront.webshops.fas.gsa.gov +aspdotnetstorefront.webshopt.fas.gsa.gov +vcss.gsa.gov +vcss.ocfo.gsa.gov +calc.gsa.gov +finance.ocfo.gsa.gov/defaultexternal/ +fedpay.gsa.gov +finance.ocfo.gsa.gov +financeweb.gsa.gov +cforeports.gsa.gov +fmitservices-external.gsa.gov/paymentsearch +financeweb.gsa.gov/vendorpayment +finance.ocfo.gsa.gov/webvendors +fmitservices-external.gsa.gov +finance.gsa.gov +regulations.gov +api.regulations.gov +origin-beta-staging.regulations.gov +outage.regulations.gov +resources.regulations.gov +staging.regulations.gov +test-api.regulations.gov +test-widget-examples.regulations.gov +test-widget.regulations.gov +test.regulations.gov +iolp.gsa.gov +slc.gsa.gov +frppmap.gsa.gov +epm.pbs.gsa.gov +cognos.pbs.gsa.gov +ask.fas.gsa.gov +extportal.pbs.gsa.gov/eOA +debits.fas.gsa.gov +eoffer-test.fas.gsa.gov +certauth.adfsi.gsa.gov +certauth.adfss.gsa.gov +e04bmm-secauth6.ent.ds.gsa.gov +e04bmm-secauth7.ent.ds.gsa.gov +e04bmm-secauth8.ent.ds.gsa.gov +e04bmm-secauth9.ent.ds.gsa.gov +e04tcm-secauth6.ent.ds.gsa.gov +e04tcm-secauth7.ent.ds.gsa.gov +e04tcm-secauth8.ent.ds.gsa.gov +e04tcm-secauth9.ent.ds.gsa.gov +e07r7m-secauth6.ent.ds.gsa.gov +e07r7m-secauth7.ent.ds.gsa.gov +e07r7m-secauth8.ent.ds.gsa.gov +e07r7m-secauth9.ent.ds.gsa.gov +e04tcm-authdev3.ent.ds.gsa.gov +e04tcm-authdev4.ent.ds.gsa.gov +r05-voipedge.gsa.gov +lab-bm.anywhere.gsa.gov +finhrapps.anywhere.gsa.gov +tc-finhrapps.anywhere.gsa.gov +bm-finhrapps.anywhere.gsa.gov +apie.gsa.gov +staging.apie.gsa.gov +test.gsa.gov +CIO.GOV +CAO.GOV +CFO.GOV +CITIZENSCIENCE.GOV +CONSUMERACTION.GOV +CONTRACTDIRECTORY.GOV +FEDROOMS.GOV +FIRSTGOV.GOV +FPC.GOV +FPDS.GOV +FPKI.GOV +FPKI-LAB.GOV +FSD.GOV +US.GOV +VOTE.GOV +*.CAO.GOV +*.CFO.GOV +*.CITIZENSCIENCE.GOV +*.CONSUMERACTION.GOV +*.CONTRACTDIRECTORY.GOV +*.FEDROOMS.GOV +*.FIRSTGOV.GOV +*.FPC.GOV +*.FPDS.GOV +*.FPKI.GOV +*.FPKI-LAB.GOV +*.FSD.GOV +*.US.GOV +*.VOTE.GOV +ACCESSIBILITY.GOV +*.ACCESSIBILITY.GOV +BUSINESSUSA.GOV +*.BUSINESSUSA.GOV +mcm.fas.gsa.gov +cdo.gov +digital.gov +digitalgov.gov +ecpic.gov +esrs.gov +faca.gov +fai.gov +sftool.gov +fbf.gov +idmanagement.gov +login.gov +reginfo.gov +rocis.gov +search.gov +section508.gov +buyamerican.gov +*.buyamerican.gov +USAGOV.GOV +USSM.GOV +*.IDENTITYSANDBOX.GOV +*.SBST.GOV +*.USAGOV.GOV +*.USSM.GOV +IDENTITYSANDBOX.GOV +sbst.gov +18F.GOV +*.18F.GOV +cio.gov +cao.gov +cfo.gov +challenge.gov +citizenscience.gov +code.gov +consumeraction.gov +contractdirectory.gov +fedrooms.gov +firstgov.gov +fpc.gov +fpds.gov +fpki.gov +fpki-lab.gov +fsd.gov +us.gov +usagov.gov +ussm.gov +vote.gov +*.cao.gov +*.cfo.gov +*.citizenscience.gov +*.consumeraction.gov +*.contractdirectory.gov +*.data.gov +*.fai.gov +*.fedrooms.gov +*.firstgov.gov +www.fmi.gov +*.fpc.gov +*.fpds.gov +*.fpki.gov +*.fpki-lab.gov +*.fsd.gov +*.gsaadvantage.gov +*.identitysandbox.gov +*.idmanagement.gov +*.reginfo.gov +*.rocis.gov +*.sbst.gov +*.section508.gov +*.sftool.gov +*.us.gov +*.usa.gov +*.usagov.gov +*.ussm.gov +*.vote.gov +sam.gov +18f.gov +*.18f.gov +accessibility.gov +*.accessibility.gov +acquisition.gov +businessusa.gov +*.businessusa.gov +buyaccessible.gov +*.cloud.gov +http://fleet.gsa.gov/aiedecision/ +http://drivethru.gsa.gov/vfe.htm +http://smartpaybi.fas.gsa.gov/boe/bi/ +alpha2.sam.gov +pcscotus.gov +*.pcscotus.gov +saferfederalworkforce.gov +fascc.gsa.gov) +portal.forms.gov +submission.forms.gov +sign.forms.gov +api.forms.gov +portal-dev.forms.gov +submission-dev.forms.gov +sign-dev.forms.gov +api-dev.forms.gov +portal-test.forms.gov +submission-test.forms.gov +sign-test.forms.gov +api-test.forms.gov +beta.ocrtitlevi.gsa.gov +http://finance.ocfo.gsa.gov/defaultexternal/ +http://fmitservices-external.gsa.gov/paymentsearch +http://financeweb.gsa.gov/vendorpayment +http://finance.ocfo.gsa.gov/webvendors +http://extportal.pbs.gsa.gov/eoa +identitysandbox.gov +sbrc.gov +notify-api.app.cloud.gov +notify.app.cloud.gov +ssb-sms-notify-management.app.cloud.gov +beta.notify.gov +notify.gov +ssb-smtp-notify-management.app.cloud.gov diff --git a/src/gsa_vdp/note.txt b/src/gsa_vdp/note.txt new file mode 100644 index 0000000..bfa1247 --- /dev/null +++ b/src/gsa_vdp/note.txt @@ -0,0 +1 @@ +50553 https://hackerone.com/gsa_vdp U.S. General Services Administration gsa_vdp diff --git a/src/guggenheimpartners_vdp/URL.txt b/src/guggenheimpartners_vdp/URL.txt new file mode 100644 index 0000000..4f49599 --- /dev/null +++ b/src/guggenheimpartners_vdp/URL.txt @@ -0,0 +1,100 @@ +https://ssologin.guggenheimpartners.com +https://www.guggenheiminvestments.com +https://emp.guggenheimpartners.com/ +https://chiweb.guggenheimpartners.com/ +https://nycweb.guggenheimpartners.com/ +https://remoteassist.guggenheimpartners.com/ +https://www.guggenheimpartners.com/ +https://www.guggenheimsecurities.com/ +https://www.guggenheimpartners.jp/ +https://www.guggenheimpartnersmiddleeast.com/ +https://www.inv-info.com +https://www.acgnet.com/ +acgnet.com +guggenheimpartners.com +guggenheiminvestments.com +guggenheimsecurities.com +guggenheimpartners.jp +guggenheimpartnersmiddleeast.com +inv-info.com +wanlink.us +transparentvalue.com +accretiveasset.com +adventclaymore.com +advisorbenchmarking.com +advisorbenchmarking.net +advisorbenchmarking.org +aerocapitalpartners.com +aerofinancepartners.com +aeroleasefinance.com +alternativeinvestmentseducation.com +alternativesplatform.com +arctic-investment-compact.com +arctic-investment-compact.net +arctic-investment-compact.org +arctic-investment-protocol.com +arctic-investment-protocol.net +arctic-investment-protocol.org +arctic-protocol.com +arctic-protocol.net +arctic-protocol.org +arcticinvestmentcompact.com +arcticinvestmentcompact.net +arcticinvestmentcompact.org +arcticinvestmentprotocol.com +arcticinvestmentprotocol.net +arcticinvestmentprotocol.org +arcticprotocol.com +arcticprotocol.net +arcticprotocol.org +asmartcore.com +asmartercore.com +bigmadeeasy.com +blueprint-asp.com +blueprint401k.com +blueprint401k.net +bondladderingtool.com +bondladdertool.com +bondshares.ca +bondshares.net +bondsharesetf.ca +bondsharesetf.com +bondsharesetfs.ca +bondsharesetfs.com +bondsharesindexes.ca +bondsharesindices.ca +bscottminerd.com +buildyourbondladder.com +bulletbond.ca +bulletbondetf.ca +bulletbondetf.com +bulletbondetfs.ca +bulletbondetfs.com +bulletbondindexes.ca +bulletbondindices.ca +bulletbonds.ca +bulletbonds.com +bulletbondshares.ca +bulletbondshares.com +bulletetfs.ca +bulletetfs.com +bulletfunds.ca +bulletfunds.com +bulletsetfs.ca +bulletsetfs.com +bulletsfunds.ca +bulletsfunds.com +bulletshares.ca +bulletshares.co.uk +bulletshares.com +bulletshares.net +bulletshares.org +bulletsharesefts.com +bulletsharesetf.ca +bulletsharesetf.com +bulletsharesetfs.ca +bulletsharesetfs.com +bulletsharesfunds.ca +bulletsharesfunds.com +bulletsharesindexes.ca +bulletsharesindices.ca diff --git a/src/guggenheimpartners_vdp/WILDCARD.txt b/src/guggenheimpartners_vdp/WILDCARD.txt new file mode 100644 index 0000000..3e6b152 --- /dev/null +++ b/src/guggenheimpartners_vdp/WILDCARD.txt @@ -0,0 +1,553 @@ +*.acgnet.com +*.guggenheimpartners.com +*.guggenheiminvestments.com +*.guggenheimsecurities.com +*.guggenheimpartners.jp +*.guggenheimpartnersmiddleeast.com +*.inv-info.com +*.wanlink.us +*.transparentvalue.com +*.accretiveasset.com +*.adventclaymore.com +*.advisorbenchmarking.com +*.advisorbenchmarking.net +*.advisorbenchmarking.org +*.aerocapitalpartners.com +*.aerofinancepartners.com +*.aeroleasefinance.com +*.alternativeinvestmentseducation.com +*.alternativesplatform.com +*.arctic-investment-compact.com +*.arctic-investment-compact.net +*.arctic-investment-compact.org +*.arctic-investment-protocol.com +*.arctic-investment-protocol.net +*.arctic-investment-protocol.org +*.arctic-protocol.com +*.arctic-protocol.net +*.arctic-protocol.org +*.arcticinvestmentcompact.com +*.arcticinvestmentcompact.net +*.arcticinvestmentcompact.org +*.arcticinvestmentprotocol.com +*.arcticinvestmentprotocol.net +*.arcticinvestmentprotocol.org +*.arcticprotocol.com +*.arcticprotocol.net +*.arcticprotocol.org +*.asmartcore.com +*.asmartercore.com +*.bigmadeeasy.com +*.blueprint-asp.com +*.blueprint401k.com +*.blueprint401k.net +*.bondladderingtool.com +*.bondladdertool.com +*.bondshares.ca +*.bondshares.net +*.bondsharesetf.ca +*.bondsharesetf.com +*.bondsharesetfs.ca +*.bondsharesetfs.com +*.bondsharesindexes.ca +*.bondsharesindices.ca +*.bscottminerd.com +*.buildyourbondladder.com +*.bulletbond.ca +*.bulletbondetf.ca +*.bulletbondetf.com +*.bulletbondetfs.ca +*.bulletbondetfs.com +*.bulletbondindexes.ca +*.bulletbondindices.ca +*.bulletbonds.ca +*.bulletbonds.com +*.bulletbondshares.ca +*.bulletbondshares.com +*.bulletetfs.ca +*.bulletetfs.com +*.bulletfunds.ca +*.bulletfunds.com +*.bulletsetfs.ca +*.bulletsetfs.com +*.bulletsfunds.ca +*.bulletsfunds.com +*.bulletshares.ca +*.bulletshares.co.uk +*.bulletshares.com +*.bulletshares.net +*.bulletshares.org +*.bulletsharesefts.com +*.bulletsharesetf.ca +*.bulletsharesetf.com +*.bulletsharesetfs.ca +*.bulletsharesetfs.com +*.bulletsharesfunds.ca +*.bulletsharesfunds.com +*.bulletsharesindexes.ca +*.bulletsharesindices.ca +*.byronscottminerd.com +*.cainhoycapital.co +*.cainhoycapital.net +*.cainhoycapital.org +*.cainhoycapitalllc.co +*.cainhoycapitalllc.com +*.cainhoycapitalllc.net +*.cainhoycapitalllc.org +*.cainhoycompany.co +*.cainhoycompany.com +*.cainhoycompany.net +*.cainhoycompany.org +*.capassurance.com +*.chcapbd.com +*.claymore.com +*.claymore401k.net +*.claymoreactiveetfs.com +*.claymoreactivetfs.com +*.claymoreaetfs.com +*.claymoreblueprint.com +*.claymoreblueprints.com +*.claymoreeconomics.com +*.claymoreefts.com +*.claymoreetf.com +*.claymoreetfs.com +*.claymorefunds.com +*.claymoreinvestments.com +*.claymoreinvestmentstrategy.com +*.claymoreresearch.com +*.claymoreretirement.com +*.claymoresecurities.com +*.claymorestrategy.com +*.claymoretf.com +*.clearspringlife.com +*.commoditiesshares.com +*.commodity-shares.com +*.corporatebondladder.com +*.covestrecapital.com +*.crotonlm.com +*.currency-shares.com +*.currencyshares.com +*.currencysharessucks.com +*.dial-etfs.com +*.dinarcurrencyshares.com +*.dollarcurrencyshares.com +*.dremanclaymore.com +*.endowmentstyleinvesting.com +*.equalweight.com +*.equalweightetfs.com +*.equalweighting.com +*.equalweightinvesting.com +*.equalweightinvestmentportfolio.com +*.equalweightinvestments.com +*.equalweightportfolio.com +*.equitrust.br.com +*.equitrust.de.com +*.equitrust.eu.com +*.equitrust.hk.cn +*.equitrust.jpn.com +*.equitrust.mobi +*.equitrust.us.com +*.equitrustfinancialgroup.com +*.essentialfrontier.com +*.essentialportfoliotheory.com +*.etfequalweighting.com +*.fandcclaymore.com +*.fccclaymore.com +*.fccmclaymore.com +*.fiduciaryclaymore.com +*.fixedincomebondladder.com +*.future-of-the-arctic.com +*.future-of-the-arctic.net +*.future-of-the-arctic.org +*.futureofthearctic.com +*.futureofthearctic.net +*.futureofthearctic.org +*.g.golf +*.galliumfunding.com +*.gbmlp.com +*.gcwealth.com +*.generationmortgage.com +*.getalts.com +*.getasmartercore.com +*.getequalweight.com +*.getequalweighted.com +*.getsmartbeta.com +*.ggtadvisers.com +*.ggtadvisors.com +*.ggtcapital.com +*.gia-global.com +*.glmarketingins.com +*.glmarketingllc.com +*.gnpartners.com +*.goal17partners.com +*.goclaymore.com +*.goequalweight.com +*.goequalweighted.com +*.gohandshakego.com +*.gohandshakego.net +*.gohandshakego.org +*.gotalts.com +*.gpam.com +*.gpamco.com +*.gpaminc.com +*.gpnewssite.com +*.gpsuisse.com +*.gpvp.com +*.gsecurities.com +*.gsgamma.com +*.gugadv.com +*.gugg.gp +*.guggenheim-advisor.biz +*.guggenheim-advisor.co +*.guggenheim-advisor.net +*.guggenheim-advisor.org +*.guggenheim-advisor.uk +*.guggenheim-advisors.co +*.guggenheim-advisors.com +*.guggenheim-advisors.uk +*.guggenheim-agoodname.com +*.guggenheim-alternative.com +*.guggenheim-alternatives.com +*.guggenheim-investments.com +*.guggenheim-partner.biz +*.guggenheim-partner.com +*.guggenheim-partner.info +*.guggenheim-partner.net +*.guggenheim-partner.org +*.guggenheim-partner.us +*.guggenheim-partners.biz +*.guggenheim-partners.co +*.guggenheim-partners.com +*.guggenheim-partners.info +*.guggenheim-partners.net +*.guggenheim-partners.nyc +*.guggenheim-partners.org +*.guggenheim-partners.tw +*.guggenheim.partners +*.guggenheim401k.com +*.guggenheimaam.com +*.guggenheimadvisor.biz +*.guggenheimadvisor.co +*.guggenheimadvisor.com +*.guggenheimadvisor.net +*.guggenheimadvisor.org +*.guggenheimadvisor.uk +*.guggenheimadvisors.co +*.guggenheimadvisors.com +*.guggenheimadvisors.uk +*.guggenheimaero.com +*.guggenheimaerocapital.com +*.guggenheimaerocapitalpartners.com +*.guggenheimaerofinance.com +*.guggenheimaerolease.com +*.guggenheimaeroleasefinance.com +*.guggenheimalternativeplatform.com +*.guggenheimalternatives.com +*.guggenheimalternativesplatform.com +*.guggenheimaltplatform.com +*.guggenheimaltsplatform.com +*.guggenheimam.com +*.guggenheimap.com +*.guggenheimassetadvisors.com +*.guggenheimassetmanagement.com +*.guggenheimbdc.com +*.guggenheimbulktrading.com +*.guggenheimcapital.com +*.guggenheimcapitalpartners.com +*.guggenheimcapitalpartners.net +*.guggenheimcapitalpartners.org +*.guggenheimcapmkts.com +*.guggenheimcif.com +*.guggenheimcm.com +*.guggenheimdistributors.com +*.guggenheimequity.com +*.guggenheimetfs.com +*.guggenheimfamilyoffice.com +*.guggenheimfinancial.com +*.guggenheimfixedincome.com +*.guggenheimfixedincomeadvantage.com +*.guggenheimfixedincomeetfs.com +*.guggenheimfixedincomeiq.com +*.guggenheimfixedincomemutualfunds.com +*.guggenheimfund.com +*.guggenheimfund.net +*.guggenheimfunding.com +*.guggenheimfunds.com +*.guggenheimfunds.net +*.guggenheimfundsolutions.com +*.guggenheimfutures.com +*.guggenheimggt.com +*.guggenheimgi.com +*.guggenheimgiving.com +*.guggenheimglobal.com +*.guggenheimglobalinvestors.com +*.guggenheimgroup.net +*.guggenheimgt.com +*.guggenheimia.com +*.guggenheimias.com +*.guggenheimindexservices.com +*.guggenheiminstitute.com +*.guggenheiminstitute.net +*.guggenheiminstitute.org +*.guggenheiminsurance.com +*.guggenheiminsurance.net +*.guggenheiminsurance.org +*.guggenheiminvestment.biz +*.guggenheiminvestment.com.cn +*.guggenheiminvestment.eu +*.guggenheiminvestment.info +*.guggenheiminvestment.jp +*.guggenheiminvestment.net +*.guggenheiminvestment.org +*.guggenheiminvestment.uk +*.guggenheiminvestment.us +*.guggenheiminvestmentadvisors.com +*.guggenheiminvestmentadvisory.com +*.guggenheiminvestmentadvisorysolutions.com +*.guggenheiminvestmentfinanicalprofessional.com +*.guggenheiminvestmentpartners.com +*.guggenheiminvestmentsadvisor.com +*.guggenheiminvestmentsales.com +*.guggenheiminvestmentsassetmanagement.com +*.guggenheiminvestmentsconnect.com +*.guggenheiminvestmentsfinancialprofessional.com +*.guggenheiminvestmentsfp.com +*.guggenheiminvestmentslearningcenter.com +*.guggenheiminvestor.com +*.guggenheimira.com +*.guggenheimkbbo.com +*.guggenheimkbbopartners.com +*.guggenheimlife.com +*.guggenheimlifeandannuity.com +*.guggenheimllc.com +*.guggenheimmanagement.com +*.guggenheimmarketcommentary.com +*.guggenheimmarketinsights.com +*.guggenheimmarketperspectives.com +*.guggenheimmb.com +*.guggenheimmiddleeast.com +*.guggenheimmortgagecapital.com +*.guggenheimnetwork.com +*.guggenheimnews.com +*.guggenheimnicklaus.com +*.guggenheimnicklauspartners.com +*.guggenheimoffshore.com +*.guggenheimparnters.com +*.guggenheimparters.com +*.guggenheimpartner.biz +*.guggenheimpartner.co +*.guggenheimpartner.info +*.guggenheimpartner.me +*.guggenheimpartner.net +*.guggenheimpartner.online +*.guggenheimpartner.org +*.guggenheimpartner.us +*.guggenheimpartners.biz +*.guggenheimpartners.cloud +*.guggenheimpartners.co +*.guggenheimpartners.info +*.guggenheimpartners.me +*.guggenheimpartners.mobi +*.guggenheimpartners.net +*.guggenheimpartners.nyc +*.guggenheimpartners.online +*.guggenheimpartners.org +*.guggenheimpartners.tw +*.guggenheimpartners.us +*.guggenheimpartners.ws +*.guggenheimpartnersla.com +*.guggenheimpartnersme.com +*.guggenheimpartnersmiddleeastlimited.com +*.guggenheimpartnersonline.com +*.guggenheimpartnersstore.com +*.guggenheimpensions.net +*.guggenheimplus.com +*.guggenheimportal.com +*.guggenheimrealestate.com +*.guggenheimresearch.com +*.guggenheimretailpartners.com +*.guggenheimretailproperties.com +*.guggenheimretailrealestate.com +*.guggenheimsales.com +*.guggenheimsecurelink.com +*.guggenheimservices.com +*.guggenheimshares.com +*.guggenheimsi.com +*.guggenheimsi.org +*.guggenheimspac1.com +*.guggenheimtrading.com +*.guggenheimtraininginstitute.com +*.guggenheimtrust.com +*.guggenheimucits.com +*.guggenheimventurepartners.com +*.guggenheimventures.com +*.guggenheimwm.com +*.guggenhiem-partner.biz +*.guggenhiem-partner.com +*.guggenhiem-partner.info +*.guggenhiem-partner.net +*.guggenhiem-partner.org +*.guggenhiem-partner.us +*.guggenhiem-partners.biz +*.guggenhiem-partners.com +*.guggenhiem-partners.info +*.guggenhiem-partners.net +*.guggenhiem-partners.org +*.guggenhiem-partners.us +*.guggenhiemparnters.com +*.guggenhiempartner.biz +*.guggenhiempartner.com +*.guggenhiempartner.info +*.guggenhiempartner.net +*.guggenhiempartner.org +*.guggenhiempartner.us +*.guggenhiempartners.biz +*.guggenhiempartners.com +*.guggenhiempartners.info +*.guggenhiempartners.net +*.guggenhiempartners.org +*.guggenhiempartners.us +*.gvp-capital.com +*.gvpcap.com +*.gvpcapital.com +*.heartmoor.com +*.hedge-fund-replication.com +*.hedge-fundreplication.com +*.hedgefund-replication.com +*.hegde-fund-replication.com +*.hegde-fundreplication.com +*.hegdefund-replication.com +*.hegdefundreplication.com +*.iguggenheim.com +*.iguggenheiminvestments.com +*.invinfo.com +*.ivyleagueinvesting.com +*.kronecurrencyshares.com +*.libhamp.com +*.linkssecurities.net +*.livingarctic.net +*.livingarctic.org +*.majorinminerd.com +*.mead-park.com +*.meadparkllc.com +*.meadparkmgmt.com +*.minerdperspectives.com +*.my-gi.com +*.my-gisales.com +*.myetlicpolicy.com +*.mygisales.com +*.myguggenheiminvestments.com +*.mypolicywithequitrustlife.com +*.new-north-compact.com +*.new-north-compact.net +*.new-north-compact.org +*.newnorthcompact.com +*.newnorthcompact.net +*.newnorthcompact.org +*.newnorthdevelopment.com +*.newnorthdevelopment.net +*.newnorthdevelopment.org +*.newnorthfund.com +*.newnorthfund.net +*.newnorthfund.org +*.notsominerdperspectives.com +*.oldmutualclaymore.com +*.oneguggenheim.com +*.performance-etf.com +*.performance-etfs.com +*.performanceetf.com +*.performanceetfs.com +*.pesocurrencyshares.com +*.pfn-usa.com +*.pillarfinancial.org +*.pillarmultifamily.com +*.poundcurrencyshares.com +*.privatefamilynetworks.com +*.rbpblendedindex.com +*.rbpinsights.com +*.rbpinstitute.com +*.rbpp.us +*.realcurrencyshares.com +*.relayrewards.com +*.responsible-arctic-development.com +*.responsible-arctic-development.net +*.responsible-arctic-development.org +*.responsible-arctic.com +*.responsible-arctic.net +*.responsible-arctic.org +*.responsiblearctic.com +*.responsiblearctic.net +*.responsiblearctic.org +*.responsiblearcticdevelopment.com +*.responsiblearcticdevelopment.net +*.responsiblearcticdevelopment.org +*.rydex-research.com +*.rydex-sgi-fp.com +*.rydex-sgi.com +*.rydexconnect.com +*.rydexfs.com +*.rydexfunds.com +*.rydexfunds.net +*.rydexfunds.org +*.rydexfundsfp.com +*.rydexfundsfp.net +*.rydexinvestments.com +*.rydexinvestmentservices.com +*.rydexinvestmentsfp.com +*.rydexlearninginstitute.com +*.rydexsgi.com +*.rydexuat.com +*.scottminerd.com +*.scottminerdperspectives.com +*.sg-investor.com +*.sg-investors.com +*.sgi-institutional.com +*.sgiconnect.com +*.skipviraghcharities.com +*.slicoi.com +*.smartercore.com +*.southbt.com +*.standardagents.com +*.standardlifeindiana.com +*.standardlifeofindiana.com +*.sterlingcurrencyshares.com +*.sustainable-arctic-development.com +*.sustainable-arctic-development.net +*.sustainable-arctic-development.org +*.sustainablearcticdevelopment.com +*.sustainablearcticdevelopment.net +*.sustainablearcticdevelopment.org +*.taderydex.com +*.taderydex.net +*.testgp.net +*.testgpfp.com +*.testmailgp.com +*.testmailgpdet.com +*.thelivingarctic.com +*.thelivingarctic.net +*.thelivingarctic.org +*.thesmartcore.com +*.traderydex.com +*.traderydex.net +*.transparentvaluations.com +*.transparentvalue.biz +*.transparentvalue.ch +*.transparentvalue.co.uk +*.transparentvalue.co.za +*.transparentvalue.de +*.transparentvalue.in +*.transparentvalue.info +*.transparentvalue.io +*.transparentvalue.net +*.transparentvalue.tel +*.transparentvalue.us +*.transparentvalueadvisortools.com +*.transparentvaluefunds.com +*.treelinecapco.com +*.tswclaymore.com +*.tvblendedindex.com +*.uitblueprints.com +*.uitconnect.com +*.uitconnect.net +*.westernclaymore.com +*.whypayhighfees.com diff --git a/src/guggenheimpartners_vdp/note.txt b/src/guggenheimpartners_vdp/note.txt new file mode 100644 index 0000000..ed19151 --- /dev/null +++ b/src/guggenheimpartners_vdp/note.txt @@ -0,0 +1 @@ +76932 https://hackerone.com/guggenheimpartners_vdp Guggenheim Partners VDP guggenheimpartners_vdp diff --git a/src/gymshark/APPLE_STORE_APP_ID.txt b/src/gymshark/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..c428e89 --- /dev/null +++ b/src/gymshark/APPLE_STORE_APP_ID.txt @@ -0,0 +1,2 @@ +1139155460 +1139151320 diff --git a/src/gymshark/GOOGLE_PLAY_APP_ID.txt b/src/gymshark/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..b999fe6 --- /dev/null +++ b/src/gymshark/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1,2 @@ +com.gymshark.fitness +com.gymshark.store diff --git a/src/gymshark/URL.txt b/src/gymshark/URL.txt new file mode 100644 index 0000000..a35c062 --- /dev/null +++ b/src/gymshark/URL.txt @@ -0,0 +1,2 @@ +*.gymshark.com +*.gymshark.io diff --git a/src/gymshark/WILDCARD.txt b/src/gymshark/WILDCARD.txt new file mode 100644 index 0000000..0b0c12e --- /dev/null +++ b/src/gymshark/WILDCARD.txt @@ -0,0 +1,4 @@ +http://*.gymshark.com +http://*.gymshark.io +*.gymshark.com +*.gymshark.io diff --git a/src/gymshark/note.txt b/src/gymshark/note.txt new file mode 100644 index 0000000..6dc86ee --- /dev/null +++ b/src/gymshark/note.txt @@ -0,0 +1 @@ +50742 https://hackerone.com/gymshark Gymshark gymshark diff --git a/src/h1-5411-ctf/note.txt b/src/h1-5411-ctf/note.txt new file mode 100644 index 0000000..d28af20 --- /dev/null +++ b/src/h1-5411-ctf/note.txt @@ -0,0 +1 @@ +33314 https://hackerone.com/h1-5411-ctf h1-5411-CTF h1-5411-ctf diff --git a/src/h1-ctf/URL.txt b/src/h1-ctf/URL.txt new file mode 100644 index 0000000..2ad505e --- /dev/null +++ b/src/h1-ctf/URL.txt @@ -0,0 +1 @@ +*.hackyholidays.h1ctf.com diff --git a/src/h1-ctf/WILDCARD.txt b/src/h1-ctf/WILDCARD.txt new file mode 100644 index 0000000..526fefa --- /dev/null +++ b/src/h1-ctf/WILDCARD.txt @@ -0,0 +1,2 @@ +http://*.hackyholidays.h1ctf.com +*.hackyholidays.h1ctf.com diff --git a/src/h1-ctf/note.txt b/src/h1-ctf/note.txt new file mode 100644 index 0000000..4249a80 --- /dev/null +++ b/src/h1-ctf/note.txt @@ -0,0 +1 @@ +46757 https://hackerone.com/h1-ctf h1-ctf h1-ctf diff --git a/src/hack-us-h1c/URL.txt b/src/hack-us-h1c/URL.txt new file mode 100644 index 0000000..c80f1e5 --- /dev/null +++ b/src/hack-us-h1c/URL.txt @@ -0,0 +1,108 @@ +*.mil +*.adlnet.gov +*.aftac.gov +*.altusandc.gov +*.businessdefense.gov +*.cmts.gov +*.cnss.gov +*.ctoc.gov +*.cttso.gov +*.dc3on.gov +*.defense.gov +*.fehrm.gov +*.fvap.gov +*.hive.gov +*.iad.gov +*.ioss.gov +*.itc.gov +*.iwtsd.gov +*.jccs.gov +*.mojavedata.gov +*.mtmc.gov +*.mypay.gov +*.nationalresourcedirectory.gov +*.nbib.gov +*.nrd.gov +*.nro.gov +*.nrojr.gov +*.nsa.gov +*.nsep.gov +*.oea.gov +*.oldcc.gov +*.tak.gov +*.tswg.gov +*.usandc.gov +*.af.edu +*.afit.edu +*.armyuniversity.edu +*.armywarcollege.edu +*.cdse.edu +*.dau.edu +*.dcita.edu +*.dlielc.edu +*.dliflc.edu +*.dodea.edu +*.ndu.edu +*.nps.edu +*.usafa.edu +*.uscga.edu +*.usma.edu +*.usmcu.edu +*.usmma.edu +*.usna.edu +*.usnwc.edu +*.usuhs.edu +*.westpoint.edu +adlnet.gov +aftac.gov +altusandc.gov +businessdefense.gov +cmts.gov +cnss.gov +ctoc.gov +cttso.gov +dc3on.gov +defense.gov +fehrm.gov +fvap.gov +iad.gov +ioss.gov +itc.gov +iwtsd.gov +jccs.gov +mojavedata.gov +mtmc.gov +mypay.gov +nationalresourcedirectory.gov +nbib.gov +nrd.gov +nro.gov +nrojr.gov +nsa.gov +nsep.gov +oea.gov +oldcc.gov +tak.gov +tswg.gov +usandc.gov +af.edu +afit.edu +armyuniversity.edu +armywarcollege.edu +cdse.edu +dau.edu +dcita.edu +dlielc.edu +dliflc.edu +dodea.edu +ndu.edu +nps.edu +usafa.edu +uscga.edu +usma.edu +usmcu.edu +usmma.edu +usna.edu +usnwc.edu +usuhs.edu +westpoint.edu diff --git a/src/hack-us-h1c/note.txt b/src/hack-us-h1c/note.txt new file mode 100644 index 0000000..dc97f78 --- /dev/null +++ b/src/hack-us-h1c/note.txt @@ -0,0 +1 @@ +58093 https://hackerone.com/hack-us-h1c Hack U.S. hack-us-h1c diff --git a/src/hannob/note.txt b/src/hannob/note.txt new file mode 100644 index 0000000..8869ff3 --- /dev/null +++ b/src/hannob/note.txt @@ -0,0 +1 @@ +30278 https://hackerone.com/hannob Hanno's projects hannob diff --git a/src/harvest/APPLE_STORE_APP_ID.txt b/src/harvest/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..203640e --- /dev/null +++ b/src/harvest/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +355395846 diff --git a/src/harvest/GOOGLE_PLAY_APP_ID.txt b/src/harvest/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..12ec89d --- /dev/null +++ b/src/harvest/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.harvestapp diff --git a/src/harvest/OTHER.txt b/src/harvest/OTHER.txt new file mode 100644 index 0000000..68296b6 --- /dev/null +++ b/src/harvest/OTHER.txt @@ -0,0 +1 @@ +getharvest.com/mac diff --git a/src/harvest/URL.txt b/src/harvest/URL.txt new file mode 100644 index 0000000..87d9edc --- /dev/null +++ b/src/harvest/URL.txt @@ -0,0 +1,4 @@ +harvestapp.com +forecastapp.com +id.getharvest.com +getharvest.com diff --git a/src/harvest/note.txt b/src/harvest/note.txt new file mode 100644 index 0000000..c538cf9 --- /dev/null +++ b/src/harvest/note.txt @@ -0,0 +1 @@ +237 https://hackerone.com/harvest Harvest harvest diff --git a/src/hcl_software/DOWNLOADABLE_EXECUTABLES.txt b/src/hcl_software/DOWNLOADABLE_EXECUTABLES.txt new file mode 100644 index 0000000..92d2cc1 --- /dev/null +++ b/src/hcl_software/DOWNLOADABLE_EXECUTABLES.txt @@ -0,0 +1,48 @@ +HCL AppScan +HCL BigFix +HCL Commerce +HCL Connections +HCL Digital Experience (Portal & Content Manager) +HCL Domino +HCL Notes +HCL Sametime +HCL Unica +HCL Verse +HCL Clara +HCL HERO +HCL Atlas +HCL Design Room Live! +HCL Forms +HCL Informix +HCL Informix on Cloud +HCL Integration Platform (HIP) +HCL Leap +HCL OneTest +HCL One Test Embedded +HCL RealTime Software Tooling (RTist) +HCL Terminal Enterprise Access (TEA) +HCL UrbanCode Deploy +HCL UrbanCode Velocity +HCL Workload Automation (HWA) +HCL Workload Automation on AWS +HCL Z Asset Optimizer +HCL Z Data Tools +HCL Tech - GEO - Leave Management System (LMS) +HCL Tech - India - Leave Management System (LMS) +HCL Tech - Global Claim System - CVCS Azure +HCL Tech - TP-SOW +HCL Tech - Smart Service Desk (SSD) Azure +HCL Tech - Revenue Forecast System (iRFS) +HCL Tech - Resource Assignation System (RAS) +HCL Tech - HCLT-EIS-Project Initiation & Budgeting +HCL Tech - Netconsole Joining +HCL Tech - My Travel TAS AZURE +HCL Tech - My Profile (ESS) +HCL Tech - iTIME +HCL Tech - iRemunerate +HCL Tech - iOnboard Application +HCL Tech - iOffboardWebOnPrim +HCL Tech - Global Claim System - ECS +HCL Tech - Geo Joining Console (GJC) +HCL Tech - Compensation Console OnPrim +HCL Tech - Billing Request System (BRQ) diff --git a/src/hcl_software/URL.txt b/src/hcl_software/URL.txt new file mode 100644 index 0000000..39791e1 --- /dev/null +++ b/src/hcl_software/URL.txt @@ -0,0 +1 @@ +*.hcltechsw.com diff --git a/src/hcl_software/note.txt b/src/hcl_software/note.txt new file mode 100644 index 0000000..42c9399 --- /dev/null +++ b/src/hcl_software/note.txt @@ -0,0 +1 @@ +43928 https://hackerone.com/hcl_software HCL Software Inc. hcl_software diff --git a/src/hedera-hashgraph/OTHER.txt b/src/hedera-hashgraph/OTHER.txt new file mode 100644 index 0000000..077d486 --- /dev/null +++ b/src/hedera-hashgraph/OTHER.txt @@ -0,0 +1,2 @@ +Hedera Testnet API Endpoints +Testnet Mirror Node APIs diff --git a/src/hedera-hashgraph/SOURCE_CODE.txt b/src/hedera-hashgraph/SOURCE_CODE.txt new file mode 100644 index 0000000..85a40d2 --- /dev/null +++ b/src/hedera-hashgraph/SOURCE_CODE.txt @@ -0,0 +1,5 @@ +Hedera Network Services Codebase +Hedera Mirror Node Codebase +Hedera Java SDK +Hedera Javascript SDK +Hedera Go SDK diff --git a/src/hedera-hashgraph/note.txt b/src/hedera-hashgraph/note.txt new file mode 100644 index 0000000..21c68b7 --- /dev/null +++ b/src/hedera-hashgraph/note.txt @@ -0,0 +1 @@ +52949 https://hackerone.com/hedera-hashgraph Hedera Hashgraph hedera-hashgraph diff --git a/src/helium/APPLE_STORE_APP_ID.txt b/src/helium/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..0293a80 --- /dev/null +++ b/src/helium/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +com.helium.mobile.wallet diff --git a/src/helium/GOOGLE_PLAY_APP_ID.txt b/src/helium/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..aba9a74 --- /dev/null +++ b/src/helium/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.helium.wallet diff --git a/src/helium/HARDWARE.txt b/src/helium/HARDWARE.txt new file mode 100644 index 0000000..077eeda --- /dev/null +++ b/src/helium/HARDWARE.txt @@ -0,0 +1 @@ +Helium Hotspot diff --git a/src/helium/OTHER.txt b/src/helium/OTHER.txt new file mode 100644 index 0000000..d65b885 --- /dev/null +++ b/src/helium/OTHER.txt @@ -0,0 +1,3 @@ +Blockchain +Validator nodes +API diff --git a/src/helium/URL.txt b/src/helium/URL.txt new file mode 100644 index 0000000..85e9252 --- /dev/null +++ b/src/helium/URL.txt @@ -0,0 +1,3 @@ +ota.helium.com +burrow.helium.systems +https://helium-console-dev.herokuapp.com/ diff --git a/src/helium/note.txt b/src/helium/note.txt new file mode 100644 index 0000000..742cbee --- /dev/null +++ b/src/helium/note.txt @@ -0,0 +1 @@ +12172 https://hackerone.com/helium Helium helium diff --git a/src/hilton/CIDR.txt b/src/hilton/CIDR.txt new file mode 100644 index 0000000..72aaa29 --- /dev/null +++ b/src/hilton/CIDR.txt @@ -0,0 +1,9 @@ +167.187.0.0/16 +192.251.123.0/24 +192.251.124.0/24 +192.251.125.0/24 +192.251.126.0/24 +82.196.42.196/28 +203.79.37.2/29 +62.216.152.46/29 +121.200.237.36/29 diff --git a/src/hilton/URL.txt b/src/hilton/URL.txt new file mode 100644 index 0000000..72dfc57 --- /dev/null +++ b/src/hilton/URL.txt @@ -0,0 +1,15 @@ +hilton.com +hilton.io +hilton.com.tr +hiltonbusinessonline.com +hiltonhawaiianvillage.jp +hiltonjapan.co.jp +hiltonmanage.com +hiltonlocalbiz.com +*.hilton.com +*.hilton.io +*.hilton.com.tr +*.hiltonbusinessonline.com +*.hiltonjapan.co.jp +*.hiltonmanage.com +hiltonhotels.jp diff --git a/src/hilton/WILDCARD.txt b/src/hilton/WILDCARD.txt new file mode 100644 index 0000000..09563a8 --- /dev/null +++ b/src/hilton/WILDCARD.txt @@ -0,0 +1,14 @@ +http://*.hilton.com +http://*.hilton.io +http://*.hilton.com.tr +http://*.hiltonbusinessonline.com +http://*.hiltonjapan.co.jp +http://*.hiltonmanage.com +*.hilton.com +*.hilton.io +*.hilton.com.tr +*.hiltonbusinessonline.com +*.hiltonjapan.co.jp +*.hiltonmanage.com +*.hiltonlocalbiz.com +*.hiltonhotels.jp diff --git a/src/hilton/note.txt b/src/hilton/note.txt new file mode 100644 index 0000000..196d425 --- /dev/null +++ b/src/hilton/note.txt @@ -0,0 +1,3 @@ +50602 https://hackerone.com/hilton Hilton hilton +55457 https://hackerone.com/hilton Hilton Bounty hilton +55457 https://hackerone.com/hilton Hilton hilton diff --git a/src/hiro/note.txt b/src/hiro/note.txt new file mode 100644 index 0000000..f7555ca --- /dev/null +++ b/src/hiro/note.txt @@ -0,0 +1 @@ +13798 https://hackerone.com/hiro Hiro hiro diff --git a/src/homebargains/URL.txt b/src/homebargains/URL.txt new file mode 100644 index 0000000..aeeec1e --- /dev/null +++ b/src/homebargains/URL.txt @@ -0,0 +1,2 @@ +staging.tjmorrispayslips.co.uk +hackerone-m1rtuq8orz.hbstaging.website diff --git a/src/homebargains/note.txt b/src/homebargains/note.txt new file mode 100644 index 0000000..d510bc2 --- /dev/null +++ b/src/homebargains/note.txt @@ -0,0 +1 @@ +3115 https://hackerone.com/homebargains Home Bargains homebargains diff --git a/src/homebrew/note.txt b/src/homebrew/note.txt new file mode 100644 index 0000000..9c7a2c3 --- /dev/null +++ b/src/homebrew/note.txt @@ -0,0 +1 @@ +19399 https://hackerone.com/homebrew Homebrew homebrew diff --git a/src/horizen/SOURCE_CODE.txt b/src/horizen/SOURCE_CODE.txt new file mode 100644 index 0000000..62db07c --- /dev/null +++ b/src/horizen/SOURCE_CODE.txt @@ -0,0 +1 @@ +https://github.com/HorizenOfficial/zen diff --git a/src/horizen/note.txt b/src/horizen/note.txt new file mode 100644 index 0000000..72162a8 --- /dev/null +++ b/src/horizen/note.txt @@ -0,0 +1 @@ +54792 https://hackerone.com/horizen Horizen horizen diff --git a/src/hostinger/URL.txt b/src/hostinger/URL.txt new file mode 100644 index 0000000..549162a --- /dev/null +++ b/src/hostinger/URL.txt @@ -0,0 +1,15 @@ +www.hostinger.com +cpanel.hostinger.com +hpanel.hostinger.com +payments.hostinger.com +www.zyro.com +backend.zyro.com +editor.zyro.com +logo.zyro.com +www.hosting24.com +hpanel.hosting24.com +cpanel.hosting24.com +payments.hosting24.com +www.niagahoster.co.id +partner.niagahoster.co.id +builder.hostinger.com diff --git a/src/hostinger/WILDCARD.txt b/src/hostinger/WILDCARD.txt new file mode 100644 index 0000000..2c03479 --- /dev/null +++ b/src/hostinger/WILDCARD.txt @@ -0,0 +1 @@ +*.000webhost.com diff --git a/src/hostinger/note.txt b/src/hostinger/note.txt new file mode 100644 index 0000000..f7ce0ed --- /dev/null +++ b/src/hostinger/note.txt @@ -0,0 +1 @@ +45515 https://hackerone.com/hostinger hostinger hostinger diff --git a/src/hudapp/APPLE_STORE_APP_ID.txt b/src/hudapp/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..9009331 --- /dev/null +++ b/src/hudapp/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +1042814349 diff --git a/src/hudapp/GOOGLE_PLAY_APP_ID.txt b/src/hudapp/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..70143e1 --- /dev/null +++ b/src/hudapp/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +co.hud.app diff --git a/src/hudapp/OTHER.txt b/src/hudapp/OTHER.txt new file mode 100644 index 0000000..38933ba --- /dev/null +++ b/src/hudapp/OTHER.txt @@ -0,0 +1 @@ +https://haveafling.s3.amazonaws.com/ diff --git a/src/hudapp/URL.txt b/src/hudapp/URL.txt new file mode 100644 index 0000000..dd99101 --- /dev/null +++ b/src/hudapp/URL.txt @@ -0,0 +1,10 @@ +cnztech.com +www.hudapp.com +https://prod-cloud.hookupdating.mobi/ +https://prod-realtime.hookupdating.mobi/ +https://cdn.hookupdating.mobi/ +https://console.huddatingapp.com/ +prod-cloud.hookupdating.mobi +prod-realtime.hookupdating.mobi +cdn.hookupdating.mobi +console.huddatingapp.com diff --git a/src/hudapp/note.txt b/src/hudapp/note.txt new file mode 100644 index 0000000..5b1e26f --- /dev/null +++ b/src/hudapp/note.txt @@ -0,0 +1 @@ +50090 https://hackerone.com/hudapp Hud App hudapp diff --git a/src/hy-vee/OTHER.txt b/src/hy-vee/OTHER.txt new file mode 100644 index 0000000..9c38f4f --- /dev/null +++ b/src/hy-vee/OTHER.txt @@ -0,0 +1 @@ +Other Hy-Vee owned asset diff --git a/src/hy-vee/URL.txt b/src/hy-vee/URL.txt new file mode 100644 index 0000000..77a2dde --- /dev/null +++ b/src/hy-vee/URL.txt @@ -0,0 +1 @@ +*.hy-vee.com diff --git a/src/hy-vee/WILDCARD.txt b/src/hy-vee/WILDCARD.txt new file mode 100644 index 0000000..8eb7394 --- /dev/null +++ b/src/hy-vee/WILDCARD.txt @@ -0,0 +1,2 @@ +http://*.hy-vee.com +*.hy-vee.com diff --git a/src/hy-vee/note.txt b/src/hy-vee/note.txt new file mode 100644 index 0000000..077a2f8 --- /dev/null +++ b/src/hy-vee/note.txt @@ -0,0 +1 @@ +53329 https://hackerone.com/hy-vee Hy-Vee hy-vee diff --git a/src/hyatt/APPLE_STORE_APP_ID.txt b/src/hyatt/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..9b8f58c --- /dev/null +++ b/src/hyatt/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +476639005 diff --git a/src/hyatt/CIDR.txt b/src/hyatt/CIDR.txt new file mode 100644 index 0000000..702d233 --- /dev/null +++ b/src/hyatt/CIDR.txt @@ -0,0 +1,3 @@ +140.95.0.0/16 +213.139.133.32/28 +199.66.248.0/22 diff --git a/src/hyatt/GOOGLE_PLAY_APP_ID.txt b/src/hyatt/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..68df141 --- /dev/null +++ b/src/hyatt/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.Hyatt diff --git a/src/hyatt/URL.txt b/src/hyatt/URL.txt new file mode 100644 index 0000000..58fc8cb --- /dev/null +++ b/src/hyatt/URL.txt @@ -0,0 +1,92 @@ +hyatt.com +www.hyatt.com +world.hyatt.com +assets.hyatt.com +newsroom.images.hyatt.com +salesportal.hyatt.com +meetings.hyatt.com +ebsext.oft.hyatt.com +mobileapp.hyatt.com +plannerrequest.hyatt.com +public.hyatt.com +roominglist.hyatt.com +soaext.oft.hyatt.com +sso.oft.hyatt.com +upsell.hyatt.com +www.hyattconnect.com +jira.hyattdev.com +confluence.hyattdev.com +scapegoat.hyatt.com +book.cheapcaribbean.com +holidays-au.fijiairways.com +holidays-fj.fijiairways.com +holidays-hk.fijiairways.com +holidays-sg.fijiairways.com +holidays-us.fijiairways.com +images2.triseptsolutions.com +res.marivalresidences.globalbookingsolutions.com +res.nowresorts.com +res.sunscaperesorts.com +res.treasureisland.globalbookingsolutions.com +res.vacations.buschgardens.com +res.vacations.sesameplace.com +vacations.hotelcasavelas.com +vacations.loscabos.grandvelas.com +vacations.travelimpressions.com +vacations.velasvallarta.com +www.blueskytours.com +www.cheapcaribbean.com +www.globalhotelchoices.com +www.marktravel.com +www.triseptsolutions.com +blueskytours.globalbookingsolutions.com +booking.cheapcaribbean.com +booking.beachbound.com +book.beachbound.com +book.extraholidaysvacations.com +booking.amrcollection.com/premium/groupindex.html?idgruppo=9437&dcgruppo=1151&linguaint=eng&id_stile=18303 +holidays-nz.fijiairways.com +res.breathlessresorts.com +res.dreamsresorts.com +res.en.travelbrandsagent.com +res.funjet.com +res.marival.globalbookingsolutions.com +res.secretsresorts.com +res.skyteam.com +res.vacations.discoverycove.com +res.vacations.seaworld.com +vacations.universalstudioshollywood.com +vacations.us.palladiumhotelgroup.com +vacations.vallarta.grandvelas.com +www.funjet.com +www.universalorlandovacations.com +www.wynnvacations.com +www.amrcollection.com +www.beachbound.com +book.applevacations.com +book.booktandl.com +login.en.travelbrandsagent.com +login.fr.travelbrandsagent.com +login.www.vaxvacationaccess.com +media.triseptsolutions.com +new.www.vaxvacationaccess.com +res.blueskytours.globalbookingsolutions.com +res.fr.travelbrandsagent.com +res.southwestvacations.com +res.universalorlandovacations.com +res.vacations.united.com +res.vacations.universalstudioshollywood.com +res.zoetryresorts.com +reservations.wynnvacations.com +rezagent.triseptsolutions.com +shop.wyndhamvacationownership.trisept.travel +vacations.grandclass.grandvelas.com +vacations.outrigger.com +vacations.rivieramaya.grandvelas.com +www.triseptapi.com +www.triseptdemo.com +vacations.united.com +www.applevacations.com +res.hyattinclusivecollection.com +www.hyattinclusivecollection.com +booking.applevacations.com diff --git a/src/hyatt/note.txt b/src/hyatt/note.txt new file mode 100644 index 0000000..fc70417 --- /dev/null +++ b/src/hyatt/note.txt @@ -0,0 +1 @@ +7883 https://hackerone.com/hyatt Hyatt Hotels hyatt diff --git a/src/hyperledger/SOURCE_CODE.txt b/src/hyperledger/SOURCE_CODE.txt new file mode 100644 index 0000000..80caa22 --- /dev/null +++ b/src/hyperledger/SOURCE_CODE.txt @@ -0,0 +1,24 @@ +https://github.com/hyperledger/fabric +https://github.com/hyperledger/fabric-ca +https://github.com/hyperledger/fabric-chaincode-java +https://github.com/hyperledger/fabric-chaincode-node +https://github.com/hyperledger/fabric-chaintool +https://github.com/hyperledger/fabric-sdk-node +https://github.com/hyperledger/fabric-sdk-java +https://github.com/hyperledger/fabric-baseimage +https://github.com/hyperledger/fabric-sdk-go +https://github.com/hyperledger/fabric-sdk-py +https://github.com/hyperledger/fabric-sdk-rest +https://github.com/hyperledger/fabric-samples +https://github.com/hyperledger/fabric-amcl +https://github.com/hyperledger/fabric-cli +https://github.com/hyperledger/fabric-chaincode-go +https://github.com/hyperledger/fabric-config +https://github.com/hyperledger/fabric-contract-api-go +https://github.com/hyperledger/fabric-gateway-java +https://github.com/hyperledger/fabric-gateway +https://github.com/hyperledger/fabric-lib-go +https://github.com/hyperledger/fabric-private-chaincode +https://github.com/hyperledger/fabric-protos-go-apiv2 +https://github.com/hyperledger/fabric-protos-go +https://github.com/hyperledger/fabric-protos diff --git a/src/hyperledger/note.txt b/src/hyperledger/note.txt new file mode 100644 index 0000000..76a1de7 --- /dev/null +++ b/src/hyperledger/note.txt @@ -0,0 +1 @@ +22522 https://hackerone.com/hyperledger Hyperledger hyperledger diff --git a/src/hypr-corp/APPLE_STORE_APP_ID.txt b/src/hypr-corp/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..0d471a6 --- /dev/null +++ b/src/hypr-corp/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +com.hypr.one diff --git a/src/hypr-corp/DOWNLOADABLE_EXECUTABLES.txt b/src/hypr-corp/DOWNLOADABLE_EXECUTABLES.txt new file mode 100644 index 0000000..d3f3c75 --- /dev/null +++ b/src/hypr-corp/DOWNLOADABLE_EXECUTABLES.txt @@ -0,0 +1,2 @@ +HyprUnlock.exe +HYPR Workforce Access.app diff --git a/src/hypr-corp/GOOGLE_PLAY_APP_ID.txt b/src/hypr-corp/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..0d471a6 --- /dev/null +++ b/src/hypr-corp/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.hypr.one diff --git a/src/hypr-corp/URL.txt b/src/hypr-corp/URL.txt new file mode 100644 index 0000000..fd2f369 --- /dev/null +++ b/src/hypr-corp/URL.txt @@ -0,0 +1,5 @@ +pentesting.gethypr.com +pentesting3.gethypr.com +pentesting2.gethypr.com +hypr74352.gethypr.com +hypr37448.gethypr.com diff --git a/src/hypr-corp/WILDCARD.txt b/src/hypr-corp/WILDCARD.txt new file mode 100644 index 0000000..d388831 --- /dev/null +++ b/src/hypr-corp/WILDCARD.txt @@ -0,0 +1,2 @@ +*.hypr.com +*.gethypr.com diff --git a/src/hypr-corp/note.txt b/src/hypr-corp/note.txt new file mode 100644 index 0000000..745fdca --- /dev/null +++ b/src/hypr-corp/note.txt @@ -0,0 +1 @@ +51483 https://hackerone.com/hypr-corp HYPR hypr-corp diff --git a/src/iandunn-projects/SOURCE_CODE.txt b/src/iandunn-projects/SOURCE_CODE.txt new file mode 100644 index 0000000..fa6c603 --- /dev/null +++ b/src/iandunn-projects/SOURCE_CODE.txt @@ -0,0 +1,2 @@ +WordPress.org plugins +GitHub repositories diff --git a/src/iandunn-projects/note.txt b/src/iandunn-projects/note.txt new file mode 100644 index 0000000..8751575 --- /dev/null +++ b/src/iandunn-projects/note.txt @@ -0,0 +1 @@ +162 https://hackerone.com/iandunn-projects Ian Dunn iandunn-projects diff --git a/src/ibb/SOURCE_CODE.txt b/src/ibb/SOURCE_CODE.txt new file mode 100644 index 0000000..64a5e7d --- /dev/null +++ b/src/ibb/SOURCE_CODE.txt @@ -0,0 +1,20 @@ +https://github.com/ruby +https://github.com/rails +https://github.com/rubygems/rubygems +https://github.com/curl/curl +https://github.com/Electron +https://github.com/django +https://github.com/Nginx +https://github.com/openssl/openssl +https://github.com/nodejs/node +https://github.com/apache/airflow +https://github.com/apache/httpd +https://wiki.xenproject.org/wiki/Xen_Project_Repositories +https://git.libssh.org/ +https://github.com/spiffe/spiffe +https://github.com/spiffe/spire +https://github.com/rust-lang/rust +https://github.com/argoproj/argoproj +https://github.com/rack/rack +https://github.com/apache/tomcat +https://github.com/libuv/libuv diff --git a/src/ibb/URL.txt b/src/ibb/URL.txt new file mode 100644 index 0000000..f5a9d97 --- /dev/null +++ b/src/ibb/URL.txt @@ -0,0 +1 @@ +rubygems.org diff --git a/src/ibb/note.txt b/src/ibb/note.txt new file mode 100644 index 0000000..c37b55c --- /dev/null +++ b/src/ibb/note.txt @@ -0,0 +1 @@ +54349 https://hackerone.com/ibb Internet Bug Bounty ibb diff --git a/src/ibm/OTHER.txt b/src/ibm/OTHER.txt new file mode 100644 index 0000000..bb8e038 --- /dev/null +++ b/src/ibm/OTHER.txt @@ -0,0 +1,3 @@ +IBM Products +IBM Websites +IBM Tokens & Secrets diff --git a/src/ibm/note.txt b/src/ibm/note.txt new file mode 100644 index 0000000..e465460 --- /dev/null +++ b/src/ibm/note.txt @@ -0,0 +1 @@ +2060 https://hackerone.com/ibm IBM ibm diff --git a/src/icq/note.txt b/src/icq/note.txt new file mode 100644 index 0000000..081384b --- /dev/null +++ b/src/icq/note.txt @@ -0,0 +1 @@ +13192 https://hackerone.com/icq ICQ icq diff --git a/src/imgur/note.txt b/src/imgur/note.txt new file mode 100644 index 0000000..7435a59 --- /dev/null +++ b/src/imgur/note.txt @@ -0,0 +1 @@ +638 https://hackerone.com/imgur Imgur imgur diff --git a/src/impresscms/SOURCE_CODE.txt b/src/impresscms/SOURCE_CODE.txt new file mode 100644 index 0000000..1ff55cd --- /dev/null +++ b/src/impresscms/SOURCE_CODE.txt @@ -0,0 +1 @@ +https://github.com/impresscms/impresscms diff --git a/src/impresscms/note.txt b/src/impresscms/note.txt new file mode 100644 index 0000000..a101ad7 --- /dev/null +++ b/src/impresscms/note.txt @@ -0,0 +1 @@ +38302 https://hackerone.com/impresscms ImpressCMS impresscms diff --git a/src/inditex/OTHER.txt b/src/inditex/OTHER.txt new file mode 100644 index 0000000..7e208f0 --- /dev/null +++ b/src/inditex/OTHER.txt @@ -0,0 +1 @@ +e-Commerce diff --git a/src/inditex/note.txt b/src/inditex/note.txt new file mode 100644 index 0000000..7fe3e3f --- /dev/null +++ b/src/inditex/note.txt @@ -0,0 +1 @@ +70673 https://hackerone.com/inditex Inditex inditex diff --git a/src/indrive/URL.txt b/src/indrive/URL.txt new file mode 100644 index 0000000..14903a0 --- /dev/null +++ b/src/indrive/URL.txt @@ -0,0 +1,26 @@ +*.indriver.com +*.indriverapp.com +*.indrive.com +injob.indriver.com +super-services.indriverapp.com +intercity-*.eu-east-1.indriverapp.com +priority.eu-east-1.indriverapp.com +profile-api.eu-east-1.indriverapp.com +watchdocs.indriverapp.com +messenger.eu-east-1.indriverapp.com +ab-platform-api.eu-east-1.indriverapp.com +truck-api.eu-east-1.indriverapp.com +new-order.eu-east-1.indriverapp.com +file-storage-front.eu-east-1.indriverapp.com +terra-*.indriverapp.com +cargo.indrive.com +volans.tech +wga.volans.tech +argocd.indrive.dev +ci.indrive.dev +external.indrive.dev +auth.indrive.tech +auth2.indrive.tech +aws.indrive.tech +debug.clairvoyance.indrive.tech +ingest.clairvoyance.indrive.tech diff --git a/src/indrive/WILDCARD.txt b/src/indrive/WILDCARD.txt new file mode 100644 index 0000000..2f25afd --- /dev/null +++ b/src/indrive/WILDCARD.txt @@ -0,0 +1,12 @@ +http://terra-*.indriverapp.com +http://intercity-*.eu-east-1.indriverapp.com +http://*.indriverapp.com +http://*.indriver.com +http://*.indrive.com +terra-*.indriverapp.com +intercity-*.eu-east-1.indriverapp.com +*.indriverapp.com +*.indriver.com +*.indrive.com +https://*.indriver.io +https://*.indriverjob.com diff --git a/src/indrive/note.txt b/src/indrive/note.txt new file mode 100644 index 0000000..494330b --- /dev/null +++ b/src/indrive/note.txt @@ -0,0 +1 @@ +58857 https://hackerone.com/indrive inDrive indrive diff --git a/src/infogram/URL.txt b/src/infogram/URL.txt new file mode 100644 index 0000000..e5d8a2b --- /dev/null +++ b/src/infogram/URL.txt @@ -0,0 +1 @@ +infogram.com diff --git a/src/infogram/note.txt b/src/infogram/note.txt new file mode 100644 index 0000000..738fda1 --- /dev/null +++ b/src/infogram/note.txt @@ -0,0 +1 @@ +21745 https://hackerone.com/infogram Infogram infogram diff --git a/src/informatica/DOWNLOADABLE_EXECUTABLES.txt b/src/informatica/DOWNLOADABLE_EXECUTABLES.txt new file mode 100644 index 0000000..fecb6a5 --- /dev/null +++ b/src/informatica/DOWNLOADABLE_EXECUTABLES.txt @@ -0,0 +1 @@ +Any Informatica on-premise software diff --git a/src/informatica/OTHER.txt b/src/informatica/OTHER.txt new file mode 100644 index 0000000..1bb0828 --- /dev/null +++ b/src/informatica/OTHER.txt @@ -0,0 +1,2 @@ +Any IP address reasonably attribute to Informatica +Any other domain reasonably attributable to Informatica diff --git a/src/informatica/URL.txt b/src/informatica/URL.txt new file mode 100644 index 0000000..ab1520d --- /dev/null +++ b/src/informatica/URL.txt @@ -0,0 +1,2 @@ +*.informatica.com +*.informaticacloud.com diff --git a/src/informatica/WILDCARD.txt b/src/informatica/WILDCARD.txt new file mode 100644 index 0000000..a709a95 --- /dev/null +++ b/src/informatica/WILDCARD.txt @@ -0,0 +1,4 @@ +http://*.informatica.com +http://*.informaticacloud.com +*.informatica.com +*.informaticacloud.com diff --git a/src/informatica/note.txt b/src/informatica/note.txt new file mode 100644 index 0000000..2d850a7 --- /dev/null +++ b/src/informatica/note.txt @@ -0,0 +1 @@ +453 https://hackerone.com/informatica Informatica informatica diff --git a/src/inmobi/APPLE_STORE_APP_ID.txt b/src/inmobi/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..db0577b --- /dev/null +++ b/src/inmobi/APPLE_STORE_APP_ID.txt @@ -0,0 +1,2 @@ +1050971067 +950273328 diff --git a/src/inmobi/GOOGLE_PLAY_APP_ID.txt b/src/inmobi/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..d190116 --- /dev/null +++ b/src/inmobi/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1,4 @@ +com.koral +com.o1 +com.roposo.android +com.o1.dash101 diff --git a/src/inmobi/URL.txt b/src/inmobi/URL.txt new file mode 100644 index 0000000..45f1023 --- /dev/null +++ b/src/inmobi/URL.txt @@ -0,0 +1,23 @@ +*.inmobi.com +*.glance.com +*.glance.app +*.glance.world +*.glance.inmobi.com +*.shop101.com +*.dash101.com +mydash101.com +*.roposo.com +*.koralapp.com +appsumer.io +dcraf.com +delishaas.com +inmobi.cn +inmobi.jp +meson.ai +nostra.gg +nostragamus.in +roposoclout.com +shipstreak.com +thisiskra.com +worldofek.com +zyxw365.in diff --git a/src/inmobi/WILDCARD.txt b/src/inmobi/WILDCARD.txt new file mode 100644 index 0000000..ca909ba --- /dev/null +++ b/src/inmobi/WILDCARD.txt @@ -0,0 +1,18 @@ +http://*.inmobi.com +http://*.glance.com +http://*.glance.app +http://*.glance.world +http://*.glance.inmobi.com +http://*.shop101.com +http://*.dash101.com +http://*.roposo.com +http://*.koralapp.com +*.inmobi.com +*.glance.com +*.glance.app +*.glance.world +*.glance.inmobi.com +*.shop101.com +*.dash101.com +*.roposo.com +*.koralapp.com diff --git a/src/inmobi/note.txt b/src/inmobi/note.txt new file mode 100644 index 0000000..c5f2e92 --- /dev/null +++ b/src/inmobi/note.txt @@ -0,0 +1 @@ +54977 https://hackerone.com/inmobi InMobi inmobi diff --git a/src/instacart/APPLE_STORE_APP_ID.txt b/src/instacart/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..417393a --- /dev/null +++ b/src/instacart/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +545599256 diff --git a/src/instacart/GOOGLE_PLAY_APP_ID.txt b/src/instacart/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..22bf90a --- /dev/null +++ b/src/instacart/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.instacart.client diff --git a/src/instacart/OTHER.txt b/src/instacart/OTHER.txt new file mode 100644 index 0000000..f37b443 --- /dev/null +++ b/src/instacart/OTHER.txt @@ -0,0 +1 @@ +Android & iOS App for Instacart Shoppers diff --git a/src/instacart/URL.txt b/src/instacart/URL.txt new file mode 100644 index 0000000..e8a1608 --- /dev/null +++ b/src/instacart/URL.txt @@ -0,0 +1,7 @@ +api.instacart.com +www.instacart.com +admin.instacart.com +shoppers.instacart.com +*.instacart.com +*.instacart.tools +instacart.careers diff --git a/src/instacart/WILDCARD.txt b/src/instacart/WILDCARD.txt new file mode 100644 index 0000000..285cfcc --- /dev/null +++ b/src/instacart/WILDCARD.txt @@ -0,0 +1,4 @@ +http://*.instacart.com +http://*.instacart.tools +*.instacart.com +*.instacart.tools diff --git a/src/instacart/note.txt b/src/instacart/note.txt new file mode 100644 index 0000000..d592016 --- /dev/null +++ b/src/instacart/note.txt @@ -0,0 +1 @@ +35527 https://hackerone.com/instacart Instacart instacart diff --git a/src/insulet_corporation/GOOGLE_PLAY_APP_ID.txt b/src/insulet_corporation/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..afc9873 --- /dev/null +++ b/src/insulet_corporation/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.insulet.myblue.pdm diff --git a/src/insulet_corporation/HARDWARE.txt b/src/insulet_corporation/HARDWARE.txt new file mode 100644 index 0000000..b13e7f1 --- /dev/null +++ b/src/insulet_corporation/HARDWARE.txt @@ -0,0 +1,4 @@ +The Onmipod System Personal Diabetes Manager (PDM) +The Omnipod System Insulin Pump (Omnipod) +The Omnipod DASH System Personal Diabetes Manager (DASH PDM) +The Omnipod DASH System Insulin Pump (DASH Omnipod) diff --git a/src/insulet_corporation/URL.txt b/src/insulet_corporation/URL.txt new file mode 100644 index 0000000..f7a8b62 --- /dev/null +++ b/src/insulet_corporation/URL.txt @@ -0,0 +1,16 @@ +www.poddercentral.com +https://www.omnipod.com +https://insuletid.com/ +prod.omnipodapps.com +prod-internal.omnipodapps.com +prod.omnipodcloud.com +prod-device.omnipodcloud.com +eu-prod-internal.omnipodapps.com +eu-prod.omnipodapps.com +eu-prod-device.omnipodcloud.com +eu-prod.omnipodcloud.com +aprms.insulet.com +eu-aprms.omnipodapps.com +insuletid.com +www.omnipod.com +www.insulet.com diff --git a/src/insulet_corporation/note.txt b/src/insulet_corporation/note.txt new file mode 100644 index 0000000..751755a --- /dev/null +++ b/src/insulet_corporation/note.txt @@ -0,0 +1 @@ +34784 https://hackerone.com/insulet_corporation Insulet Corporation insulet_corporation diff --git a/src/interco_vdp/APPLE_STORE_APP_ID.txt b/src/interco_vdp/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..4bf801f --- /dev/null +++ b/src/interco_vdp/APPLE_STORE_APP_ID.txt @@ -0,0 +1,2 @@ +br.com.Inter.CDPro +br.com.intermedium diff --git a/src/interco_vdp/GOOGLE_PLAY_APP_ID.txt b/src/interco_vdp/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..4bf801f --- /dev/null +++ b/src/interco_vdp/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1,2 @@ +br.com.Inter.CDPro +br.com.intermedium diff --git a/src/interco_vdp/WILDCARD.txt b/src/interco_vdp/WILDCARD.txt new file mode 100644 index 0000000..7526b88 --- /dev/null +++ b/src/interco_vdp/WILDCARD.txt @@ -0,0 +1,10 @@ +*.inter.co +*.bancointer.com.br +*.usend.com +*.usendbrazil.com +*.enviouchegou.com +*.pontualmt.net +*.pontualreports.net +*.pontualmoneytransfer.com +*.pontualmt.com +*.pontualconnect.com diff --git a/src/interco_vdp/note.txt b/src/interco_vdp/note.txt new file mode 100644 index 0000000..1cff4b4 --- /dev/null +++ b/src/interco_vdp/note.txt @@ -0,0 +1 @@ +76567 https://hackerone.com/interco_vdp Inter & Co. VDP interco_vdp diff --git a/src/international_airlines_group/API.txt b/src/international_airlines_group/API.txt new file mode 100644 index 0000000..2baf962 --- /dev/null +++ b/src/international_airlines_group/API.txt @@ -0,0 +1 @@ +apimobile.vueling.com diff --git a/src/international_airlines_group/APPLE_STORE_APP_ID.txt b/src/international_airlines_group/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..460855e --- /dev/null +++ b/src/international_airlines_group/APPLE_STORE_APP_ID.txt @@ -0,0 +1,2 @@ +https://apps.apple.com/us/app/british-airways-executive-club/id1388235740 +https://apps.apple.com/ie/app/aer-lingus/id965854546 diff --git a/src/international_airlines_group/CIDR.txt b/src/international_airlines_group/CIDR.txt new file mode 100644 index 0000000..c3c452b --- /dev/null +++ b/src/international_airlines_group/CIDR.txt @@ -0,0 +1,2 @@ +83.244.225.128/26 +31.221.63.152/29 diff --git a/src/international_airlines_group/GOOGLE_PLAY_APP_ID.txt b/src/international_airlines_group/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..7a10920 --- /dev/null +++ b/src/international_airlines_group/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1,2 @@ +https://play.google.com/store/apps/details?id=com.usablenet.ba.avios +https://play.google.com/store/apps/details?id=com.aerlingus.mobile diff --git a/src/international_airlines_group/OTHER.txt b/src/international_airlines_group/OTHER.txt new file mode 100644 index 0000000..960dd02 --- /dev/null +++ b/src/international_airlines_group/OTHER.txt @@ -0,0 +1,5 @@ +iagcargo.com/* +*.iaggbs.com +*.iairgroup.com +*.aerlingus.com +https://partnerservices.avios.com/partnerpages/password/request.html?partner=WEBGB00001&languageCode=en diff --git a/src/international_airlines_group/URL.txt b/src/international_airlines_group/URL.txt new file mode 100644 index 0000000..fe03c8d --- /dev/null +++ b/src/international_airlines_group/URL.txt @@ -0,0 +1,27 @@ +www.avios.com +www.iairgroup.com +www.iaggbs.com +*.iagcargo.com +www.hangar51.com +https://www.shopping.ba.com +https://exchange.shopping.ba.com/ +https://pgt.shopping.ba.com/ +https://rewards.aerlingus.com/ +https://developer.iagloyalty.com +https://shop.ba.com/ +https://partnerservices.avios.com/partnerpages/password/request.html?partner=webgb00001&languagecode=en +https://thewineflyer.co.uk/ +https://www.britishairways.com/travel/btt/execclub/_gf/en_gb +https://rewardsapp.iagl.digital/v3 +https://api.pgt.shopping.ba.com/ +https://docs.iagloyalty.com +www.aerlingus.com +www.britishairways.com +www.ba.com +checkin.ba.com +onbusiness.britishairways.com +oauth.baplc.com +www.vueling.com +www.flylevel.com +m.vueling.com +tickets.vueling.com diff --git a/src/international_airlines_group/WILDCARD.txt b/src/international_airlines_group/WILDCARD.txt new file mode 100644 index 0000000..b8fd856 --- /dev/null +++ b/src/international_airlines_group/WILDCARD.txt @@ -0,0 +1 @@ +https://*.avios.com diff --git a/src/international_airlines_group/note.txt b/src/international_airlines_group/note.txt new file mode 100644 index 0000000..12b2531 --- /dev/null +++ b/src/international_airlines_group/note.txt @@ -0,0 +1 @@ +46476 https://hackerone.com/international_airlines_group International Airlines Group international_airlines_group diff --git a/src/intuit_rdp/URL.txt b/src/intuit_rdp/URL.txt new file mode 100644 index 0000000..42bba1b --- /dev/null +++ b/src/intuit_rdp/URL.txt @@ -0,0 +1,5 @@ +*.intuit.com +*.turbotax.com +*.mint.com +*.quickbooks.com +*.mailchimp.com diff --git a/src/intuit_rdp/note.txt b/src/intuit_rdp/note.txt new file mode 100644 index 0000000..f0925d6 --- /dev/null +++ b/src/intuit_rdp/note.txt @@ -0,0 +1,2 @@ +58895 https://hackerone.com/intuit_rdp Intuit intuit_rdp +58895 https://hackerone.com/intuit_rdp RDP_INTUIT intuit_rdp diff --git a/src/investnext/URL.txt b/src/investnext/URL.txt new file mode 100644 index 0000000..741ae99 --- /dev/null +++ b/src/investnext/URL.txt @@ -0,0 +1,4 @@ +mg3.investnext.com +app.investnext.com +altogroup.investnextdemo.co +app.investnextdemo.co diff --git a/src/investnext/note.txt b/src/investnext/note.txt new file mode 100644 index 0000000..f0dd077 --- /dev/null +++ b/src/investnext/note.txt @@ -0,0 +1 @@ +42008 https://hackerone.com/investnext InvestNext investnext diff --git a/src/ionity_gmbh/APPLE_STORE_APP_ID.txt b/src/ionity_gmbh/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..1a6a497 --- /dev/null +++ b/src/ionity_gmbh/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +id1551448692 diff --git a/src/ionity_gmbh/GOOGLE_PLAY_APP_ID.txt b/src/ionity_gmbh/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..d093090 --- /dev/null +++ b/src/ionity_gmbh/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.cleevio.ionity.android.app diff --git a/src/ionity_gmbh/URL.txt b/src/ionity_gmbh/URL.txt new file mode 100644 index 0000000..b716e2e --- /dev/null +++ b/src/ionity_gmbh/URL.txt @@ -0,0 +1,2 @@ +payment.ionity.eu +support.ionity.eu diff --git a/src/ionity_gmbh/WILDCARD.txt b/src/ionity_gmbh/WILDCARD.txt new file mode 100644 index 0000000..b0d28ee --- /dev/null +++ b/src/ionity_gmbh/WILDCARD.txt @@ -0,0 +1,2 @@ +*.ionity.eu +*.ionity.cloud diff --git a/src/ionity_gmbh/note.txt b/src/ionity_gmbh/note.txt new file mode 100644 index 0000000..e915f1c --- /dev/null +++ b/src/ionity_gmbh/note.txt @@ -0,0 +1 @@ +64932 https://hackerone.com/ionity_gmbh Ionity GmbH ionity_gmbh diff --git a/src/iovlabs/SOURCE_CODE.txt b/src/iovlabs/SOURCE_CODE.txt new file mode 100644 index 0000000..ac468c3 --- /dev/null +++ b/src/iovlabs/SOURCE_CODE.txt @@ -0,0 +1,6 @@ +https://github.com/rsksmart/rskj +https://github.com/rsksmart/tokenbridge +https://github.com/rsksmart/powpeg-node +https://github.com/rsksmart/rif-wallet +https://github.com/rsksmart/rif-wallet-services +https://github.com/rsksmart/rif-wallet-libs diff --git a/src/iovlabs/URL.txt b/src/iovlabs/URL.txt new file mode 100644 index 0000000..34747ec --- /dev/null +++ b/src/iovlabs/URL.txt @@ -0,0 +1,3 @@ +https://bounty-node.rsk.co +https://github.com/rsksmart/rsk-powhsm/ +bounty-node.rsk.co diff --git a/src/iovlabs/note.txt b/src/iovlabs/note.txt new file mode 100644 index 0000000..8ed4baa --- /dev/null +++ b/src/iovlabs/note.txt @@ -0,0 +1 @@ +25854 https://hackerone.com/iovlabs IOVLabs iovlabs diff --git a/src/ips/note.txt b/src/ips/note.txt new file mode 100644 index 0000000..6a4666d --- /dev/null +++ b/src/ips/note.txt @@ -0,0 +1 @@ +1387 https://hackerone.com/ips Invision Power Services, Inc. ips diff --git a/src/irccloud/APPLE_STORE_APP_ID.txt b/src/irccloud/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..a4352cc --- /dev/null +++ b/src/irccloud/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +com.irccloud.IRCCloud diff --git a/src/irccloud/GOOGLE_PLAY_APP_ID.txt b/src/irccloud/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..7f270d3 --- /dev/null +++ b/src/irccloud/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.irccloud.android diff --git a/src/irccloud/SOURCE_CODE.txt b/src/irccloud/SOURCE_CODE.txt new file mode 100644 index 0000000..588b2a0 --- /dev/null +++ b/src/irccloud/SOURCE_CODE.txt @@ -0,0 +1,3 @@ +https://github.com/irccloud/ios +https://github.com/irccloud/android +https://github.com/irccloud/irccloud-desktop diff --git a/src/irccloud/URL.txt b/src/irccloud/URL.txt new file mode 100644 index 0000000..8d2203d --- /dev/null +++ b/src/irccloud/URL.txt @@ -0,0 +1,8 @@ +www.irccloud.com +api.irccloud.com +*.irccloud-cdn.com +*.irccloud.com +irccloud.com +irc.irccloud.com +team-irc.irccloud.com +blog.irccloud.com diff --git a/src/irccloud/WILDCARD.txt b/src/irccloud/WILDCARD.txt new file mode 100644 index 0000000..5a3fe54 --- /dev/null +++ b/src/irccloud/WILDCARD.txt @@ -0,0 +1,4 @@ +http://*.irccloud-cdn.com +http://*.irccloud.com +*.irccloud-cdn.com +*.irccloud.com diff --git a/src/irccloud/note.txt b/src/irccloud/note.txt new file mode 100644 index 0000000..590ba56 --- /dev/null +++ b/src/irccloud/note.txt @@ -0,0 +1 @@ +140 https://hackerone.com/irccloud IRCCloud irccloud diff --git a/src/iron_fish_bbp/SOURCE_CODE.txt b/src/iron_fish_bbp/SOURCE_CODE.txt new file mode 100644 index 0000000..c44715f --- /dev/null +++ b/src/iron_fish_bbp/SOURCE_CODE.txt @@ -0,0 +1 @@ +https://github.com/iron-fish/ironfish diff --git a/src/iron_fish_bbp/note.txt b/src/iron_fish_bbp/note.txt new file mode 100644 index 0000000..9e5f4d2 --- /dev/null +++ b/src/iron_fish_bbp/note.txt @@ -0,0 +1 @@ +63546 https://hackerone.com/iron_fish_bbp Iron Fish iron_fish_bbp diff --git a/src/jamieweb/CIDR.txt b/src/jamieweb/CIDR.txt new file mode 100644 index 0000000..e75b2b8 --- /dev/null +++ b/src/jamieweb/CIDR.txt @@ -0,0 +1,4 @@ +139.162.222.67 +2a01:7e00::f03c:91ff:fec6:27a3 +157.230.83.95 +2604:a880:400:d1::aad:8001 diff --git a/src/jamieweb/IP_ADDRESS.txt b/src/jamieweb/IP_ADDRESS.txt new file mode 100644 index 0000000..e75b2b8 --- /dev/null +++ b/src/jamieweb/IP_ADDRESS.txt @@ -0,0 +1,4 @@ +139.162.222.67 +2a01:7e00::f03c:91ff:fec6:27a3 +157.230.83.95 +2604:a880:400:d1::aad:8001 diff --git a/src/jamieweb/SOURCE_CODE.txt b/src/jamieweb/SOURCE_CODE.txt new file mode 100644 index 0000000..95f43c5 --- /dev/null +++ b/src/jamieweb/SOURCE_CODE.txt @@ -0,0 +1,5 @@ +https://gitlab.com/jamieweb/results-whitelist +https://gitlab.com/jamieweb/jamieweb +https://gitlab.com/jamieweb/jw-config +https://gitlab.com/jamieweb/web-server-log-anonymizer-bloom-filter +https://gitlab.com/jamieweb/dl-integrity-verify diff --git a/src/jamieweb/URL.txt b/src/jamieweb/URL.txt new file mode 100644 index 0000000..2313dea --- /dev/null +++ b/src/jamieweb/URL.txt @@ -0,0 +1,9 @@ +www.jamieweb.net +ipv6.jamieweb.net +ipv4.jamieweb.net +jamiewebgbelqfno.onion +jamie3vkiwibfiwucd6vxijskbhpjdyajmzeor4mc4i7yopvpo4p7cyd.onion +jamieweb.net +ldn01.jamieweb.net +nyc01.jamieweb.net +acme-validation.jamieweb.net diff --git a/src/jamieweb/note.txt b/src/jamieweb/note.txt new file mode 100644 index 0000000..f13daa4 --- /dev/null +++ b/src/jamieweb/note.txt @@ -0,0 +1 @@ +24397 https://hackerone.com/jamieweb JamieWeb jamieweb diff --git a/src/jetblue/URL.txt b/src/jetblue/URL.txt new file mode 100644 index 0000000..af3996b --- /dev/null +++ b/src/jetblue/URL.txt @@ -0,0 +1,12 @@ +www.jetblue.com +book.jetblue.com +checkin.jetblue.com +mobile.jetblue.com +movil.jetblue.com +api.jetblue.com +accounts.jetblue.com +help.jetblue.com +azrest.jetblue.com +magnolia.jetblue.com +experience.jetblue.com +*.jetblue.com diff --git a/src/jetblue/WILDCARD.txt b/src/jetblue/WILDCARD.txt new file mode 100644 index 0000000..b1ed4b0 --- /dev/null +++ b/src/jetblue/WILDCARD.txt @@ -0,0 +1,2 @@ +http://*.jetblue.com +*.jetblue.com diff --git a/src/jetblue/note.txt b/src/jetblue/note.txt new file mode 100644 index 0000000..8bdf9c0 --- /dev/null +++ b/src/jetblue/note.txt @@ -0,0 +1 @@ +51682 https://hackerone.com/jetblue JetBlue jetblue diff --git a/src/jfrog/URL.txt b/src/jfrog/URL.txt new file mode 100644 index 0000000..eeab092 --- /dev/null +++ b/src/jfrog/URL.txt @@ -0,0 +1,10 @@ +*.jfrog.com +*.jfrog.org +www.jfrog.com +www.jfrog.com/confluence +www.jfrog.com/jira +conan.io +www.jfrog.co.jp +www.jfrogchina.com +http://www.jfrog.com/confluence +http://www.jfrog.com/jira diff --git a/src/jfrog/WILDCARD.txt b/src/jfrog/WILDCARD.txt new file mode 100644 index 0000000..2300c77 --- /dev/null +++ b/src/jfrog/WILDCARD.txt @@ -0,0 +1,4 @@ +http://*.jfrog.com +http://*.jfrog.org +*.jfrog.com +*.jfrog.org diff --git a/src/jfrog/note.txt b/src/jfrog/note.txt new file mode 100644 index 0000000..9f39f11 --- /dev/null +++ b/src/jfrog/note.txt @@ -0,0 +1 @@ +48831 https://hackerone.com/jfrog JFrog jfrog diff --git a/src/jimdo/APPLE_STORE_APP_ID.txt b/src/jimdo/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..0b772e1 --- /dev/null +++ b/src/jimdo/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +588950703 diff --git a/src/jimdo/GOOGLE_PLAY_APP_ID.txt b/src/jimdo/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..6f14fd7 --- /dev/null +++ b/src/jimdo/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.jimdo diff --git a/src/jimdo/URL.txt b/src/jimdo/URL.txt new file mode 100644 index 0000000..967618a --- /dev/null +++ b/src/jimdo/URL.txt @@ -0,0 +1,28 @@ +www.jimdo.com +cms.jimdo.com +cms.e.jimdo.com +*.jimdofree.com +dash.e.jimdo.com +account.e.jimdo.com +cms-backend.jimdosite.com +subscriptions.jimdosite.com +storage.jimdosite.com +store.jimdosite.com +business-profile-service.jimdosite.com +websitegenerator.jimdosite.com +*.jimdosite.com +ns1.jimdo.com +ns2.jimdo.com +ns11.jimdo.com +ns12.jimdo.com +a.jimdo.com +*.jimdoreseller.com +*.jimdoapi.com +logo.e.jimdo.com +help.jimdo.com +*.jimdo-platform.net +jimdo.design +*.jimdo-data-platform.net +*.jimdo-server.com +*.jimdo-stable-staging.com +*.jimdo-dev-staging.com diff --git a/src/jimdo/WILDCARD.txt b/src/jimdo/WILDCARD.txt new file mode 100644 index 0000000..ea66740 --- /dev/null +++ b/src/jimdo/WILDCARD.txt @@ -0,0 +1,20 @@ +http://*.jimdofree.com +http://*.jimdosite.com +http://*.jimdoreseller.com +http://*.jimdoapi.com +http://*.jimdo-platform.net +http://*.jimdo-data-platform.net +http://*.jimdo-server.com +http://*.jimdo-stable-staging.com +http://*.jimdo-dev-staging.com +*.jimdofree.com +*.jimdosite.com +*.jimdoreseller.com +*.jimdoapi.com +*.jimdo-platform.net +*.jimdo-data-platform.net +*.jimdo-server.com +*.jimdo-stable-staging.com +*.jimdo-dev-staging.com +*.jimdo.com +*.jimdo.systems diff --git a/src/jimdo/note.txt b/src/jimdo/note.txt new file mode 100644 index 0000000..deb4bd3 --- /dev/null +++ b/src/jimdo/note.txt @@ -0,0 +1 @@ +50114 https://hackerone.com/jimdo Jimdo GmbH jimdo diff --git a/src/jnj_mobile/GOOGLE_PLAY_APP_ID.txt b/src/jnj_mobile/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..a24ecd8 --- /dev/null +++ b/src/jnj_mobile/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.jnj.mocospace.android diff --git a/src/jnj_mobile/note.txt b/src/jnj_mobile/note.txt new file mode 100644 index 0000000..1386c35 --- /dev/null +++ b/src/jnj_mobile/note.txt @@ -0,0 +1 @@ +42751 https://hackerone.com/jnj_mobile JNJ Mobile jnj_mobile diff --git a/src/john-deere/APPLE_STORE_APP_ID.txt b/src/john-deere/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..c0b1681 --- /dev/null +++ b/src/john-deere/APPLE_STORE_APP_ID.txt @@ -0,0 +1,4 @@ +1104383066 +1498206477 +958749681 +6467124390 diff --git a/src/john-deere/GOOGLE_PLAY_APP_ID.txt b/src/john-deere/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..9a59077 --- /dev/null +++ b/src/john-deere/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1,3 @@ +com.deere.myoperations +com.deere.equipmentplus +com.johndeere.jdo.android diff --git a/src/john-deere/OTHER.txt b/src/john-deere/OTHER.txt new file mode 100644 index 0000000..a203da6 --- /dev/null +++ b/src/john-deere/OTHER.txt @@ -0,0 +1,15 @@ +Any John Deere digital application, product or service, but excluding: (1)Any John Deere machine, equipment or other hardware (collectively “Equipment”) And (2) Any software, firmware or other component of John Deere Equipment. +http(s)://*.johndeere.com* +http(s)://*.deere.com* +http(s)://wirtgen-group.com +http(s)://bluerivertechnology.com +http(s)://bearflagrobotics.com +https://developer.deere.com +https://jdlink.deere.com +https://play.google.com/store/apps/details?id=com.deere.equipmentplus&hl=en_US&gl=US +*deere.com* +advertising.deere.com +*promotemyprograms*.deere.com +adzone.deere.com +johndeerecloud.com +deere.com diff --git a/src/john-deere/URL.txt b/src/john-deere/URL.txt new file mode 100644 index 0000000..b7456c5 --- /dev/null +++ b/src/john-deere/URL.txt @@ -0,0 +1,478 @@ +https://jdoapps.jdisonline.com +*jdisonline.com +*johndeere.com +*wirtgen-group.com +*deere.com +*bluerivertechnology.com +*bearflagrobotics.com +*agrisync.com +*johndeerecloud.com +*starfirenetwork.com +*johndeeretechinfo.com +*jdisonsite.com +jdisonline.com +johndeere.com +wirtgen-group.com +deere.com +bluerivertechnology.com +bearflagrobotics.com +johndeerecloud.com +starfirenetwork.com +johndeeretechinfo.com +jdisonsite.com +staging-sandbox.spark.ai +sandbox.spark.ai +spark.ai +staging.spark.ai +app.spark.ai +www.allpartsstore.com +allpartsstore.com +parts.deere.africa +deere.africa +kreiselelectric.com +sparkai.co +hagiegear.com +www.hagie.com +agrisync.com +johndeere.archivea.com +formant.dev.bearflagrobotics.com +gitlab.bearflagrobotics.com +gitlab.prod.bearflagrobotics.com +hvc.bearflagrobotics.com +www.bearflagrobotics.com +hb-backend-public.dev.bearflagrobotics.com +api.agrisync.com +app.agrisync.com +crm-connector.agrisync.com +cs-admin.agrisync.com +dc-service.agrisync.com +dev-api.agrisync.com +dev-app.agrisync.com +dev-crm-connector.agrisync.com +dev-cs-admin.agrisync.com +dev-dc-service.agrisync.com +dev-diagnostics.agrisync.com +dev-ms-vendors1.agrisync.com +dev-ss-dashboard.agrisync.com +dev-vhb.agrisync.com +dev-vnd.agrisync.com +dev-web.agrisync.com +diagnostics.agrisync.com +feedback.agrisync.com +help.agrisync.com +idt.agrisync.com +links.help.agrisync.com +ms-vendors1.agrisync.com +ms-voicehub.agrisync.com +np-idt.agrisync.com +np-zeus.agrisync.com +stage-api.agrisync.com +stage-app.agrisync.com +stage-crm-connector.agrisync.com +stage-cs-admin.agrisync.com +stage-dc-service.agrisync.com +stage-diagnostics.agrisync.com +stage-ms-vendors1.agrisync.com +stage-vhb.agrisync.com +stage-vnd.agrisync.com +stage-web.agrisync.com +status.agrisync.com +vhb.agrisync.com +vnd.agrisync.com +www.agrisync.com +zeus.agrisync.com +johndeere.invisionapp.com +partsadvisor.deere.com +myjohndeere.deere.com +jdquote2.deere.com +jdwarrantysystem.deere.com +ccms.deere.com +salescenter.deere.com +developer.deere.com +jdlink.deere.com +myfinancialaccounts.deere.com +oca.deere.com +payload.deere.com +api-meubanco.deere.com +meubanco.deere.com +setup-builder.deere.com +map.deere.com +expertconnect.support +sustainability-programs.deere.com +www.deere.com +setup-builder-cert.deere.com +setup-builder-qual.deere.com +us-central-1.r4.abc.expertconnect.support +us-central-1.r4.xyz.expertconnect.support +anubhutiapi.deere.com +add-equipment.deere.com +equipment.deere.com +teammanager.deere.com +satpredictor2.deere.com +jdset.deere.com +contest.deere.com +account.deere.com +bsm.deere.com +dlrdoc.deere.com +johndeeretours.deere.com +partscatalog.deere.com +partscheckout.deere.com +shop.deere.com +stellarsupport.deere.com +timbermanager.deere.com +shop.wirtgen-group.com +services.wirtgen-group.com +portal.wirtgen-group.com +my.wirtgen-group.com +analyze.deere.com +connections.deere.com +crop-planner.deere.com +data-sync.deere.com +files.deere.com +geofence-manager.deere.com +land-manager.deere.com +machine-analyzer.deere.com +machinereports.deere.com +maintenance.deere.com +notifications.deere.com +products-manager.deere.com +registration.deere.com +rewards.deere.com +work-planner.deere.com +adzone.deere.com +advertising.deere.com +techpubs.deere.com +johndeereinnovation.com +www.johndeereinnovation.com +anubhutiapis.channel-dss-r1-anubhuti-prod-vpn.ap.e06.c01.johndeerecloud.com +vision.johndeere.com +dealerlocator.deere.com +powerplan.deere.com +products.deere.com +rmi.deere.com +simfrontend.channel-dss-r1-anubhuti-devl-vpn.ap.e06.c01.johndeerecloud.com +core.surefireag.com +crm.surefireag.com +elink.surefireag.com +m.surefireag.com +marksman.surefireag.com +quickdraw.surefireag.com +site.staging.marksman.surefireag.com +staging.marksman.surefireag.com +staging.quickdraw.surefireag.com +store.surefireag.com +support.surefireag.com +supportstaging.surefireag.com +web.surefireag.com +www.store.surefireag.com +www.surefireag.com +autodiscover.surepointag.com +core.surepointag.com +enterpriseenrollment.surepointag.com +enterpriseregistration.surepointag.com +feedback.surepointag.com +lyncdiscover.surepointag.com +marksman.surepointag.com +qd.surepointag.com +sip.surepointag.com +site.marksman.surepointag.com +store.surepointag.com +support.surepointag.com +toolbox.surepointag.com +vpn.surepointag.com +www.surepointag.com +auth.spark.ai +deploy.spark.ai +docs.spark.ai +email.spark.ai +staging-auth.spark.ai +storybook.spark.ai +webapp-staging.spark.ai +wiki.spark.ai +www.spark.ai +autodiscover.surepointelectronics.com +enterpriseenrollment.surepointelectronics.com +enterpriseregistration.surepointelectronics.com +lyncdiscover.surepointelectronics.com +sip.surepointelectronics.com +access.bluerivertech.com +artifactory.bluerivertech.com +bomgar.bluerivertech.com +california.bluerivertech.com +email.gh-mail.bluerivertech.com +gep.bluerivertech.com +handbook.bluerivertech.com +help.bluerivertech.com +lyncdiscover.bluerivertech.com +oi-grafana.bluerivertech.com +secureaccessba01.bluerivertech.com +sites.bluerivertech.com +sprayers-ws-dev.bluerivertech.com +stage-artifactory.bluerivertech.com +support.bluerivertech.com +voipserver.bluerivertech.com +vpn1.bluerivertech.com +vpn2.bluerivertech.com +www.bluerivertech.com +careers.bluerivertechnology.com +contact.bluerivertechnology.com +support.bluerivertechnology.com +team.bluerivertechnology.com +www.bluerivertechnology.com +email.bluerivert.com +email.gh-mail.bluerivert.com +www.bluerivert.com +www.blueriver.ai +aws.dev.bearflagrobotics.com +email.bearflagrobotics.com +ovpn.bearflagrobotics.com +skynet.bearflagrobotics.com +testvpn.dev.bearflagrobotics.com +vpn.dev.bearflagrobotics.com +vpn.prod.bearflagrobotics.com +vpn.staging.bearflagrobotics.com +www.allpartsshop.com +webdr.allpartsstore.com +app.smartapply.com +au-admin.smartapply.com +au-dealer.smartapply.com +au.smartapply.com +autodiscover.smartapply.com +dealer-dev.smartapply.com +dealer.smartapply.com +en.smartapply.com +es.smartapply.com +fr.smartapply.com +it.smartapply.com +lyncdiscover.smartapply.com +sa-admin.smartapply.com +sa.smartapply.com +sip.smartapply.com +www.smartapply.com +za-admin.smartapply.com +za.smartapply.com +site.marksman.surefireag.com +surefireag.surefireag.com +toolbox.surefireag.com +site.staging.marksman.surepointag.com +staging.core.surepointag.com +staging.marksman.surepointag.com +www.surepointelectronics.com +anubhutiuat.deere.com +anubhutiuatapis.deere.com +vision-staging.johndeere.com +autodiscover.kreiselelectric.com +changepassword.kreiselelectric.com +filebox-dev.kreiselelectric.com +filebox.kreiselelectric.com +ftp.kreiselelectric.com +hermes.kreiselelectric.com +ke-uc-expe.kreiselelectric.com +kreiselcloud.kreiselelectric.com +mail.kreiselelectric.com +mx.kreiselelectric.com +remote.kreiselelectric.com +testweb.kreiselelectric.com +video.kreiselelectric.com +vpn.kreiselelectric.com +webmail.kreiselelectric.com +www.kreiselelectric.com +sdicert.deere.com +droneci.deere.com +staging.harvestprofit.com +dealers.harvestprofit.com +changelog.harvestprofit.com +docs.harvestprofit.com +ghost.harvestprofit.com +learn.harvestprofit.com +swag.harvestprofit.com +www.harvestprofit.com +dev-qdrant.isg-aa-comp-vision-training-devl-standalone2.us.e01.c01.johndeerecloud.com +ewdocs.deere.com +i3dhub.ghns-web-platform-r2-prod-standalone4.eu.e00.c01.johndeerecloud.com +wwhui-legacy.channel-warranty-warehouse-devl-vpn2.us.e06.c01.johndeerecloud.com +displaysimulator.deere.com +parts.waratah.com +work-dispatcher-mobile.cert.us.e01.c01.johndeerecloud.com +work-dispatcher-mobile.prod.us.e01.c01.johndeerecloud.com +work-dispatcher-mobile.qual.us.e01.c01.johndeerecloud.com +vision-devl.deere.com/ +vistaar.tal.deere.com +citratest.deere.com +ims.tcms.tal.deere.com +advance.deere.com +devl-app.nprd-exco.deere.com +operationscenter.deere.com +pages.deere.com +solutionviewer.deere.com +jduetc.deere.com +jdfy-cert.deere.com +jdonline.deere.com +app.expertconnect.deere.com +casemanagement-financeconnect.deere.com +fc-devl-casemanagement-financeconnect.deere.com +fc-qual-casemanagement-financeconnect.deere.com +atlantis.spark.ai +local-auth.spark.ai +redirect.spark.ai +v1docs.spark.ai +acc.kreiselelectric.com +customerportal.kreiselelectric.com +file.kreiselelectric.com +terms.kreiselelectric.com +www.mail.kreiselelectric.com +developer-api-portal.expertconnect.deere.com +customer-identity-qual.deere.com +customer-identity-cert.deere.com +customer-identity.deere.com +https://customer-identity-qual.deere.com/search +https://customer-identity-cert.deere.com/search +https://customer-identity.deere.com/search +https://customer-identity-qual.deere.com/maintain +https://customer-identity-cert.deere.com/maintain +https://customer-identity.deere.com/maintain +customermdm-digital-user-qual.deere.com +customermdm-digital-user-cert.deere.com +customermdm-digital-user-prod.deere.com +reference-data-qual.deere.com +reference-data-cert.deere.com +reference-data.deere.com +https://reference-data-qual.deere.com/reference +https://reference-data-cert.deere.com/reference +https://reference-data.deere.com/reference +https://reference-data-qual.deere.com/syncsort +https://reference-data-cert.deere.com/syncsort +https://reference-data.deere.com/syncsort +mdmcustomerverificationapiqual.devl-vpn.us.e18.c01.johndeerecloud.com +mdmcustomerverificationapi.prod-vpn.us.e18.c01.johndeerecloud.com +grafana.arthur.deere.com +autodiscover.unimil.com.br +cpanel.unimil.com.br +datasulpro.unimil.com.br +ftp.unimil.com.br +homoldatasul.unimil.com.br +imap.unimil.com.br +mail.unimil.com.br +mkt.unimil.com.br +mobile.unimil.com.br +ns1.unimil.com.br +ns2.unimil.com.br +pda.unimil.com.br +pop.unimil.com.br +pop3.unimil.com.br +proddatasul.unimil.com.br +proddatasultst.unimil.com.br +smtp.unimil.com.br +unimil.com.br +wap.unimil.com.br +webmail.unimil.com.br +www.unimil.com.br +autodiscover.pla.com.br +ftp.pla.com.br +imap.pla.com.br +lyncdiscover.pla.com.br +mail.pla.com.br +materiais.pla.com.br +mobile.pla.com.br +mysql01.pla.com.br +mysql02.pla.com.br +mysql03.pla.com.br +mysql04.pla.com.br +mysql06.pla.com.br +ns1.pla.com.br +ns2.pla.com.br +ns3.pla.com.br +painel.pla.com.br +pda.pla.com.br +pla.com.br +pop.pla.com.br +pop3.pla.com.br +sip.pla.com.br +sipar.pla.com.br +smtp.pla.com.br +wap.pla.com.br +webmail.pla.com.br +sandboxapi.deere.com +devadminqa.deere.com +atrium.deere.com +kingagro.com +kingagro.com.ar +mail.agrocarbono.com.ar +https://deere.com +autoconfig.kingagro.com +autodiscover.kingagro.com +www.kingagro.com +www.kingagro.com.ar +kingagro-devl.deere.com +bluerivert.com +bluerivertech.com +assets.harvestprofit.com +calendar.harvestprofit.com +course.harvestprofit.com +dealers-staging.harvestprofit.com +email.harvestprofit.com +fax.harvestprofit.com +files.harvestprofit.com +freetrial.harvestprofit.com +imap.harvestprofit.com +invest.harvestprofit.com +mail.harvestprofit.com +metabase.harvestprofit.com +partners.harvestprofit.com +pop.harvestprofit.com +products.harvestprofit.com +s1._domainkey.harvestprofit.com +smtp.harvestprofit.com +test.harvestprofit.com +autoconfig.kingagro.com.ar +autodiscover.kingagro.com.ar +kingagro.es +lyncdiscover.kingagro.com +mail.kingagro.com +sip.kingagro.com +www.kingagro.es +anubhuti-associates-nlb-323ffbc5be9c6943.elb.ap-south-1.amazonaws.com +anubhuti-common-nlb-b4c5b3b693b55734.elb.ap-south-1.amazonaws.com +anubhuti-local-nlb-6b9d2fc5cd815f6e.elb.ap-south-1.amazonaws.com +anubhuti-registration-nlb-67d4351a2d0c539e.elb.ap-south-1.amazonaws.com +anubhuti-userdata-nlb-3ba0df74c52b028b.elb.ap-south-1.amazonaws.com +anubhuti-userdata-nlb-79fafbcd9dab384c.elb.ap-south-1.amazonaws.com +anubhuti.deere.com +anubhuti.tal.deere.com +anubhutiapi.tal.deere.com +anubhutiapicert.deere.com +anubhutiapiqual.tal.deere.com +anubhutiapis.channel-dss-r1-anubhuti-devl-vpn.ap.e06.c01.johndeerecloud.com +anubhutiapis.channel-dss-r1-anubhuti-qual-vpn.ap.e06.c01.johndeerecloud.com +anubhuticert.deere.com +anubhutiqual.tal.deere.com +apigateway.channel-dss-r1-anubhuti-devl-vpn.ap.e06.c01.johndeerecloud.com +d-z076ywkf28.execute-api.ap-south-1.amazonaws.com +fdpupuapp15.jdpublic.deere.com +fdpupyapp5.jdpublic.deere.com +sim-frontend-nlb-devl-231adec0e420d442.elb.ap-south-1.amazonaws.com +sim-frontend-nlb-qual-a1f0385e06b6ddb6.elb.ap-south-1.amazonaws.com +simfrontend.channel-dss-r1-anubhuti-qual-vpn.ap.e06.c01.johndeerecloud.com +prod-api.rewards.deere.com +qa.rewards.deere.com +qa1-api.rewards.deere.com +qa1.rewards.deere.com +redeem.rewards.deere.com +stg-api.rewards.deere.com +stg.rewards.deere.com +aommetrics.deere.com +dtfapi.deere.com +measure.deere.com +events.deere.com +manual-library.deere.com +dealerapi.prod-vpn.us.e18.c01.johndeerecloud.com +digitalparts.deere.com +shield.deere.com +pdcpartsrequest.deere.com +www.johndeereshop.com +preview.dig.deere.com +abtools.deere.com +sonar13.marketing-devl.us.e06.c01.johndeerecloud.com +vdp.deere.com +agile.deere.com +vplanjvm.deere.com diff --git a/src/john-deere/note.txt b/src/john-deere/note.txt new file mode 100644 index 0000000..499cf7e --- /dev/null +++ b/src/john-deere/note.txt @@ -0,0 +1 @@ +49728 https://hackerone.com/john-deere John Deere john-deere diff --git a/src/johnblackbourn/SOURCE_CODE.txt b/src/johnblackbourn/SOURCE_CODE.txt new file mode 100644 index 0000000..58f0789 --- /dev/null +++ b/src/johnblackbourn/SOURCE_CODE.txt @@ -0,0 +1,3 @@ +https://github.com/johnbillion/user-switching +https://github.com/johnbillion/query-monitor +https://github.com/johnbillion/wp-crontrol diff --git a/src/johnblackbourn/note.txt b/src/johnblackbourn/note.txt new file mode 100644 index 0000000..3a8f5fd --- /dev/null +++ b/src/johnblackbourn/note.txt @@ -0,0 +1 @@ +20286 https://hackerone.com/johnblackbourn JohnBlackbourn johnblackbourn diff --git a/src/jsdelivr/note.txt b/src/jsdelivr/note.txt new file mode 100644 index 0000000..868c01f --- /dev/null +++ b/src/jsdelivr/note.txt @@ -0,0 +1 @@ +266 https://hackerone.com/jsdelivr jsDelivr jsdelivr diff --git a/src/judgeme/URL.txt b/src/judgeme/URL.txt new file mode 100644 index 0000000..d3d2d62 --- /dev/null +++ b/src/judgeme/URL.txt @@ -0,0 +1,11 @@ +https://judge.me/ +https://judge.me/reviews +https://shop.judge.me/ +https://woocommerce-adapter.judge.me/ +https://bigcommerce-adapter.judge.me/ +https://cache.judge.me/ +judge.me +shop.judge.me +woocommerce-adapter.judge.me +bigcommerce-adapter.judge.me +cache.judge.me diff --git a/src/judgeme/note.txt b/src/judgeme/note.txt new file mode 100644 index 0000000..1148eec --- /dev/null +++ b/src/judgeme/note.txt @@ -0,0 +1 @@ +50842 https://hackerone.com/judgeme Judge.me judgeme diff --git a/src/kadira/note.txt b/src/kadira/note.txt new file mode 100644 index 0000000..529be47 --- /dev/null +++ b/src/kadira/note.txt @@ -0,0 +1 @@ +194 https://hackerone.com/kadira Kadira kadira diff --git a/src/kahootz-vdp/URL.txt b/src/kahootz-vdp/URL.txt new file mode 100644 index 0000000..9d09394 --- /dev/null +++ b/src/kahootz-vdp/URL.txt @@ -0,0 +1,2 @@ +defenceshare.mod.uk +http://vdp.kahootz.com diff --git a/src/kahootz-vdp/note.txt b/src/kahootz-vdp/note.txt new file mode 100644 index 0000000..d50b05f --- /dev/null +++ b/src/kahootz-vdp/note.txt @@ -0,0 +1 @@ +60429 https://hackerone.com/kahootz-vdp Kahootz kahootz-vdp diff --git a/src/kartpay/URL.txt b/src/kartpay/URL.txt new file mode 100644 index 0000000..8506528 --- /dev/null +++ b/src/kartpay/URL.txt @@ -0,0 +1 @@ +*.kartpay.com diff --git a/src/kartpay/WILDCARD.txt b/src/kartpay/WILDCARD.txt new file mode 100644 index 0000000..15e40ab --- /dev/null +++ b/src/kartpay/WILDCARD.txt @@ -0,0 +1,2 @@ +http://*.kartpay.com +*.kartpay.com diff --git a/src/kartpay/note.txt b/src/kartpay/note.txt new file mode 100644 index 0000000..cb03f46 --- /dev/null +++ b/src/kartpay/note.txt @@ -0,0 +1 @@ +22925 https://hackerone.com/kartpay Kartpay kartpay diff --git a/src/kaspersky/note.txt b/src/kaspersky/note.txt new file mode 100644 index 0000000..1ca8eec --- /dev/null +++ b/src/kaspersky/note.txt @@ -0,0 +1 @@ +2379 https://hackerone.com/kaspersky Kaspersky kaspersky diff --git a/src/kayak/APPLE_STORE_APP_ID.txt b/src/kayak/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..93d2246 --- /dev/null +++ b/src/kayak/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +com.kayak.travel diff --git a/src/kayak/GOOGLE_PLAY_APP_ID.txt b/src/kayak/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..ea1e0e4 --- /dev/null +++ b/src/kayak/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.kayak.android diff --git a/src/kayak/URL.txt b/src/kayak/URL.txt new file mode 100644 index 0000000..c5ac733 --- /dev/null +++ b/src/kayak/URL.txt @@ -0,0 +1,8 @@ +www.kayak.com +www.swoodoo.com +www.checkfelix.com +www.momondo.com +www.cheapflights.com +www.hotelscombined.com +www.mundi.com.br +business.kayak.com diff --git a/src/kayak/note.txt b/src/kayak/note.txt new file mode 100644 index 0000000..be60993 --- /dev/null +++ b/src/kayak/note.txt @@ -0,0 +1 @@ +1320 https://hackerone.com/kayak KAYAK kayak diff --git a/src/keurigdrpepper/OTHER.txt b/src/keurigdrpepper/OTHER.txt new file mode 100644 index 0000000..83af15b --- /dev/null +++ b/src/keurigdrpepper/OTHER.txt @@ -0,0 +1 @@ +All Keurig Dr Pepper-owned Assets diff --git a/src/keurigdrpepper/note.txt b/src/keurigdrpepper/note.txt new file mode 100644 index 0000000..d3848cf --- /dev/null +++ b/src/keurigdrpepper/note.txt @@ -0,0 +1 @@ +53207 https://hackerone.com/keurigdrpepper Keurig Dr Pepper keurigdrpepper diff --git a/src/keybank/APPLE_STORE_APP_ID.txt b/src/keybank/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..086549f --- /dev/null +++ b/src/keybank/APPLE_STORE_APP_ID.txt @@ -0,0 +1,7 @@ +510717503 +1242358235 +1090492316 +479213995 +com.keybank.mobile +com.keycorp.kmf +com.laurelRoad.mobile diff --git a/src/keybank/CIDR.txt b/src/keybank/CIDR.txt new file mode 100644 index 0000000..639246a --- /dev/null +++ b/src/keybank/CIDR.txt @@ -0,0 +1 @@ +156.77.0.0/16 diff --git a/src/keybank/GOOGLE_PLAY_APP_ID.txt b/src/keybank/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..bcbfa39 --- /dev/null +++ b/src/keybank/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1,5 @@ +com.key.android +com.keycorp.kmf +com.nclud.hellowallet +com.key.community.tablet +com.laurelroad.android diff --git a/src/keybank/URL.txt b/src/keybank/URL.txt new file mode 100644 index 0000000..1092c54 --- /dev/null +++ b/src/keybank/URL.txt @@ -0,0 +1,6 @@ +*.key.com +*.keybank.com +*.bolstr.com +*.hellowallet.com +*.laurelroad.com +*.cainbrothers.com diff --git a/src/keybank/WILDCARD.txt b/src/keybank/WILDCARD.txt new file mode 100644 index 0000000..fcda514 --- /dev/null +++ b/src/keybank/WILDCARD.txt @@ -0,0 +1,13 @@ +*.key.com +*.key2businesscard.com +*.keyapsolutions.com +*.keybank.com +*.keydirect.com +*.keyequipmentfinance.com +*.laurelroad.com +*.xup-onboarding.com +*.xuphub.com +*.xuppay-statement-analyzer.com +*.xuppay.com +*.xupservicing.com +*.xupsupport.com diff --git a/src/keybank/note.txt b/src/keybank/note.txt new file mode 100644 index 0000000..b6e5861 --- /dev/null +++ b/src/keybank/note.txt @@ -0,0 +1 @@ +41089 https://hackerone.com/keybank KeyBank keybank diff --git a/src/keybase/note.txt b/src/keybase/note.txt new file mode 100644 index 0000000..41ab13d --- /dev/null +++ b/src/keybase/note.txt @@ -0,0 +1 @@ +2809 https://hackerone.com/keybase Keybase keybase diff --git a/src/khanacademy/note.txt b/src/khanacademy/note.txt new file mode 100644 index 0000000..2f6521e --- /dev/null +++ b/src/khanacademy/note.txt @@ -0,0 +1 @@ +134 https://hackerone.com/khanacademy Khan Academy khanacademy diff --git a/src/kindred_group/APPLE_STORE_APP_ID.txt b/src/kindred_group/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..2442fda --- /dev/null +++ b/src/kindred_group/APPLE_STORE_APP_ID.txt @@ -0,0 +1,3 @@ +905382680 +463335337 +669969610 diff --git a/src/kindred_group/GOOGLE_PLAY_APP_ID.txt b/src/kindred_group/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..dcbf2c5 --- /dev/null +++ b/src/kindred_group/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1,2 @@ +com.unibet.casino +com.unibet.unibetpro diff --git a/src/kindred_group/OTHER.txt b/src/kindred_group/OTHER.txt new file mode 100644 index 0000000..908ffbc --- /dev/null +++ b/src/kindred_group/OTHER.txt @@ -0,0 +1 @@ +Components diff --git a/src/kindred_group/URL.txt b/src/kindred_group/URL.txt new file mode 100644 index 0000000..37ae38f --- /dev/null +++ b/src/kindred_group/URL.txt @@ -0,0 +1,17 @@ +*.unibet.com +*.unibet.fr +*.storspiller.com +*.bingo.com +*.mariacasino.com +*.kolikkopelit.com +*.casinohuone.com +*.igame.com +*.vladcazino.ro +unibet.me +maria.casino +*.ottokasino.com +*.kindredext.net +https://www.32red.com +relaxcdn.unibet.com +*.highrolling.nu +www.32red.com diff --git a/src/kindred_group/WILDCARD.txt b/src/kindred_group/WILDCARD.txt new file mode 100644 index 0000000..6c36ebf --- /dev/null +++ b/src/kindred_group/WILDCARD.txt @@ -0,0 +1,25 @@ +http://*.unibet.com +http://*.unibet.fr +http://*.storspiller.com +http://*.bingo.com +http://*.mariacasino.com +http://*.kolikkopelit.com +http://*.casinohuone.com +http://*.igame.com +http://*.vladcazino.ro +http://*.ottokasino.com +http://*.kindredext.net +http://*.highrolling.nu +*.unibet.com +*.unibet.fr +*.storspiller.com +*.bingo.com +*.mariacasino.com +*.kolikkopelit.com +*.casinohuone.com +*.igame.com +*.vladcazino.ro +*.ottokasino.com +*.kindredext.net +*.highrolling.nu +*.kes.kindredext.net diff --git a/src/kindred_group/note.txt b/src/kindred_group/note.txt new file mode 100644 index 0000000..47d76a0 --- /dev/null +++ b/src/kindred_group/note.txt @@ -0,0 +1 @@ +14047 https://hackerone.com/kindred_group Kindred Group kindred_group diff --git a/src/kiwi-ki/URL.txt b/src/kiwi-ki/URL.txt new file mode 100644 index 0000000..1529240 --- /dev/null +++ b/src/kiwi-ki/URL.txt @@ -0,0 +1,3 @@ +api.kiwi.ki +mobile.kiwi.ki +portal.kiwi.ki diff --git a/src/kiwi-ki/note.txt b/src/kiwi-ki/note.txt new file mode 100644 index 0000000..c2258b0 --- /dev/null +++ b/src/kiwi-ki/note.txt @@ -0,0 +1 @@ +3056 https://hackerone.com/kiwi-ki KIWI.KI GmbH kiwi-ki diff --git a/src/kiwicom/APPLE_STORE_APP_ID.txt b/src/kiwicom/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..5a489f4 --- /dev/null +++ b/src/kiwicom/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +com.skypicker.Skypicker diff --git a/src/kiwicom/GOOGLE_PLAY_APP_ID.txt b/src/kiwicom/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..480fdaa --- /dev/null +++ b/src/kiwicom/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.skypicker.main diff --git a/src/kiwicom/SOURCE_CODE.txt b/src/kiwicom/SOURCE_CODE.txt new file mode 100644 index 0000000..cb8e629 --- /dev/null +++ b/src/kiwicom/SOURCE_CODE.txt @@ -0,0 +1 @@ +https://github.com/kiwicom/* diff --git a/src/kiwicom/URL.txt b/src/kiwicom/URL.txt new file mode 100644 index 0000000..56352ca --- /dev/null +++ b/src/kiwicom/URL.txt @@ -0,0 +1,8 @@ +www.kiwi.com +*.kiwi.com +*.skypicker.com +auth.skypicker.com +tequila.kiwi.com +www.kiwi.com/stories +jobs.kiwi.com +http://www.kiwi.com/stories diff --git a/src/kiwicom/WILDCARD.txt b/src/kiwicom/WILDCARD.txt new file mode 100644 index 0000000..f515246 --- /dev/null +++ b/src/kiwicom/WILDCARD.txt @@ -0,0 +1,4 @@ +http://*.kiwi.com +http://*.skypicker.com +*.kiwi.com +*.skypicker.com diff --git a/src/kiwicom/note.txt b/src/kiwicom/note.txt new file mode 100644 index 0000000..368316b --- /dev/null +++ b/src/kiwicom/note.txt @@ -0,0 +1 @@ +8582 https://hackerone.com/kiwicom Kiwi.com kiwicom diff --git a/src/kkr_vdp/URL.txt b/src/kkr_vdp/URL.txt new file mode 100644 index 0000000..e22f58a --- /dev/null +++ b/src/kkr_vdp/URL.txt @@ -0,0 +1,13 @@ +portal.kkr.com +*.kkr.com +kkr.com +www.fskkradvisor.com +www.kkrfunds.com +*.kkr.cloud +www.kkrreit.com +www.kkresg.com +processaccess.kkr.com +advisortimetracker.kkr.com +kkrpec.com +kinfra.com +ksam.com diff --git a/src/kkr_vdp/note.txt b/src/kkr_vdp/note.txt new file mode 100644 index 0000000..3dbcb2e --- /dev/null +++ b/src/kkr_vdp/note.txt @@ -0,0 +1 @@ +58186 https://hackerone.com/kkr_vdp KKR-VDP kkr_vdp diff --git a/src/klarna_bbp_public/OTHER.txt b/src/klarna_bbp_public/OTHER.txt new file mode 100644 index 0000000..e260fe2 --- /dev/null +++ b/src/klarna_bbp_public/OTHER.txt @@ -0,0 +1 @@ +Merchant Portal diff --git a/src/klarna_bbp_public/note.txt b/src/klarna_bbp_public/note.txt new file mode 100644 index 0000000..2df352f --- /dev/null +++ b/src/klarna_bbp_public/note.txt @@ -0,0 +1 @@ +81945 https://hackerone.com/klarna_bbp_public Klarna Public Program klarna_bbp_public diff --git a/src/koho/APPLE_STORE_APP_ID.txt b/src/koho/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..85e3dda --- /dev/null +++ b/src/koho/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +1091010942 diff --git a/src/koho/GOOGLE_PLAY_APP_ID.txt b/src/koho/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..0976d15 --- /dev/null +++ b/src/koho/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +ca.koho diff --git a/src/koho/URL.txt b/src/koho/URL.txt new file mode 100644 index 0000000..38cdd60 --- /dev/null +++ b/src/koho/URL.txt @@ -0,0 +1,9 @@ +*.koho.ca +*.koho.app +web.koho.ca +http://api.koho.ca/1.0 +http://api.koho.ca/partner +app.koho.ca +webgateway.koho.ca +www.koho.ca +usercontent.koho.ca diff --git a/src/koho/note.txt b/src/koho/note.txt new file mode 100644 index 0000000..41037ec --- /dev/null +++ b/src/koho/note.txt @@ -0,0 +1,2 @@ +41650 https://hackerone.com/koho Koho koho +53499 https://hackerone.com/koho KOHO koho diff --git a/src/kolesagroup/APPLE_STORE_APP_ID.txt b/src/kolesagroup/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..b77ea85 --- /dev/null +++ b/src/kolesagroup/APPLE_STORE_APP_ID.txt @@ -0,0 +1,3 @@ +563291345 +965180355 +1431768824 diff --git a/src/kolesagroup/OTHER_APK.txt b/src/kolesagroup/OTHER_APK.txt new file mode 100644 index 0000000..19faebf --- /dev/null +++ b/src/kolesagroup/OTHER_APK.txt @@ -0,0 +1,3 @@ +kz.kolesa +kz.krisha +uz.avtoelon diff --git a/src/kolesagroup/URL.txt b/src/kolesagroup/URL.txt new file mode 100644 index 0000000..8e32fe2 --- /dev/null +++ b/src/kolesagroup/URL.txt @@ -0,0 +1,14 @@ +kolesa.kz +m.kolesa.kz +api.kolesa.kz +app.kolesa.kz +id.kolesa.kz +krisha.kz +m.krisha.kz +api.krisha.kz +app.krisha.kz +avtoelon.uz +m.avtoelon.uz +api.avtoelon.uz +app.avtoelon.uz +id.avtoelon.uz diff --git a/src/kolesagroup/note.txt b/src/kolesagroup/note.txt new file mode 100644 index 0000000..52b9b22 --- /dev/null +++ b/src/kolesagroup/note.txt @@ -0,0 +1 @@ +59489 https://hackerone.com/kolesagroup Kolesa Group kolesagroup diff --git a/src/kraden/OTHER_APK.txt b/src/kraden/OTHER_APK.txt new file mode 100644 index 0000000..2bbdfb2 --- /dev/null +++ b/src/kraden/OTHER_APK.txt @@ -0,0 +1 @@ +com.kraden.chat diff --git a/src/kraden/URL.txt b/src/kraden/URL.txt new file mode 100644 index 0000000..b164969 --- /dev/null +++ b/src/kraden/URL.txt @@ -0,0 +1,8 @@ +messenger2.dragonapp.io +getdragon.ch +webrtc.dragonapp.io +wipe.dragonapp.io +releases.dragonapp.io +admin.dragonapp.io +www.kraden.com +wipe.kraden.com diff --git a/src/kraden/note.txt b/src/kraden/note.txt new file mode 100644 index 0000000..c99fc85 --- /dev/null +++ b/src/kraden/note.txt @@ -0,0 +1 @@ +55590 https://hackerone.com/kraden Kraden kraden diff --git a/src/krisp/DOWNLOADABLE_EXECUTABLES.txt b/src/krisp/DOWNLOADABLE_EXECUTABLES.txt new file mode 100644 index 0000000..f9fb752 --- /dev/null +++ b/src/krisp/DOWNLOADABLE_EXECUTABLES.txt @@ -0,0 +1,2 @@ +https://download.krisp.ai/win +https://download.krisp.ai/mac diff --git a/src/krisp/OTHER.txt b/src/krisp/OTHER.txt new file mode 100644 index 0000000..01ea8a0 --- /dev/null +++ b/src/krisp/OTHER.txt @@ -0,0 +1 @@ +Other diff --git a/src/krisp/URL.txt b/src/krisp/URL.txt new file mode 100644 index 0000000..1265b5e --- /dev/null +++ b/src/krisp/URL.txt @@ -0,0 +1,29 @@ +https://krisp.ai +https://account.krisp.ai +https://api.krisp.ai +https://teams.krisp.ai +https://download.krisp.ai +https://analytics.krisp.ai +https://upld.krisp.ai +*.krisp.ai +https://whatsnew.krisp.ai +https://help.krisp.ai +https://help-jp.krisp.ai/ +https://jobs.krisp.ai +https://resources.krisp.ai/ +https://contact.krisp.ai +https://url5145.krisp.ai +krisp.ai +account.krisp.ai +api.krisp.ai +teams.krisp.ai +download.krisp.ai +analytics.krisp.ai +upld.krisp.ai +whatsnew.krisp.ai +help.krisp.ai +help-jp.krisp.ai +jobs.krisp.ai +resources.krisp.ai +contact.krisp.ai +url5145.krisp.ai diff --git a/src/krisp/WILDCARD.txt b/src/krisp/WILDCARD.txt new file mode 100644 index 0000000..553f17d --- /dev/null +++ b/src/krisp/WILDCARD.txt @@ -0,0 +1,2 @@ +http://*.krisp.ai +*.krisp.ai diff --git a/src/krisp/note.txt b/src/krisp/note.txt new file mode 100644 index 0000000..f823881 --- /dev/null +++ b/src/krisp/note.txt @@ -0,0 +1 @@ +53084 https://hackerone.com/krisp Krisp krisp diff --git a/src/kryptor/SOURCE_CODE.txt b/src/kryptor/SOURCE_CODE.txt new file mode 100644 index 0000000..46fcf5d --- /dev/null +++ b/src/kryptor/SOURCE_CODE.txt @@ -0,0 +1,2 @@ +https://github.com/samuel-lucas6/Kryptor +https://github.com/samuel-lucas6/ChaCha20-BLAKE2b diff --git a/src/kryptor/note.txt b/src/kryptor/note.txt new file mode 100644 index 0000000..ded4e22 --- /dev/null +++ b/src/kryptor/note.txt @@ -0,0 +1 @@ +52591 https://hackerone.com/kryptor Kryptor kryptor diff --git a/src/kubernetes/OTHER.txt b/src/kubernetes/OTHER.txt new file mode 100644 index 0000000..badb352 --- /dev/null +++ b/src/kubernetes/OTHER.txt @@ -0,0 +1,3 @@ +k8s.gcr.io +https://storage.googleapis.com/kubernetes-release/ +Community Management & Communications diff --git a/src/kubernetes/SOURCE_CODE.txt b/src/kubernetes/SOURCE_CODE.txt new file mode 100644 index 0000000..4155343 --- /dev/null +++ b/src/kubernetes/SOURCE_CODE.txt @@ -0,0 +1,75 @@ +https://github.com/kubernetes/csi-api +https://github.com/kubernetes/kubernetes +https://github.com/kubernetes/dns +https://github.com/kubernetes/kube-openapi +https://github.com/kubernetes/git-sync +https://github.com/kubernetes/gengo +https://github.com/kubernetes/cluster-bootstrap +https://github.com/kubernetes/kube-controller-manager +https://github.com/kubernetes/kube-scheduler +https://github.com/kubernetes/kubelet +https://github.com/kubernetes/kube-proxy +https://github.com/kubernetes/cli-runtime +https://github.com/kubernetes/metrics +https://github.com/kubernetes/apiextensions-apiserver +https://github.com/kubernetes/kube-aggregator +https://github.com/kubernetes/apiserver +https://github.com/kubernetes/component-base +https://github.com/kubernetes/client-go +https://github.com/kubernetes/api +https://github.com/kubernetes/apimachinery +https://github.com/kubernetes/code-generator +https://github.com/kubernetes/publishing-bot +https://github.com/kubernetes/cluster-registry +https://github.com/kubernetes/k8s.io +https://github.com/kubernetes/klog +https://github.com/kubernetes/utils +https://github.com/kubernetes/website +https://github.com/kubernetes/test-infra +https://github.com/kubernetes/ingress-nginx +https://github.com/kubernetes/kops +https://github.com/kubernetes/minikube +https://github.com/kubernetes/kompose +https://github.com/kubernetes/kube-state-metrics +https://github.com/kubernetes/autoscaler +https://github.com/kubernetes/kube-deploy +https://github.com/kubernetes/release +https://github.com/kubernetes/dashboard +https://github.com/kubernetes/node-problem-detector +https://github.com/kubernetes/repo-infra +https://github.com/kubernetes/kubectl +https://github.com/kubernetes/org +https://github.com/kubernetes/sig-release +https://github.com/kubernetes/kubeadm +https://github.com/kubernetes/cri-api +https://github.com/kubernetes/node-api +https://github.com/kubernetes/csi-translation-lib +https://github.com/kubernetes/cloud-provider +https://github.com/kubernetes-security +https://github.com/kubernetes-client +github.com/kubernetes-csi +https://github.com/kubernetes/cloud-provider-alibaba-cloud +https://github.com/kubernetes/cloud-provider-sample +https://github.com/kubernetes/kubernetes-template-project +https://github.com/kubernetes/kubernetes-anywhere +https://github.com/kubernetes/frakti +https://github.com/kubernetes/sample-cli-plugin +https://github.com/kubernetes/sample-controller +https://github.com/kubernetes/sample-apiserver +https://github.com/kubernetes/cloud-provider-gcp +https://github.com/kubernetes/security +https://github.com/kubernetes/examples +https://github.com/kubernetes/steering +https://github.com/kubernetes/funding +https://github.com/kubernetes/cloud-provider-aws +https://github.com/kubernetes/community +https://github.com/kubernetes/ingress-gce +https://github.com/kubernetes/enhancements +https://github.com/kubernetes/cloud-provider-openstack +https://github.com/kubernetes/perf-tests +https://github.com/kubernetes/cloud-provider-azure +https://github.com/kubernetes/cloud-provider-vsphere +https://github.com/kubernetes/legacy-cloud-providers +https://github.com/kubernetes-incubator +github.com/kubernetes-retired +https://github.com/kubernetes-sigs diff --git a/src/kubernetes/URL.txt b/src/kubernetes/URL.txt new file mode 100644 index 0000000..209f8f5 --- /dev/null +++ b/src/kubernetes/URL.txt @@ -0,0 +1,6 @@ +https://prow.k8s.io +https://kubernetes.io +k8s.io +kubernetes-csi.github.io +prow.k8s.io +kubernetes.io diff --git a/src/kubernetes/note.txt b/src/kubernetes/note.txt new file mode 100644 index 0000000..fcf6460 --- /dev/null +++ b/src/kubernetes/note.txt @@ -0,0 +1 @@ +39386 https://hackerone.com/kubernetes Kubernetes kubernetes diff --git a/src/lab45/URL.txt b/src/lab45/URL.txt new file mode 100644 index 0000000..aa9a68a --- /dev/null +++ b/src/lab45/URL.txt @@ -0,0 +1,66 @@ +www.topcoder.com +api.topcoder.com +arena.topcoder.com +blockchain.topcoder.com +bugzilla.topcoder.com +cmap.topcoder.com +cognitive.topcoder.com +community.topcoder.com +community-app.topcoder.com +connect.topcoder.com +crowdsourcing.topcoder.com +dashboards.topcoder.com +demo.topcoder.com +dev1.topcoder.com +dna.topcoder.com +enterprise.topcoder.com +facedetection.topcoder.com +faceid.topcoder.com +feeds.topcoder.com +forums.topcoder.com +hfgeoloc.topcoder.com +idolondemand.topcoder.com +innovation.topcoder.com +ios.topcoder.com +lauscher.topcoder.com +leaderboards.topcoder.com +members.topcoder.com +morgoth.topcoder.com +namedentity.topcoder.com +pam-wind-dash.topcoder.com +pins-dash.topcoder.com +quantum.topcoder.com +radiological.topcoder.com +ragnar.topcoder.com +scavengerhunt.topcoder.com +software.topcoder.com +solutions.topcoder.com +spacenet.topcoder.com +spacenet2.topcoder.com +status.topcoder.com +studio.topcoder.com +submission-review.topcoder.com +submission-review-api.topcoder.com +success.topcoder.com +tco12.topcoder.com +tco15.topcoder.com +tco16.topcoder.com +tco17.topcoder.com +tco18.topcoder.com +tco19.topcoder.com +textsummarization.topcoder.com +veterans.topcoder.com +vpn.topcoder.com +webhooks.topcoder.com +wordpress.topcoder.com +wordpress-move.topcoder.com +x.topcoder.com +zurich.topcoder.com +accounts.topcoder.com +app.topcoder.com +apps.topcoder.com +challenges.topcoder.com +accounts-auth0.topcoder.com +vanilla.topcoder-dev.com +discussions.topcoder.com +go.topcoder.com diff --git a/src/lab45/note.txt b/src/lab45/note.txt new file mode 100644 index 0000000..48d5056 --- /dev/null +++ b/src/lab45/note.txt @@ -0,0 +1 @@ +43330 https://hackerone.com/lab45 Lab45 lab45 diff --git a/src/lacework/URL.txt b/src/lacework/URL.txt new file mode 100644 index 0000000..02ab833 --- /dev/null +++ b/src/lacework/URL.txt @@ -0,0 +1,2 @@ +*.lacework.net +www.lacework.com diff --git a/src/lacework/WILDCARD.txt b/src/lacework/WILDCARD.txt new file mode 100644 index 0000000..dea51e6 --- /dev/null +++ b/src/lacework/WILDCARD.txt @@ -0,0 +1,2 @@ +http://*.lacework.net +*.lacework.net diff --git a/src/lacework/note.txt b/src/lacework/note.txt new file mode 100644 index 0000000..6c2527a --- /dev/null +++ b/src/lacework/note.txt @@ -0,0 +1 @@ +52713 https://hackerone.com/lacework Lacework lacework diff --git a/src/lark_technologies/APPLE_STORE_APP_ID.txt b/src/lark_technologies/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..fa75016 --- /dev/null +++ b/src/lark_technologies/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +1452166623 diff --git a/src/lark_technologies/DOWNLOADABLE_EXECUTABLES.txt b/src/lark_technologies/DOWNLOADABLE_EXECUTABLES.txt new file mode 100644 index 0000000..8a225d1 --- /dev/null +++ b/src/lark_technologies/DOWNLOADABLE_EXECUTABLES.txt @@ -0,0 +1,2 @@ +Windows OS Executable: Download here https://www.larksuite.com/download +Mac OS Executable: Download here https://www.larksuite.com/download diff --git a/src/lark_technologies/OTHER_APK.txt b/src/lark_technologies/OTHER_APK.txt new file mode 100644 index 0000000..0e2546d --- /dev/null +++ b/src/lark_technologies/OTHER_APK.txt @@ -0,0 +1 @@ +com.larksuite.suite diff --git a/src/lark_technologies/URL.txt b/src/lark_technologies/URL.txt new file mode 100644 index 0000000..095d5bd --- /dev/null +++ b/src/lark_technologies/URL.txt @@ -0,0 +1,13 @@ +larksuite.com +lark-frontier.byteoversea.com +file.larksuite.com +open.larksuite.com +api.larksuite.com +app.larksuite.com +caldav.larksuite.com +status.larksuite.com +passport.larksuite.com +internal-api.larksuite.com +internal-api-lark-api.larksuite.com +internal-api-drive-stream.larksuite.com +hackers_chosendomain.larksuite.com diff --git a/src/lark_technologies/note.txt b/src/lark_technologies/note.txt new file mode 100644 index 0000000..3cf901f --- /dev/null +++ b/src/lark_technologies/note.txt @@ -0,0 +1 @@ +40674 https://hackerone.com/lark_technologies Lark Technologies lark_technologies diff --git a/src/latamairlines/WILDCARD.txt b/src/latamairlines/WILDCARD.txt new file mode 100644 index 0000000..7398285 --- /dev/null +++ b/src/latamairlines/WILDCARD.txt @@ -0,0 +1,9 @@ +http://*.appslatam.com +http://*.latamairlines.com +http://*.lanchile.cl +http://*.lanchile.com +http://*.latam.com +http://*.lan.com +http://*.latampass.cl +http://*.latampass.com +http://*.latamcargo.com diff --git a/src/latamairlines/note.txt b/src/latamairlines/note.txt new file mode 100644 index 0000000..c7dfacf --- /dev/null +++ b/src/latamairlines/note.txt @@ -0,0 +1 @@ +52738 https://hackerone.com/latamairlines LATAM Airlines latamairlines diff --git a/src/launchdarkly/SOURCE_CODE.txt b/src/launchdarkly/SOURCE_CODE.txt new file mode 100644 index 0000000..56dc458 --- /dev/null +++ b/src/launchdarkly/SOURCE_CODE.txt @@ -0,0 +1 @@ +LaunchDarkly Open Source SDKs diff --git a/src/launchdarkly/URL.txt b/src/launchdarkly/URL.txt new file mode 100644 index 0000000..968cfc0 --- /dev/null +++ b/src/launchdarkly/URL.txt @@ -0,0 +1,4 @@ +app.launchdarkly.com +events.launchdarkly.com +stream.launchdarkly.com +docs.launchdarkly.com diff --git a/src/launchdarkly/note.txt b/src/launchdarkly/note.txt new file mode 100644 index 0000000..aa18871 --- /dev/null +++ b/src/launchdarkly/note.txt @@ -0,0 +1 @@ +48754 https://hackerone.com/launchdarkly LaunchDarkly launchdarkly diff --git a/src/leaseweb/note.txt b/src/leaseweb/note.txt new file mode 100644 index 0000000..8950c59 --- /dev/null +++ b/src/leaseweb/note.txt @@ -0,0 +1 @@ +7747 https://hackerone.com/leaseweb LeaseWeb leaseweb diff --git a/src/leather_wallet/SOURCE_CODE.txt b/src/leather_wallet/SOURCE_CODE.txt new file mode 100644 index 0000000..ba7d504 --- /dev/null +++ b/src/leather_wallet/SOURCE_CODE.txt @@ -0,0 +1,2 @@ +https://github.com/leather-wallet/extension +https://github.com/leather-wallet/desktop diff --git a/src/leather_wallet/URL.txt b/src/leather_wallet/URL.txt new file mode 100644 index 0000000..085cac1 --- /dev/null +++ b/src/leather_wallet/URL.txt @@ -0,0 +1 @@ +www.leather.io diff --git a/src/leather_wallet/note.txt b/src/leather_wallet/note.txt new file mode 100644 index 0000000..0680f56 --- /dev/null +++ b/src/leather_wallet/note.txt @@ -0,0 +1 @@ +70351 https://hackerone.com/leather_wallet Leather Wallet leather_wallet diff --git a/src/legalrobot/URL.txt b/src/legalrobot/URL.txt new file mode 100644 index 0000000..fb76569 --- /dev/null +++ b/src/legalrobot/URL.txt @@ -0,0 +1,4 @@ +app.legalrobot.com +www.legalrobot.com +www.legalrobot-test.com +app.legalrobot-test.com diff --git a/src/legalrobot/note.txt b/src/legalrobot/note.txt new file mode 100644 index 0000000..528d27c --- /dev/null +++ b/src/legalrobot/note.txt @@ -0,0 +1 @@ +1601 https://hackerone.com/legalrobot Legal Robot legalrobot diff --git a/src/lemlist/URL.txt b/src/lemlist/URL.txt new file mode 100644 index 0000000..9ed2c14 --- /dev/null +++ b/src/lemlist/URL.txt @@ -0,0 +1,3 @@ +app.lemlist.com +app.lemcal.com +app.lemwarm.com diff --git a/src/lemlist/note.txt b/src/lemlist/note.txt new file mode 100644 index 0000000..f0b449a --- /dev/null +++ b/src/lemlist/note.txt @@ -0,0 +1 @@ +44045 https://hackerone.com/lemlist lemlist lemlist diff --git a/src/liberapay/OTHER.txt b/src/liberapay/OTHER.txt new file mode 100644 index 0000000..5373490 --- /dev/null +++ b/src/liberapay/OTHER.txt @@ -0,0 +1 @@ +Any IP belonging to Liberapay diff --git a/src/liberapay/SOURCE_CODE.txt b/src/liberapay/SOURCE_CODE.txt new file mode 100644 index 0000000..26b1b33 --- /dev/null +++ b/src/liberapay/SOURCE_CODE.txt @@ -0,0 +1 @@ +https://github.com/liberapay/liberapay.com diff --git a/src/liberapay/URL.txt b/src/liberapay/URL.txt new file mode 100644 index 0000000..03402f5 --- /dev/null +++ b/src/liberapay/URL.txt @@ -0,0 +1,2 @@ +*.liberapay.com +*.liberapay.org diff --git a/src/liberapay/WILDCARD.txt b/src/liberapay/WILDCARD.txt new file mode 100644 index 0000000..ddeb54d --- /dev/null +++ b/src/liberapay/WILDCARD.txt @@ -0,0 +1,2 @@ +http://*.liberapay.com +*.liberapay.com diff --git a/src/liberapay/note.txt b/src/liberapay/note.txt new file mode 100644 index 0000000..2db4f8c --- /dev/null +++ b/src/liberapay/note.txt @@ -0,0 +1 @@ +28411 https://hackerone.com/liberapay Liberapay liberapay diff --git a/src/libsass/note.txt b/src/libsass/note.txt new file mode 100644 index 0000000..6f1662d --- /dev/null +++ b/src/libsass/note.txt @@ -0,0 +1 @@ +2250 https://hackerone.com/libsass LibSass libsass diff --git a/src/lifeomic/APPLE_STORE_APP_ID.txt b/src/lifeomic/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..678e1f9 --- /dev/null +++ b/src/lifeomic/APPLE_STORE_APP_ID.txt @@ -0,0 +1,2 @@ +com.lifeomic.life +com.lifeomic.LIFEExtend diff --git a/src/lifeomic/GOOGLE_PLAY_APP_ID.txt b/src/lifeomic/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..0f0f14b --- /dev/null +++ b/src/lifeomic/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1,2 @@ +com.lifeomic.lifefasting +com.lifeomic.lifeextend diff --git a/src/lifeomic/OTHER.txt b/src/lifeomic/OTHER.txt new file mode 100644 index 0000000..244e4df --- /dev/null +++ b/src/lifeomic/OTHER.txt @@ -0,0 +1 @@ +Scope Not Listed (See Instruction) diff --git a/src/lifeomic/SOURCE_CODE.txt b/src/lifeomic/SOURCE_CODE.txt new file mode 100644 index 0000000..2c2c7f6 --- /dev/null +++ b/src/lifeomic/SOURCE_CODE.txt @@ -0,0 +1 @@ +https://github.com/lifeomic/cli diff --git a/src/lifeomic/URL.txt b/src/lifeomic/URL.txt new file mode 100644 index 0000000..d381de2 --- /dev/null +++ b/src/lifeomic/URL.txt @@ -0,0 +1,18 @@ +*.infra.lifeomic.com +*.dev.lifeomic.com +https://apps.wellness.dev.lifeomic.com +https://lifeology.dev.lifeomic.com +apps.dev.lifeomic.com/phc +apps.dev.lifeomic.com/precision-ocr +connect-console.dev.lifeomic.com +apps.dev.skillspring.com +marketplace.dev.lifeomic.com +ga4gh.dev.lifeomic.com +api.dev.lifeomic.com +api.dev.lifeomic.com/graphql +fhir.dev.lifeomic.com +apps.wellness.dev.lifeomic.com +lifeology.dev.lifeomic.com +http://apps.dev.lifeomic.com/phc +http://apps.dev.lifeomic.com/precision-ocr +http://api.dev.lifeomic.com/graphql diff --git a/src/lifeomic/WILDCARD.txt b/src/lifeomic/WILDCARD.txt new file mode 100644 index 0000000..bbcb561 --- /dev/null +++ b/src/lifeomic/WILDCARD.txt @@ -0,0 +1,4 @@ +http://*.infra.lifeomic.com +http://*.dev.lifeomic.com +*.infra.lifeomic.com +*.dev.lifeomic.com diff --git a/src/lifeomic/note.txt b/src/lifeomic/note.txt new file mode 100644 index 0000000..e6f836a --- /dev/null +++ b/src/lifeomic/note.txt @@ -0,0 +1 @@ +24019 https://hackerone.com/lifeomic LifeOmic lifeomic diff --git a/src/line/APPLE_STORE_APP_ID.txt b/src/line/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..e2b5db6 --- /dev/null +++ b/src/line/APPLE_STORE_APP_ID.txt @@ -0,0 +1,2 @@ +443904275 +539883307 diff --git a/src/line/DOWNLOADABLE_EXECUTABLES.txt b/src/line/DOWNLOADABLE_EXECUTABLES.txt new file mode 100644 index 0000000..c5849bc --- /dev/null +++ b/src/line/DOWNLOADABLE_EXECUTABLES.txt @@ -0,0 +1 @@ +Windows Executable diff --git a/src/line/GOOGLE_PLAY_APP_ID.txt b/src/line/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..ecb3617 --- /dev/null +++ b/src/line/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1,2 @@ +jp.naver.line.android +com.linecorp.linelite diff --git a/src/line/OTHER.txt b/src/line/OTHER.txt new file mode 100644 index 0000000..1de4544 --- /dev/null +++ b/src/line/OTHER.txt @@ -0,0 +1,8 @@ +Chrome Extension +LINE Messenger - VOOM +LINE Messenger - Keep +LINE Messenger - VoIP +LINE Messenger - Chat +LINE Messenger - OpenChat +LINE Messenger - News +Other Assets diff --git a/src/line/URL.txt b/src/line/URL.txt new file mode 100644 index 0000000..0ff4bdd --- /dev/null +++ b/src/line/URL.txt @@ -0,0 +1,5 @@ +*.line.me +*.line-apps.com +*.line.naver.jp +*.line.biz +http://recruit.linepluscorp.com diff --git a/src/line/WILDCARD.txt b/src/line/WILDCARD.txt new file mode 100644 index 0000000..7dcb460 --- /dev/null +++ b/src/line/WILDCARD.txt @@ -0,0 +1,9 @@ +http://*.line.me +http://*.line-apps.com +http://*.line.naver.jp +http://*.line.biz +*.line.me +*.line-apps.com +*.line.naver.jp +*.line.biz +*.linecorp.com diff --git a/src/line/WINDOWS_APP_STORE_APP_ID.txt b/src/line/WINDOWS_APP_STORE_APP_ID.txt new file mode 100644 index 0000000..136d880 --- /dev/null +++ b/src/line/WINDOWS_APP_STORE_APP_ID.txt @@ -0,0 +1 @@ +9wzdncrfj2g6 diff --git a/src/line/note.txt b/src/line/note.txt new file mode 100644 index 0000000..4a44b00 --- /dev/null +++ b/src/line/note.txt @@ -0,0 +1,2 @@ +13343 https://hackerone.com/line LINE line +13343 https://hackerone.com/line LY Corporation line diff --git a/src/linkedin/APPLE_STORE_APP_ID.txt b/src/linkedin/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..2f03973 --- /dev/null +++ b/src/linkedin/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +288429040 diff --git a/src/linkedin/GOOGLE_PLAY_APP_ID.txt b/src/linkedin/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..be42a66 --- /dev/null +++ b/src/linkedin/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.linkedin.android diff --git a/src/linkedin/URL.txt b/src/linkedin/URL.txt new file mode 100644 index 0000000..d2a0536 --- /dev/null +++ b/src/linkedin/URL.txt @@ -0,0 +1,3 @@ +www.linkedin.com +api.linkedin.com +business.linkedin.com diff --git a/src/linkedin/note.txt b/src/linkedin/note.txt new file mode 100644 index 0000000..25d17e3 --- /dev/null +++ b/src/linkedin/note.txt @@ -0,0 +1 @@ +58 https://hackerone.com/linkedin LinkedIn linkedin diff --git a/src/linktree/note.txt b/src/linktree/note.txt new file mode 100644 index 0000000..140c57c --- /dev/null +++ b/src/linktree/note.txt @@ -0,0 +1 @@ +52101 https://hackerone.com/linktree Linktree linktree diff --git a/src/livestream/APPLE_STORE_APP_ID.txt b/src/livestream/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..44e240b --- /dev/null +++ b/src/livestream/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +493086499 diff --git a/src/livestream/GOOGLE_PLAY_APP_ID.txt b/src/livestream/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..fe89a7c --- /dev/null +++ b/src/livestream/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.livestream.livestream diff --git a/src/livestream/OTHER.txt b/src/livestream/OTHER.txt new file mode 100644 index 0000000..50db799 --- /dev/null +++ b/src/livestream/OTHER.txt @@ -0,0 +1 @@ +Livestream software (Producer, Studio) diff --git a/src/livestream/URL.txt b/src/livestream/URL.txt new file mode 100644 index 0000000..03e4587 --- /dev/null +++ b/src/livestream/URL.txt @@ -0,0 +1,4 @@ +*.livestream.com +www.livestream.com +*.new.livestream.com +donations.livestream.com diff --git a/src/livestream/note.txt b/src/livestream/note.txt new file mode 100644 index 0000000..8f3df88 --- /dev/null +++ b/src/livestream/note.txt @@ -0,0 +1 @@ +7915 https://hackerone.com/livestream Livestream livestream diff --git a/src/lob/URL.txt b/src/lob/URL.txt new file mode 100644 index 0000000..3411c61 --- /dev/null +++ b/src/lob/URL.txt @@ -0,0 +1,19 @@ +api.lob.com +www.lob.com +dashboard.lob.com +address-autocomplete.lob.com +arcade.lob.com +dora.lob.com +lob.com +partners.lob.com +pizza-planet.lob.com +redshift.lob.com +sftp.lob.com +signal.lob.com +vpn.lob.com +woody.lob.com +usps-sftp.lob.com +lob-assets.com +blog.lob.com +docs.lob.com +mock.lob.com diff --git a/src/lob/note.txt b/src/lob/note.txt new file mode 100644 index 0000000..275f208 --- /dev/null +++ b/src/lob/note.txt @@ -0,0 +1 @@ +27778 https://hackerone.com/lob Lob lob diff --git a/src/localizejs/URL.txt b/src/localizejs/URL.txt new file mode 100644 index 0000000..5ca9025 --- /dev/null +++ b/src/localizejs/URL.txt @@ -0,0 +1,4 @@ +localizestaging.com +api.localizestaging.com +app.localizestaging.com +cdn.localizestaging.com diff --git a/src/localizejs/note.txt b/src/localizejs/note.txt new file mode 100644 index 0000000..c211abe --- /dev/null +++ b/src/localizejs/note.txt @@ -0,0 +1 @@ +14122 https://hackerone.com/localizejs Localize localizejs diff --git a/src/localtapiola/APPLE_STORE_APP_ID.txt b/src/localtapiola/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..9e03028 --- /dev/null +++ b/src/localtapiola/APPLE_STORE_APP_ID.txt @@ -0,0 +1,2 @@ +1298908406 +1439784468 diff --git a/src/localtapiola/GOOGLE_PLAY_APP_ID.txt b/src/localtapiola/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..ee22cbd --- /dev/null +++ b/src/localtapiola/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1,2 @@ +fi.lahitapiola.mobile +fi.lahitapiola.lemmikkihelppi diff --git a/src/localtapiola/URL.txt b/src/localtapiola/URL.txt new file mode 100644 index 0000000..91013b9 --- /dev/null +++ b/src/localtapiola/URL.txt @@ -0,0 +1,18 @@ +www.lahitapiola.fi +www.tapiola.fi +verkkopalvelu.tapiola.fi +yrityspalvelu.tapiola.fi +secure.lahitapiola.fi +myynti.lahitapiolarahoitus.fi +ext-gw.lahitapiola.fi +lisasijoitus.lahitapiola.fi +verovelvollisuustiedot.lahitapiola.fi +sijoitusvakuutus.lahitapiola.fi +asiointi.lahitapiola.fi +api.lahitapiola.fi +privatetarget-2-secure.zigzag +*.lahitapiolarahoitus.fi +*.lahitapiola.fi +*.tapiola.fi +privatetarget-1-www.zigzag +tunnistus.lahitapiola.fi diff --git a/src/localtapiola/WILDCARD.txt b/src/localtapiola/WILDCARD.txt new file mode 100644 index 0000000..9150d11 --- /dev/null +++ b/src/localtapiola/WILDCARD.txt @@ -0,0 +1,7 @@ +http://*.lahitapiolarahoitus.fi +http://*.lahitapiola.fi +http://*.tapiola.fi +*.lahitapiolarahoitus.fi +*.lahitapiola.fi +*.tapiola.fi +*.beta.lahitapiola.fi diff --git a/src/localtapiola/note.txt b/src/localtapiola/note.txt new file mode 100644 index 0000000..e40272e --- /dev/null +++ b/src/localtapiola/note.txt @@ -0,0 +1 @@ +8416 https://hackerone.com/localtapiola LocalTapiola localtapiola diff --git a/src/logitech/APPLE_STORE_APP_ID.txt b/src/logitech/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..eeba2b9 --- /dev/null +++ b/src/logitech/APPLE_STORE_APP_ID.txt @@ -0,0 +1,6 @@ +632344648 +1018340690 +1294578643 +1476615877 +1456293789 +com.getmeetio.Meetio-Enterprise diff --git a/src/logitech/DOWNLOADABLE_EXECUTABLES.txt b/src/logitech/DOWNLOADABLE_EXECUTABLES.txt new file mode 100644 index 0000000..6be292f --- /dev/null +++ b/src/logitech/DOWNLOADABLE_EXECUTABLES.txt @@ -0,0 +1,9 @@ +Streamlabs Desktop Application PC/MAC +Logitech Sync +Logi Tune PC/MAC +Other Logitech Desktop and Mobile Application +Harmony Remote Software +G Hub +Logitech Options PC/MAC +Logi Options+ PC/MAC +Logitech MIXLINE diff --git a/src/logitech/GOOGLE_PLAY_APP_ID.txt b/src/logitech/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..a03326e --- /dev/null +++ b/src/logitech/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1,6 @@ +com.logitech.ueboom +com.logitech.circle +com.streamlabs.slobsrc +com.streamlabs +com.logitech.logue +com.getmeetio.* diff --git a/src/logitech/HARDWARE.txt b/src/logitech/HARDWARE.txt new file mode 100644 index 0000000..3f76fc7 --- /dev/null +++ b/src/logitech/HARDWARE.txt @@ -0,0 +1,8 @@ +Circle Cameras +Video Conferencing Products +USB Unifying and LightSpeed Receivers +Harmony Remotes +Presentation Remotes +Logitech Mice & Keyboards +Ultimate Ears Speakers +Other Logitech Hardware/IoT diff --git a/src/logitech/OTHER.txt b/src/logitech/OTHER.txt new file mode 100644 index 0000000..8bc5580 --- /dev/null +++ b/src/logitech/OTHER.txt @@ -0,0 +1 @@ +Scope Questions: Items not explicitly listed here diff --git a/src/logitech/URL.txt b/src/logitech/URL.txt new file mode 100644 index 0000000..e764586 --- /dev/null +++ b/src/logitech/URL.txt @@ -0,0 +1,66 @@ +circle.logi.com +id.logi.com +accounts.logi.com +*vc.logitech.com +*.streamlabs.com +sync.logitech.com +*.playmaster.gg +partner.logitech.com +*.logitech.com +www.logitech.com +community.logitech.com +*.logitechg.com +www.logitech-partner.com +maintenance.logitech.com +*.jaybirdsport.com +*.ultimateears.com +*.astrogaming.com +*.ultimateearsuniversity.com +*.mysqueezebox.com +*.logitechmusic.com +*.logitechauthorization.com +*.logitech-channel-marketing.com +buy.logitech.com +outage.logitech.com +outagehistory.logitech.com +external.logitech.com +logilife.logitech.com +store.logitech.com.cn +logitech.zendesk.com +*.harmonyremote.com +*.slimdevices.com +support.logi.com +feedback.logitech.com +*.uesmartradio.com +www.logitechstore.com.br +jira.logitech.com +www.logitech.com/my-account +*.myharmony.com +*.streamlabscharity.com +*.melonapp.com +*.oslo.io +*.lucra.live +*.logitech.io +*.wlo.link +*.mevo.com +*.logi.com +logitechgchallenge.com +www.logitechclub.com +*.crossclip.com +alert.logitech.com +*.lukwerks.com +*.cognitiveperformer.com +*.challonge.com +select.lgoitech.com +select.logitech.com +www.jaybirdsport.com +www.ultimateears.com +www.astrogaming.com +www.logitechg.com +www.logitech.com.cn +*.getmeetio.com +meetiobook.com +www.logicool.co.jp +logitechg.com.cn +gaming.logicool.co.jp +http://www.logitech.com/my-account diff --git a/src/logitech/WILDCARD.txt b/src/logitech/WILDCARD.txt new file mode 100644 index 0000000..216cfa4 --- /dev/null +++ b/src/logitech/WILDCARD.txt @@ -0,0 +1,49 @@ +http://*vc.logitech.com +http://*.streamlabs.com +http://*.getmeetio.com +http://*.logitech.com +http://*.ultimateearsuniversity.com +http://*.mysqueezebox.com +http://*.logitechmusic.com +http://*.logitechauthorization.com +http://*.logitech-channel-marketing.com +http://*.harmonyremote.com +http://*.slimdevices.com +http://*.uesmartradio.com +http://*.myharmony.com +http://*.streamlabscharity.com +http://*.melonapp.com +http://*.oslo.io +http://*.lucra.live +http://*.logitech.io +http://*.wlo.link +http://*.mevo.com +http://*.logi.com +http://*.crossclip.com +http://*.lukwerks.com +http://*.cognitiveperformer.com +http://*.challonge.com +*vc.logitech.com +*.streamlabs.com +*.getmeetio.com +*.logitech.com +*.ultimateearsuniversity.com +*.mysqueezebox.com +*.logitechmusic.com +*.logitechauthorization.com +*.logitech-channel-marketing.com +*.harmonyremote.com +*.slimdevices.com +*.uesmartradio.com +*.myharmony.com +*.streamlabscharity.com +*.melonapp.com +*.oslo.io +*.lucra.live +*.logitech.io +*.wlo.link +*.mevo.com +*.logi.com +*.crossclip.com +*.lukwerks.com +*.cognitiveperformer.com diff --git a/src/logitech/note.txt b/src/logitech/note.txt new file mode 100644 index 0000000..257bfde --- /dev/null +++ b/src/logitech/note.txt @@ -0,0 +1 @@ +32972 https://hackerone.com/logitech Logitech logitech diff --git a/src/logsnitch/URL.txt b/src/logsnitch/URL.txt new file mode 100644 index 0000000..85683c0 --- /dev/null +++ b/src/logsnitch/URL.txt @@ -0,0 +1,8 @@ +api.logsnitch.com +console.logsnitch.com +flashpaper.logsnitch.com +logsnitch.com +mta-sts.logsnitch.com +mta-sts.mail.logsnitch.com +support.logsnitch.com +www.logsnitch.com diff --git a/src/logsnitch/note.txt b/src/logsnitch/note.txt new file mode 100644 index 0000000..bd70218 --- /dev/null +++ b/src/logsnitch/note.txt @@ -0,0 +1 @@ +46330 https://hackerone.com/logsnitch LogSnitch logsnitch diff --git a/src/loofah/note.txt b/src/loofah/note.txt new file mode 100644 index 0000000..572d1d7 --- /dev/null +++ b/src/loofah/note.txt @@ -0,0 +1 @@ +26813 https://hackerone.com/loofah Loofah loofah diff --git a/src/lowes/APPLE_STORE_APP_ID.txt b/src/lowes/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..0c4ef88 --- /dev/null +++ b/src/lowes/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +com.lowes.LowesStore diff --git a/src/lowes/GOOGLE_PLAY_APP_ID.txt b/src/lowes/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..3c5b6ad --- /dev/null +++ b/src/lowes/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.LowesAndroid diff --git a/src/lowes/TESTFLIGHT.txt b/src/lowes/TESTFLIGHT.txt new file mode 100644 index 0000000..fe404e4 --- /dev/null +++ b/src/lowes/TESTFLIGHT.txt @@ -0,0 +1 @@ +com.lowes.LowesStoreTestFlight diff --git a/src/lowes/URL.txt b/src/lowes/URL.txt new file mode 100644 index 0000000..05dcc96 --- /dev/null +++ b/src/lowes/URL.txt @@ -0,0 +1,2 @@ +lowes.com +www.lowesprosupply.com/ diff --git a/src/lowes/note.txt b/src/lowes/note.txt new file mode 100644 index 0000000..78b57b1 --- /dev/null +++ b/src/lowes/note.txt @@ -0,0 +1 @@ +77155 https://hackerone.com/lowes Lowe's Companies VDP lowes diff --git a/src/lumiradx/APPLE_STORE_APP_ID.txt b/src/lumiradx/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..88e358f --- /dev/null +++ b/src/lumiradx/APPLE_STORE_APP_ID.txt @@ -0,0 +1,2 @@ +1423794466 +1230112791 diff --git a/src/lumiradx/GOOGLE_PLAY_APP_ID.txt b/src/lumiradx/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..57c9fbe --- /dev/null +++ b/src/lumiradx/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1,2 @@ +com.lumiradx.connect +com.lumiradxcaresolutions.engage diff --git a/src/lumiradx/HARDWARE.txt b/src/lumiradx/HARDWARE.txt new file mode 100644 index 0000000..549cd97 --- /dev/null +++ b/src/lumiradx/HARDWARE.txt @@ -0,0 +1 @@ +LumiraDx Instrument V5E diff --git a/src/lumiradx/URL.txt b/src/lumiradx/URL.txt new file mode 100644 index 0000000..3f0489f --- /dev/null +++ b/src/lumiradx/URL.txt @@ -0,0 +1,26 @@ +https://connect.lumiradx.com/* +https://www.lumiradx.com +https://inrstar-it.caresolutions.lumiradx.com/* +https://inrstar-ie.caresolutions.lumiradx.com/* +https://training.inrstar.co.uk/* +*.lumiradx.com/* +https://connect.lumiradx.com/api/uk/router/v8.1/ +https://connect.lumiradx.com/api/uk/reports/v8.1/ +https://connect.lumiradx.com/api/uk/quantumsync/v8.1/ +https://connect.lumiradx.com/api/uk/consult/v8.1/ +https://connect.lumiradx.com/api/uk/connectmanager/v8.1/ +https://collaborazioni.lumiradx.com/ +https://parcerias.lumiradx.com/ +https://jira-quantum.lumiradx.com/ +https://wiki-quantum.lumiradx.com/ +https://jama.lumiradx.com/ +https://av.lumiradx.com/era/webconsole/ +https://connect.lumiradx.com/factory +https://investors.lumiradx.com/ +collaborazioni.lumiradx.com +parcerias.lumiradx.com +jira-quantum.lumiradx.com +wiki-quantum.lumiradx.com +jama.lumiradx.com +www.lumiradx.com +investors.lumiradx.com diff --git a/src/lumiradx/WILDCARD.txt b/src/lumiradx/WILDCARD.txt new file mode 100644 index 0000000..0787a6d --- /dev/null +++ b/src/lumiradx/WILDCARD.txt @@ -0,0 +1,6 @@ +http://connect.lumiradx.com/* +http://inrstar-it.caresolutions.lumiradx.com/* +http://inrstar-ie.caresolutions.lumiradx.com/* +https://connect.lumiradx.com/* +https://inrstar-it.caresolutions.lumiradx.com/* +https://inrstar-ie.caresolutions.lumiradx.com/* diff --git a/src/lumiradx/note.txt b/src/lumiradx/note.txt new file mode 100644 index 0000000..b41eafb --- /dev/null +++ b/src/lumiradx/note.txt @@ -0,0 +1 @@ +52057 https://hackerone.com/lumiradx LumiraDx lumiradx diff --git a/src/lyst/APPLE_STORE_APP_ID.txt b/src/lyst/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..3333767 --- /dev/null +++ b/src/lyst/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +597940518 diff --git a/src/lyst/GOOGLE_PLAY_APP_ID.txt b/src/lyst/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..ece0fdf --- /dev/null +++ b/src/lyst/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.lyst.lystapp diff --git a/src/lyst/URL.txt b/src/lyst/URL.txt new file mode 100644 index 0000000..971497a --- /dev/null +++ b/src/lyst/URL.txt @@ -0,0 +1,5 @@ +*.lyst.com +cdna.lystit.com +mobileapi.lystit.com +*.lystit.com +*.lyst.co diff --git a/src/lyst/WILDCARD.txt b/src/lyst/WILDCARD.txt new file mode 100644 index 0000000..f331e57 --- /dev/null +++ b/src/lyst/WILDCARD.txt @@ -0,0 +1,6 @@ +http://*.lyst.com +http://*.lystit.com +http://*.lyst.co +*.lyst.com +*.lystit.com +*.lyst.co diff --git a/src/lyst/note.txt b/src/lyst/note.txt new file mode 100644 index 0000000..55140c4 --- /dev/null +++ b/src/lyst/note.txt @@ -0,0 +1 @@ +16334 https://hackerone.com/lyst Lyst lyst diff --git a/src/magento/OTHER.txt b/src/magento/OTHER.txt new file mode 100644 index 0000000..3b1812e --- /dev/null +++ b/src/magento/OTHER.txt @@ -0,0 +1 @@ +Magento 2 Commerce, Commerce B2B and Open Source diff --git a/src/magento/URL.txt b/src/magento/URL.txt new file mode 100644 index 0000000..0098900 --- /dev/null +++ b/src/magento/URL.txt @@ -0,0 +1,9 @@ +marketplace.magento.com +magentocommerce.com +repo.magento.com +magento.com +u.magento.com +imagine.magento.com +magentolive.com +account.magento.com +accounts.magento.cloud diff --git a/src/magento/note.txt b/src/magento/note.txt new file mode 100644 index 0000000..713e05e --- /dev/null +++ b/src/magento/note.txt @@ -0,0 +1 @@ +33043 https://hackerone.com/magento Magento magento diff --git a/src/magic-bbp/OTHER.txt b/src/magic-bbp/OTHER.txt new file mode 100644 index 0000000..601ae18 --- /dev/null +++ b/src/magic-bbp/OTHER.txt @@ -0,0 +1,5 @@ +Account Settings +Login with SMS - Feature +Magic and Fortmatic Products +Multi-factor Auth - Feature +Any .magic.link demo sites diff --git a/src/magic-bbp/URL.txt b/src/magic-bbp/URL.txt new file mode 100644 index 0000000..b5c6bd3 --- /dev/null +++ b/src/magic-bbp/URL.txt @@ -0,0 +1,8 @@ +api.fortmatic.com +x2.fortmatic.com +auth.magic.link +dashboard.magic.link +api.magic.link +dashboard.fortmatic.com +fortmatic.com +careers.fortmatic.com diff --git a/src/magic-bbp/note.txt b/src/magic-bbp/note.txt new file mode 100644 index 0000000..0bcb773 --- /dev/null +++ b/src/magic-bbp/note.txt @@ -0,0 +1 @@ +35713 https://hackerone.com/magic-bbp Magic magic-bbp diff --git a/src/magic-eden/OTHER.txt b/src/magic-eden/OTHER.txt new file mode 100644 index 0000000..b3c7739 --- /dev/null +++ b/src/magic-eden/OTHER.txt @@ -0,0 +1,6 @@ +*.magiceden.io +*.magiceden.dev +*.coralcube.io +*.magiceden.workers.dev +Magic Eden Wallet (Chrome Extension) +Magic Eden ETH Marketplace (NEW) diff --git a/src/magic-eden/SMART_CONTRACT.txt b/src/magic-eden/SMART_CONTRACT.txt new file mode 100644 index 0000000..b399ac1 --- /dev/null +++ b/src/magic-eden/SMART_CONTRACT.txt @@ -0,0 +1,3 @@ +https://github.com/magiceden-oss/erc721m/releases/latest +https://github.com/magiceden-oss/open_creator_protocol/releases/latest +https://github.com/coralcube-oss/mmm/releases/latest diff --git a/src/magic-eden/SOURCE_CODE.txt b/src/magic-eden/SOURCE_CODE.txt new file mode 100644 index 0000000..b7c6221 --- /dev/null +++ b/src/magic-eden/SOURCE_CODE.txt @@ -0,0 +1,3 @@ +Magic Eden Open Source - Smart Contracts +Magic Eden Open Source - Open Creator Protocol +CoralCube Open Source - MMM diff --git a/src/magic-eden/URL.txt b/src/magic-eden/URL.txt new file mode 100644 index 0000000..a022b6d --- /dev/null +++ b/src/magic-eden/URL.txt @@ -0,0 +1,4 @@ +magiceden.io +coralcube.io +eng.magiceden.io +eng.magiceden.dev diff --git a/src/magic-eden/note.txt b/src/magic-eden/note.txt new file mode 100644 index 0000000..44d9e1c --- /dev/null +++ b/src/magic-eden/note.txt @@ -0,0 +1 @@ +59452 https://hackerone.com/magic-eden Magic Eden magic-eden diff --git a/src/magisto/APPLE_STORE_APP_ID.txt b/src/magisto/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..fc2cf53 --- /dev/null +++ b/src/magisto/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +486781045 diff --git a/src/magisto/GOOGLE_PLAY_APP_ID.txt b/src/magisto/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..c6abc5a --- /dev/null +++ b/src/magisto/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.magisto diff --git a/src/magisto/URL.txt b/src/magisto/URL.txt new file mode 100644 index 0000000..56e66ff --- /dev/null +++ b/src/magisto/URL.txt @@ -0,0 +1,4 @@ +magisto.com,www.magisto.com +*.magisto.com +staging.magisto.com +applause1.magisto.com diff --git a/src/magisto/note.txt b/src/magisto/note.txt new file mode 100644 index 0000000..01d226c --- /dev/null +++ b/src/magisto/note.txt @@ -0,0 +1 @@ +43718 https://hackerone.com/magisto Magisto magisto diff --git a/src/mailru/DOWNLOADABLE_EXECUTABLES.txt b/src/mailru/DOWNLOADABLE_EXECUTABLES.txt new file mode 100644 index 0000000..a3d3e87 --- /dev/null +++ b/src/mailru/DOWNLOADABLE_EXECUTABLES.txt @@ -0,0 +1 @@ +Atom browser diff --git a/src/mailru/OTHER.txt b/src/mailru/OTHER.txt new file mode 100644 index 0000000..737b6b7 --- /dev/null +++ b/src/mailru/OTHER.txt @@ -0,0 +1,21 @@ +Ext. O: Acquisitions, not integrated to Mail.Ru infrastructure and external cloud services +Citymobil +Mail.Ru Cloud Solutions (MCS) +Main Scope +Ext. A Scope +Ext. B Scope +Delivery Club +ICQ +MY.GAMES +DonationAlerts +Foodplex +Samokat +Content +Biz +Uchi +Citydrive +KITCHEN +NATIVEROLL +Pixonic +Ext. O: Delegated subdomain or branded partner service +Hosting diff --git a/src/mailru/note.txt b/src/mailru/note.txt new file mode 100644 index 0000000..2934f0a --- /dev/null +++ b/src/mailru/note.txt @@ -0,0 +1 @@ +65 https://hackerone.com/mailru Mail.ru mailru diff --git a/src/mailtime_technology_inc/APPLE_STORE_APP_ID.txt b/src/mailtime_technology_inc/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..26a25eb --- /dev/null +++ b/src/mailtime_technology_inc/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +com.mailtime.MailTime diff --git a/src/mailtime_technology_inc/GOOGLE_PLAY_APP_ID.txt b/src/mailtime_technology_inc/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..4c81ac7 --- /dev/null +++ b/src/mailtime_technology_inc/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.mailtime.android diff --git a/src/mailtime_technology_inc/note.txt b/src/mailtime_technology_inc/note.txt new file mode 100644 index 0000000..bcd3f65 --- /dev/null +++ b/src/mailtime_technology_inc/note.txt @@ -0,0 +1 @@ +40485 https://hackerone.com/mailtime_technology_inc Mailtime Technology Inc. mailtime_technology_inc diff --git a/src/mainwp/SOURCE_CODE.txt b/src/mainwp/SOURCE_CODE.txt new file mode 100644 index 0000000..169c19e --- /dev/null +++ b/src/mainwp/SOURCE_CODE.txt @@ -0,0 +1,2 @@ +https://github.com/mainwp/mainwp +https://github.com/mainwp/mainwp-child diff --git a/src/mainwp/note.txt b/src/mainwp/note.txt new file mode 100644 index 0000000..66f292a --- /dev/null +++ b/src/mainwp/note.txt @@ -0,0 +1 @@ +8855 https://hackerone.com/mainwp MainWP mainwp diff --git a/src/malwarebytes/APPLE_STORE_APP_ID.txt b/src/malwarebytes/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..7cd0b2b --- /dev/null +++ b/src/malwarebytes/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +com.malwarebytes.Malwarebytes diff --git a/src/malwarebytes/DOWNLOADABLE_EXECUTABLES.txt b/src/malwarebytes/DOWNLOADABLE_EXECUTABLES.txt new file mode 100644 index 0000000..2528b5a --- /dev/null +++ b/src/malwarebytes/DOWNLOADABLE_EXECUTABLES.txt @@ -0,0 +1,11 @@ +Malwarebytes for Windows +Malwarebytes for Mac +Malwarebytes for Teams +Malwarebytes Remediation for CrowdStrike +Malwarebytes Incident Response +Malwarebytes ToolSet (MBTS) +Malwarebytes Anti-Exploit +Malwarebytes Anti-Ransomware +Malwarebytes Windows Firewall Control +AdwCleaner +USB Flash Drive Control diff --git a/src/malwarebytes/GOOGLE_PLAY_APP_ID.txt b/src/malwarebytes/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..61a21f0 --- /dev/null +++ b/src/malwarebytes/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +org.malwarebytes.antimalware diff --git a/src/malwarebytes/OTHER.txt b/src/malwarebytes/OTHER.txt new file mode 100644 index 0000000..8b57eb2 --- /dev/null +++ b/src/malwarebytes/OTHER.txt @@ -0,0 +1,7 @@ +Malwarebytes Privacy (VPN) +BrowserGuard (Firefox/Chrome/Safari browser extension) +Vulnerability & Patch Management +Malwarebytes Endpoint Detection and Response (EDR) +Malwarebytes Endpoint Protection +Malwarebytes Device Control +Any other Malwarebytes asset diff --git a/src/malwarebytes/URL.txt b/src/malwarebytes/URL.txt new file mode 100644 index 0000000..70918da --- /dev/null +++ b/src/malwarebytes/URL.txt @@ -0,0 +1,13 @@ +www.malwarebytes.com +my.malwarebytes.com +cloud.malwarebytes.com +oneview.malwarebytes.com +*.mwbsys.com +*.mb-cosmos.com +*.mbamupdates.com +*.cloud.malwarebytes.com +*.malwarebytes.com +*.mwb-threatintel.com +forums.malwarebytes.com +blog.malwarebytes.com +support.malwarebytes.com diff --git a/src/malwarebytes/WILDCARD.txt b/src/malwarebytes/WILDCARD.txt new file mode 100644 index 0000000..a000479 --- /dev/null +++ b/src/malwarebytes/WILDCARD.txt @@ -0,0 +1,14 @@ +http://*.mwbsys.com +http://*.mb-cosmos.com +http://*.mbamupdates.com +http://*.cloud.malwarebytes.com +http://*.malwarebytes.com +http://*.mwb-threatintel.com +*.mwbsys.com +*.mb-cosmos.com +*.mbamupdates.com +*.cloud.malwarebytes.com +*.malwarebytes.com +*.mwb-threatintel.com +*.threatdown.com +*.cyrus-security.com diff --git a/src/malwarebytes/note.txt b/src/malwarebytes/note.txt new file mode 100644 index 0000000..d797505 --- /dev/null +++ b/src/malwarebytes/note.txt @@ -0,0 +1 @@ +21978 https://hackerone.com/malwarebytes Malwarebytes malwarebytes diff --git a/src/mapbox/SOURCE_CODE.txt b/src/mapbox/SOURCE_CODE.txt new file mode 100644 index 0000000..89bdc13 --- /dev/null +++ b/src/mapbox/SOURCE_CODE.txt @@ -0,0 +1,5 @@ +https://www.mapbox.com/mapbox.js/ +https://www.mapbox.com/mapbox-gl-js/ +https://docs.mapbox.com/ios/maps/overview/ +https://docs.mapbox.com/android/ +https://github.com/mapbox diff --git a/src/mapbox/URL.txt b/src/mapbox/URL.txt new file mode 100644 index 0000000..0c9d0e1 --- /dev/null +++ b/src/mapbox/URL.txt @@ -0,0 +1,3 @@ +www.mapbox.com +https://docs.mapbox.com/api/ +api.mapbox.com diff --git a/src/mapbox/note.txt b/src/mapbox/note.txt new file mode 100644 index 0000000..75ee77b --- /dev/null +++ b/src/mapbox/note.txt @@ -0,0 +1 @@ +1366 https://hackerone.com/mapbox Mapbox mapbox diff --git a/src/maplogin/note.txt b/src/maplogin/note.txt new file mode 100644 index 0000000..a2e9a7f --- /dev/null +++ b/src/maplogin/note.txt @@ -0,0 +1 @@ +1737 https://hackerone.com/maplogin MapLogin maplogin diff --git a/src/mapsmarker_com_e_u/OTHER.txt b/src/mapsmarker_com_e_u/OTHER.txt new file mode 100644 index 0000000..0e67d22 --- /dev/null +++ b/src/mapsmarker_com_e_u/OTHER.txt @@ -0,0 +1 @@ +Maps Marker Pro WordPress plugin diff --git a/src/mapsmarker_com_e_u/note.txt b/src/mapsmarker_com_e_u/note.txt new file mode 100644 index 0000000..3cfda41 --- /dev/null +++ b/src/mapsmarker_com_e_u/note.txt @@ -0,0 +1 @@ +16780 https://hackerone.com/mapsmarker_com_e_u MapsMarker.com e.U. mapsmarker_com_e_u diff --git a/src/mariadb/SOURCE_CODE.txt b/src/mariadb/SOURCE_CODE.txt new file mode 100644 index 0000000..1451791 --- /dev/null +++ b/src/mariadb/SOURCE_CODE.txt @@ -0,0 +1,4 @@ +MariaDB Server & Connectors - Remote Code Execution +MariaDB Server & Connectors - Access control bypass +MariaDB Server & Connectors - Data corruption, exfiltration, disclosure +MariaDB Server & Connectors - Denial of Service diff --git a/src/mariadb/URL.txt b/src/mariadb/URL.txt new file mode 100644 index 0000000..a0f348f --- /dev/null +++ b/src/mariadb/URL.txt @@ -0,0 +1 @@ +mariadb.org diff --git a/src/mariadb/note.txt b/src/mariadb/note.txt new file mode 100644 index 0000000..1b0d980 --- /dev/null +++ b/src/mariadb/note.txt @@ -0,0 +1 @@ +8724 https://hackerone.com/mariadb MariaDB mariadb diff --git a/src/marriott/APPLE_STORE_APP_ID.txt b/src/marriott/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..b691b22 --- /dev/null +++ b/src/marriott/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +455004730 diff --git a/src/marriott/GOOGLE_PLAY_APP_ID.txt b/src/marriott/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..26b05f2 --- /dev/null +++ b/src/marriott/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.marriott diff --git a/src/marriott/OTHER.txt b/src/marriott/OTHER.txt new file mode 100644 index 0000000..fdbf1e4 --- /dev/null +++ b/src/marriott/OTHER.txt @@ -0,0 +1 @@ +Other Marriott-owned asset diff --git a/src/marriott/URL.txt b/src/marriott/URL.txt new file mode 100644 index 0000000..444d97f --- /dev/null +++ b/src/marriott/URL.txt @@ -0,0 +1,43 @@ +homes-and-villas.marriott.com +airandcar.marriott.com +activities.marriott.com +towneplacesuites.marriott.com +springhillsuites.marriott.com +careers.marriott.com +sso.marriott.com +mgs.marriott.com +jobs.marriott.com +passwordchallenge.marriott.com +gateway*.marriott.com +dcfgateway*.marriott.com +marriottfranchisetransactions.marriott.com +lawmanager.marriott.com +www.travelagents.marriott.com +marriott.co.* +all-inclusive.marriott.com +reservations.all-inclusive.marriott.com/ +marrtool.com +cpp.marriott.com +www.marriott.com +www.ritzcarlton.com +eleganthotels.com +apps.ritzcarlton.com +hotel-deals.marriott.com +luxurybrands.marriott.com +milux.marriott.com +reservations.all-inclusive.marriott.com +https://gatewaydsapdev2.marriott.com/ +https://dcfgatewaytst1.marriott.com/ +https://gatewaydsaptst1.marriott.com/ +mi.bookmarriott.com +https://gatewaydsaptst2.marriott.com/ +www.ritzcarlton.com/ +*uat.marriott.com +clean.marriott.com +http://www.shopmarriott.com +giftcards.marriott.com +moments.marriottbonvoy.com +help.marriott.com +traveler.marriott.com +travelagents.marriott.com/ +mipartnerprivileges.marriott.com diff --git a/src/marriott/note.txt b/src/marriott/note.txt new file mode 100644 index 0000000..e25dcb0 --- /dev/null +++ b/src/marriott/note.txt @@ -0,0 +1 @@ +30994 https://hackerone.com/marriott Marriott Bug Bounty Program marriott diff --git a/src/mars/URL.txt b/src/mars/URL.txt new file mode 100644 index 0000000..e2e27dc --- /dev/null +++ b/src/mars/URL.txt @@ -0,0 +1,71 @@ +*.mars.com +*.marschocolate.com +*.mms.com +*.pedigree.com +*.twix.com +*.orbitgum.com +*.dovechocolate.com +*.extragum.com +*.whiskas.com +*.royalcanin.com +*.skittles.com +*.royal-canin.com +*.bluepearlvet.com +*.banfield.com +*.vcahospitals.com +*.royalcanin.edu.pl +*.individualis.com +*.misregalosroyalcanin.es +*.moncse-royalcanin-siege.com +*.monespaceeleveur.fr +*.monespacetoiletteur.com +*.monespaceveto.com +*.myroyalcanin.gr +*.myroyalcanin.hu +*.myroyalcanin.ro +*.plataformaurinary.com +*.rcpracownik.pl +*.royalcanin.be +*.royalcanin.co.uk +*.royalcanin.cz +*.royalcanin.es +*.royalcanin.fr +*.royalcanin.it +*.royalcanin.nl +*.royalcanin.pl +*.royalcanin.pt +*.royalcanin.ro +*.royalcanin.sk +*.royalcaninconcorsi.it +*.royalcanin-pethealthday.com +*.royalcanin-vouchers.com +*.teile-deine-erfahrung-mit-royal-canin.com +*.tradetermsrc.com +*.wikichat.fr +*.wikichien.fr +*.eukanubasportingdog.com +*.royalcanin.ca +*.royalcaninfoodfinder.com +*.bibliotecarc.cl +*.coroapremiada.com.br +*.findroyalcanin.com +*.jornadasroyalcanin.com.ar +*.miroyalcanin.cl +*.miroyalcanin.com.ar +*.mivetshop.com.ar +*.royal-canin.co.za +*.royalcaninproductbook.com +*.royalcaninrewards.co.za +*.shoproyalcanin.com +*.vetschoice.co.za +*.banfieldassets.com +*.banfieldexchange.com +*.banfieldfoundation.com +*.banfieldpetexpress.com +banfieldexchange.com +banfieldfoundation.org +marsbettertogetherfund.org +banfield.us +practice.securevetsource.com +spsah2.securevetsource.com +https://portal.securevetsource.com/petowner.html diff --git a/src/mars/WILDCARD.txt b/src/mars/WILDCARD.txt new file mode 100644 index 0000000..906b217 --- /dev/null +++ b/src/mars/WILDCARD.txt @@ -0,0 +1,126 @@ +http://*.mars.com +http://*.marschocolate.com +http://*.mms.com +http://*.pedigree.com +http://*.twix.com +http://*.orbitgum.com +http://*.dovechocolate.com +http://*.extragum.com +http://*.whiskas.com +http://*.royalcanin.com +http://*.skittles.com +http://*.royal-canin.com +http://*.bluepearlvet.com +http://*.banfield.com +http://*.vcahospitals.com +http://*.royalcanin.edu.pl +http://*.individualis.com +http://*.misregalosroyalcanin.es +http://*.moncse-royalcanin-siege.com +http://*.monespaceeleveur.fr +http://*.monespacetoiletteur.com +http://*.monespaceveto.com +http://*.myroyalcanin.gr +http://*.myroyalcanin.hu +http://*.myroyalcanin.ro +http://*.plataformaurinary.com +http://*.rcpracownik.pl +http://*.royalcanin.be +http://*.royalcanin.co.uk +http://*.royalcanin.cz +http://*.royalcanin.es +http://*.royalcanin.fr +http://*.royalcanin.it +http://*.royalcanin.nl +http://*.royalcanin.pl +http://*.royalcanin.pt +http://*.royalcanin.ro +http://*.royalcanin.sk +http://*.royalcaninconcorsi.it +http://*.royalcanin-pethealthday.com +http://*.royalcanin-vouchers.com +http://*.teile-deine-erfahrung-mit-royal-canin.com +http://*.tradetermsrc.com +http://*.wikichat.fr +http://*.wikichien.fr +http://*.eukanubasportingdog.com +http://*.royalcanin.ca +http://*.royalcaninfoodfinder.com +http://*.bibliotecarc.cl +http://*.coroapremiada.com.br +http://*.findroyalcanin.com +http://*.jornadasroyalcanin.com.ar +http://*.miroyalcanin.cl +http://*.miroyalcanin.com.ar +http://*.mivetshop.com.ar +http://*.royal-canin.co.za +http://*.royalcaninproductbook.com +http://*.royalcaninrewards.co.za +http://*.shoproyalcanin.com +http://*.vetschoice.co.za +http://*.banfieldassets.com +http://*.banfieldexchange.com +http://*.banfieldfoundation.com +http://*.banfieldpetexpress.com +*.mars.com +*.marschocolate.com +*.mms.com +*.pedigree.com +*.twix.com +*.orbitgum.com +*.dovechocolate.com +*.extragum.com +*.whiskas.com +*.royalcanin.com +*.skittles.com +*.royal-canin.com +*.bluepearlvet.com +*.banfield.com +*.vcahospitals.com +*.royalcanin.edu.pl +*.individualis.com +*.misregalosroyalcanin.es +*.moncse-royalcanin-siege.com +*.monespaceeleveur.fr +*.monespacetoiletteur.com +*.monespaceveto.com +*.myroyalcanin.gr +*.myroyalcanin.hu +*.myroyalcanin.ro +*.plataformaurinary.com +*.rcpracownik.pl +*.royalcanin.be +*.royalcanin.co.uk +*.royalcanin.cz +*.royalcanin.es +*.royalcanin.fr +*.royalcanin.it +*.royalcanin.nl +*.royalcanin.pl +*.royalcanin.pt +*.royalcanin.ro +*.royalcanin.sk +*.royalcaninconcorsi.it +*.royalcanin-pethealthday.com +*.royalcanin-vouchers.com +*.teile-deine-erfahrung-mit-royal-canin.com +*.tradetermsrc.com +*.wikichat.fr +*.wikichien.fr +*.eukanubasportingdog.com +*.royalcanin.ca +*.royalcaninfoodfinder.com +*.bibliotecarc.cl +*.coroapremiada.com.br +*.findroyalcanin.com +*.jornadasroyalcanin.com.ar +*.miroyalcanin.cl +*.miroyalcanin.com.ar +*.mivetshop.com.ar +*.royal-canin.co.za +*.royalcaninproductbook.com +*.royalcaninrewards.co.za +*.shoproyalcanin.com +*.vetschoice.co.za +*.banfieldassets.com +*.securevetsource.com diff --git a/src/mars/note.txt b/src/mars/note.txt new file mode 100644 index 0000000..e5242fc --- /dev/null +++ b/src/mars/note.txt @@ -0,0 +1 @@ +50581 https://hackerone.com/mars Mars mars diff --git a/src/massmutual/WILDCARD.txt b/src/massmutual/WILDCARD.txt new file mode 100644 index 0000000..a6f79f0 --- /dev/null +++ b/src/massmutual/WILDCARD.txt @@ -0,0 +1 @@ +*.massmutual.com diff --git a/src/massmutual/note.txt b/src/massmutual/note.txt new file mode 100644 index 0000000..15fd76d --- /dev/null +++ b/src/massmutual/note.txt @@ -0,0 +1 @@ +61126 https://hackerone.com/massmutual MassMutual massmutual diff --git a/src/matic-network/SOURCE_CODE.txt b/src/matic-network/SOURCE_CODE.txt new file mode 100644 index 0000000..84f0f2b --- /dev/null +++ b/src/matic-network/SOURCE_CODE.txt @@ -0,0 +1,3 @@ +https://github.com/maticnetwork/heimdall +https://github.com/maticnetwork/bor +https://github.com/maticnetwork/contracts diff --git a/src/matic-network/note.txt b/src/matic-network/note.txt new file mode 100644 index 0000000..6ce55e5 --- /dev/null +++ b/src/matic-network/note.txt @@ -0,0 +1 @@ +49048 https://hackerone.com/matic-network Matic Network matic-network diff --git a/src/matomo/APPLE_STORE_APP_ID.txt b/src/matomo/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..e382004 --- /dev/null +++ b/src/matomo/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +737216887 diff --git a/src/matomo/GOOGLE_PLAY_APP_ID.txt b/src/matomo/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..5cd93ba --- /dev/null +++ b/src/matomo/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +org.piwik.mobile2 diff --git a/src/matomo/SOURCE_CODE.txt b/src/matomo/SOURCE_CODE.txt new file mode 100644 index 0000000..dedc9d4 --- /dev/null +++ b/src/matomo/SOURCE_CODE.txt @@ -0,0 +1,5 @@ +https://github.com/matomo-org/matomo +https://plugins.matomo.org/developer/matomo-org +https://plugins.matomo.org/developer/innocraft +https://github.com/matomo-org +https://github.com/innocraft/ diff --git a/src/matomo/URL.txt b/src/matomo/URL.txt new file mode 100644 index 0000000..cb95b93 --- /dev/null +++ b/src/matomo/URL.txt @@ -0,0 +1,3 @@ +https://matomo.cloud/ +matomo.cloud +https://github.com/matomo-org/docker diff --git a/src/matomo/note.txt b/src/matomo/note.txt new file mode 100644 index 0000000..1c65ac4 --- /dev/null +++ b/src/matomo/note.txt @@ -0,0 +1 @@ +1925 https://hackerone.com/matomo Matomo matomo diff --git a/src/mattermost/APPLE_STORE_APP_ID.txt b/src/mattermost/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..2b55a01 --- /dev/null +++ b/src/mattermost/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +978516833 diff --git a/src/mattermost/DOWNLOADABLE_EXECUTABLES.txt b/src/mattermost/DOWNLOADABLE_EXECUTABLES.txt new file mode 100644 index 0000000..c5d5ed2 --- /dev/null +++ b/src/mattermost/DOWNLOADABLE_EXECUTABLES.txt @@ -0,0 +1 @@ +Mattermost Desktop diff --git a/src/mattermost/GOOGLE_PLAY_APP_ID.txt b/src/mattermost/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..64db31c --- /dev/null +++ b/src/mattermost/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.mattermost.rn diff --git a/src/mattermost/OTHER.txt b/src/mattermost/OTHER.txt new file mode 100644 index 0000000..5502613 --- /dev/null +++ b/src/mattermost/OTHER.txt @@ -0,0 +1 @@ +Other publicly-released plugins diff --git a/src/mattermost/SOURCE_CODE.txt b/src/mattermost/SOURCE_CODE.txt new file mode 100644 index 0000000..463fba1 --- /dev/null +++ b/src/mattermost/SOURCE_CODE.txt @@ -0,0 +1,17 @@ +mattermost/mattermost-server +mattermost/mattermost-webapp +mattermost/mattermost-mobile +mattermost/mattermost-redux +mattermost/desktop +mattermost/mattermost-push-proxy +mattermost/mattermost-plugin-jira +mattermost/mattermost-plugin-zoom +mattermost/mattermost-plugin-github +mattermost/mattermost-plugin-autolink +mattermost/mattermost-plugin-welcomebot +mattermost/mattermost-plugin-custom-attributes +mattermost/mattermost-plugin-aws-SNS +mattermost/mattermost-plugin-playbooks +Mattermost Source Code +Mattermost Plugins +Other publicly-released plugins diff --git a/src/mattermost/URL.txt b/src/mattermost/URL.txt new file mode 100644 index 0000000..c8b7bdb --- /dev/null +++ b/src/mattermost/URL.txt @@ -0,0 +1,4 @@ +*.test.mattermost.cloud +*.mattermost.com +h1-*your-own-instance*.cloud.mattermost.com +customers.mattermost.com diff --git a/src/mattermost/WILDCARD.txt b/src/mattermost/WILDCARD.txt new file mode 100644 index 0000000..782d45f --- /dev/null +++ b/src/mattermost/WILDCARD.txt @@ -0,0 +1,4 @@ +http://h1-*your-own-instance*.cloud.mattermost.com +http://*.mattermost.com +h1-*your-own-instance*.cloud.mattermost.com +*.mattermost.com diff --git a/src/mattermost/note.txt b/src/mattermost/note.txt new file mode 100644 index 0000000..b47bbea --- /dev/null +++ b/src/mattermost/note.txt @@ -0,0 +1 @@ +35268 https://hackerone.com/mattermost Mattermost mattermost diff --git a/src/mavenlink/note.txt b/src/mavenlink/note.txt new file mode 100644 index 0000000..3557938 --- /dev/null +++ b/src/mavenlink/note.txt @@ -0,0 +1 @@ +48 https://hackerone.com/mavenlink Mavenlink mavenlink diff --git a/src/mckesson/URL.txt b/src/mckesson/URL.txt new file mode 100644 index 0000000..f92a706 --- /dev/null +++ b/src/mckesson/URL.txt @@ -0,0 +1,2 @@ +*.Mckesson.com +*.mckesson.* diff --git a/src/mckesson/WILDCARD.txt b/src/mckesson/WILDCARD.txt new file mode 100644 index 0000000..c009e5f --- /dev/null +++ b/src/mckesson/WILDCARD.txt @@ -0,0 +1,4 @@ +http://*.mckesson.com +http://*.mckesson.* +*.Mckesson.com +*.mckesson.* diff --git a/src/mckesson/note.txt b/src/mckesson/note.txt new file mode 100644 index 0000000..adbf161 --- /dev/null +++ b/src/mckesson/note.txt @@ -0,0 +1 @@ +58682 https://hackerone.com/mckesson McKesson mckesson diff --git a/src/mcuboot/SOURCE_CODE.txt b/src/mcuboot/SOURCE_CODE.txt new file mode 100644 index 0000000..1f10c07 --- /dev/null +++ b/src/mcuboot/SOURCE_CODE.txt @@ -0,0 +1 @@ +https://github.com/mcu-tools/mcuboot diff --git a/src/mcuboot/note.txt b/src/mcuboot/note.txt new file mode 100644 index 0000000..1433611 --- /dev/null +++ b/src/mcuboot/note.txt @@ -0,0 +1 @@ +52484 https://hackerone.com/mcuboot MCUboot mcuboot diff --git a/src/mendix/URL.txt b/src/mendix/URL.txt new file mode 100644 index 0000000..9ea87dd --- /dev/null +++ b/src/mendix/URL.txt @@ -0,0 +1,33 @@ +*.mendix.com +event.us-east-1.sws.siemens.com +o0pv3l7chl.execute-api.us-east-1.amazonaws.com/dev +gateway.us-east-1.sws.siemens.com +servicemanagement-accp.mendixcloud.com +poh0v3odoi.execute-api.eu-central-1.amazonaws.com +https://react.vis.pre2.usea1.devops.sws.siemens.com/sample/dist/index.html +3dvis.mendixcloud.com +slm.store.mendix.com +contributor.mendixcloud.com +dealservice.mendixcloud.com +dataprivacy.mendixcloud.com +datalake-sync.apps.mendix.com +alm.mendixcloud.com +deskallocation.mendixcloud.com +simplate.mendixcloud.com +mxpeople.mendixcloud.com +employees.mendix.com +3s.mendixcloud.com +revenuedatahub.mendixcloud.com +mxbpconfig.mendixcloud.com +provisioning.servicemanagement.mendix.com +k8s-licbrk-licenseb-11d216e80e-384217420.eu-central-1.elb.amazonaws.com +*.timeseries.com +*.timeseries.nl +*.timeseries.de +*.timeseries.us +*.timeseriesgroup.com +marketplaceadmin.mendixcloud.com +https://i1tv7nddaa.execute-api.eu-central-1.amazonaws.com/prod +notification.billing.appservices.mendix.com/ +http://o0pv3l7chl.execute-api.us-east-1.amazonaws.com/dev +notification.billing.appservices.mendix.com diff --git a/src/mendix/WILDCARD.txt b/src/mendix/WILDCARD.txt new file mode 100644 index 0000000..15526ba --- /dev/null +++ b/src/mendix/WILDCARD.txt @@ -0,0 +1,6 @@ +http://*.mendix.com +http://*.timeseries.com +http://*.timeseries.nl +*.mendix.com +*.timeseries.com +*.timeseries.nl diff --git a/src/mendix/note.txt b/src/mendix/note.txt new file mode 100644 index 0000000..51f8bc3 --- /dev/null +++ b/src/mendix/note.txt @@ -0,0 +1 @@ +48281 https://hackerone.com/mendix Mendix mendix diff --git a/src/mercadolibre/APPLE_STORE_APP_ID.txt b/src/mercadolibre/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..6a83539 --- /dev/null +++ b/src/mercadolibre/APPLE_STORE_APP_ID.txt @@ -0,0 +1,2 @@ +com.mercadopago.MercadoPago +com.3mosquitos.MercadoLibre diff --git a/src/mercadolibre/GOOGLE_PLAY_APP_ID.txt b/src/mercadolibre/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..c201e64 --- /dev/null +++ b/src/mercadolibre/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1,4 @@ +com.mercadopago.wallet +com.mercadolibre +com.mercadoenvios.driver +com.mercadoenvios.crowdsourcing diff --git a/src/mercadolibre/HARDWARE.txt b/src/mercadolibre/HARDWARE.txt new file mode 100644 index 0000000..f334307 --- /dev/null +++ b/src/mercadolibre/HARDWARE.txt @@ -0,0 +1 @@ +Point Smart diff --git a/src/mercadolibre/OTHER.txt b/src/mercadolibre/OTHER.txt new file mode 100644 index 0000000..527df59 --- /dev/null +++ b/src/mercadolibre/OTHER.txt @@ -0,0 +1,2 @@ +Mercado Pago Apps Endpoints +Other diff --git a/src/mercadolibre/URL.txt b/src/mercadolibre/URL.txt new file mode 100644 index 0000000..f9dc852 --- /dev/null +++ b/src/mercadolibre/URL.txt @@ -0,0 +1,16 @@ +api.mercadopago.com +www.mercadopago.com.ar +www.mercadopago.com.br +www.mercadopago.com.mx +www.mercadopago.com.co +www.mercadopago.com.pe +www.mercadopago.com.uy +api.mercadolibre.com +www.mercadolibre.com.ar +www.mercadolivre.com.br +www.mercadolibre.com.mx +www.mercadolibre.com.co +www.mercadolibre.com.pe +www.mercadolibre.com.uy +www.mercadolibre.cl +www.mercadopago.cl diff --git a/src/mercadolibre/note.txt b/src/mercadolibre/note.txt new file mode 100644 index 0000000..7849f58 --- /dev/null +++ b/src/mercadolibre/note.txt @@ -0,0 +1 @@ +33462 https://hackerone.com/mercadolibre MercadoLibre mercadolibre diff --git a/src/mercadolibre_vdp/APPLE_STORE_APP_ID.txt b/src/mercadolibre_vdp/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..6a83539 --- /dev/null +++ b/src/mercadolibre_vdp/APPLE_STORE_APP_ID.txt @@ -0,0 +1,2 @@ +com.mercadopago.MercadoPago +com.3mosquitos.MercadoLibre diff --git a/src/mercadolibre_vdp/GOOGLE_PLAY_APP_ID.txt b/src/mercadolibre_vdp/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..af641af --- /dev/null +++ b/src/mercadolibre_vdp/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1,4 @@ +com.mercadopago.wallet +com.mercadolibre +com.mercadoenvios.crowdsourcing +com.mercadoenvios.driver diff --git a/src/mercadolibre_vdp/HARDWARE.txt b/src/mercadolibre_vdp/HARDWARE.txt new file mode 100644 index 0000000..f334307 --- /dev/null +++ b/src/mercadolibre_vdp/HARDWARE.txt @@ -0,0 +1 @@ +Point Smart diff --git a/src/mercadolibre_vdp/OTHER.txt b/src/mercadolibre_vdp/OTHER.txt new file mode 100644 index 0000000..527df59 --- /dev/null +++ b/src/mercadolibre_vdp/OTHER.txt @@ -0,0 +1,2 @@ +Mercado Pago Apps Endpoints +Other diff --git a/src/mercadolibre_vdp/URL.txt b/src/mercadolibre_vdp/URL.txt new file mode 100644 index 0000000..61b3903 --- /dev/null +++ b/src/mercadolibre_vdp/URL.txt @@ -0,0 +1,16 @@ +www.mercadolibre.cl +api.mercadolibre.com +api.mercadopago.com +www.mercadolibre.com.ar +www.mercadolibre.com.co +www.mercadolibre.com.mx +www.mercadolibre.com.pe +www.mercadolibre.com.uy +www.mercadolivre.com.br +www.mercadopago.cl +www.mercadopago.com.ar +www.mercadopago.com.br +www.mercadopago.com.co +www.mercadopago.com.mx +www.mercadopago.com.pe +www.mercadopago.com.uy diff --git a/src/mercadolibre_vdp/note.txt b/src/mercadolibre_vdp/note.txt new file mode 100644 index 0000000..a3b61ba --- /dev/null +++ b/src/mercadolibre_vdp/note.txt @@ -0,0 +1 @@ +34783 https://hackerone.com/mercadolibre_vdp MercadoLibre mercadolibre_vdp diff --git a/src/meredith/URL.txt b/src/meredith/URL.txt new file mode 100644 index 0000000..9ca23bf --- /dev/null +++ b/src/meredith/URL.txt @@ -0,0 +1,8 @@ +elvis.meredith.com +https://insights.bizrate.com/js/init.js +https://registration.bizraterewards.com/members +https://magazinediscountcenter.com/ +https://www.magazineoutlet.com/ +mediapayportal.com +http://magazine.mileageplus.com +http://privacy.synapsegroupinc.com/ diff --git a/src/meredith/note.txt b/src/meredith/note.txt new file mode 100644 index 0000000..36e38e2 --- /dev/null +++ b/src/meredith/note.txt @@ -0,0 +1 @@ +45246 https://hackerone.com/meredith Meredith meredith diff --git a/src/mergify/URL.txt b/src/mergify/URL.txt new file mode 100644 index 0000000..d09399d --- /dev/null +++ b/src/mergify/URL.txt @@ -0,0 +1,2 @@ +api.mergify.com +dashboard.mergify.com diff --git a/src/mergify/note.txt b/src/mergify/note.txt new file mode 100644 index 0000000..d6ffb8f --- /dev/null +++ b/src/mergify/note.txt @@ -0,0 +1 @@ +58649 https://hackerone.com/mergify Mergify mergify diff --git a/src/meta/note.txt b/src/meta/note.txt new file mode 100644 index 0000000..ca280b5 --- /dev/null +++ b/src/meta/note.txt @@ -0,0 +1 @@ +41286 https://hackerone.com/meta Meta meta diff --git a/src/metamask/APPLE_STORE_APP_ID.txt b/src/metamask/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..670b2dc --- /dev/null +++ b/src/metamask/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +io.metamask.Metamask diff --git a/src/metamask/GOOGLE_PLAY_APP_ID.txt b/src/metamask/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..288c304 --- /dev/null +++ b/src/metamask/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +io.metamask diff --git a/src/metamask/OTHER.txt b/src/metamask/OTHER.txt new file mode 100644 index 0000000..9c19195 --- /dev/null +++ b/src/metamask/OTHER.txt @@ -0,0 +1,8 @@ +Chrome Extension: https://chrome.google.com/webstore/detail/metamask/nkbihfbeogaeaoehlefnkodbefgpgknn +Firefox Extension: https://addons.mozilla.org/en-US/firefox/addon/ether-metamask/ +MetaMask Browser Extension +MetaMask JavaScript SDK +MetaMask SDK +https://metamask.github.io/phishing-warning/ +Snaps +Third Party Snaps diff --git a/src/metamask/SOURCE_CODE.txt b/src/metamask/SOURCE_CODE.txt new file mode 100644 index 0000000..ff4af8c --- /dev/null +++ b/src/metamask/SOURCE_CODE.txt @@ -0,0 +1 @@ +Snaps Development Packages diff --git a/src/metamask/URL.txt b/src/metamask/URL.txt new file mode 100644 index 0000000..667dd35 --- /dev/null +++ b/src/metamask/URL.txt @@ -0,0 +1,4 @@ +https://portfolio.metamask.io +portfolio.metamask.io +snaps.metamask.io +metamask.io diff --git a/src/metamask/WILDCARD.txt b/src/metamask/WILDCARD.txt new file mode 100644 index 0000000..7e9c3e2 --- /dev/null +++ b/src/metamask/WILDCARD.txt @@ -0,0 +1 @@ +https://*.metamask.io diff --git a/src/metamask/note.txt b/src/metamask/note.txt new file mode 100644 index 0000000..71b8a21 --- /dev/null +++ b/src/metamask/note.txt @@ -0,0 +1 @@ +56419 https://hackerone.com/metamask MetaMask metamask diff --git a/src/midpoint_h1c/URL.txt b/src/midpoint_h1c/URL.txt new file mode 100644 index 0000000..d314e5a --- /dev/null +++ b/src/midpoint_h1c/URL.txt @@ -0,0 +1,2 @@ +https://github.com/Evolveum/midpoint +https://github.com/evolveum/midpoint diff --git a/src/midpoint_h1c/note.txt b/src/midpoint_h1c/note.txt new file mode 100644 index 0000000..cb911c9 --- /dev/null +++ b/src/midpoint_h1c/note.txt @@ -0,0 +1 @@ +38469 https://hackerone.com/midpoint_h1c Midpoint (European Commission - DIGIT) midpoint_h1c diff --git a/src/miro/APPLE_STORE_APP_ID.txt b/src/miro/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..64f60c2 --- /dev/null +++ b/src/miro/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +1180074773 diff --git a/src/miro/DOWNLOADABLE_EXECUTABLES.txt b/src/miro/DOWNLOADABLE_EXECUTABLES.txt new file mode 100644 index 0000000..1b4923f --- /dev/null +++ b/src/miro/DOWNLOADABLE_EXECUTABLES.txt @@ -0,0 +1,2 @@ +Windows Desktop Application +MacOS Desktop Application diff --git a/src/miro/GOOGLE_PLAY_APP_ID.txt b/src/miro/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..22fcde9 --- /dev/null +++ b/src/miro/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.realtimeboard diff --git a/src/miro/OTHER.txt b/src/miro/OTHER.txt new file mode 100644 index 0000000..7f9cf2e --- /dev/null +++ b/src/miro/OTHER.txt @@ -0,0 +1,6 @@ +https://marketplace.atlassian.com/apps/1219583/jira-cards-by-miro?hosting=cloud +https://marketplace.atlassian.com/apps/1217530/miro-for-confluence?hosting=cloud +https://marketplace.atlassian.com/apps/1215456/miro-for-jira-cloud?hosting=cloud +Miro SDK +Tier1 +Tier2 diff --git a/src/miro/URL.txt b/src/miro/URL.txt new file mode 100644 index 0000000..9fd4471 --- /dev/null +++ b/src/miro/URL.txt @@ -0,0 +1,6 @@ +miro.com/app +miro.com +api.miro.com +miro.com/blog +http://miro.com/app +http://miro.com/blog diff --git a/src/miro/WINDOWS_APP_STORE_APP_ID.txt b/src/miro/WINDOWS_APP_STORE_APP_ID.txt new file mode 100644 index 0000000..dd3fc7c --- /dev/null +++ b/src/miro/WINDOWS_APP_STORE_APP_ID.txt @@ -0,0 +1 @@ +9n236hqqtvnh diff --git a/src/miro/note.txt b/src/miro/note.txt new file mode 100644 index 0000000..4ea3670 --- /dev/null +++ b/src/miro/note.txt @@ -0,0 +1 @@ +49424 https://hackerone.com/miro Miro miro diff --git a/src/mobilevikings/note.txt b/src/mobilevikings/note.txt new file mode 100644 index 0000000..20525ae --- /dev/null +++ b/src/mobilevikings/note.txt @@ -0,0 +1 @@ +607 https://hackerone.com/mobilevikings Mobile Vikings mobilevikings diff --git a/src/mobisystems_ltd/GOOGLE_PLAY_APP_ID.txt b/src/mobisystems_ltd/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..c3b4f31 --- /dev/null +++ b/src/mobisystems_ltd/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1,3 @@ +com.mobisystems.office +com.mobisystems.fileman +com.mobisystems.msdict.embedded.wireless.oxford.dictionaryofenglish diff --git a/src/mobisystems_ltd/note.txt b/src/mobisystems_ltd/note.txt new file mode 100644 index 0000000..eae3abe --- /dev/null +++ b/src/mobisystems_ltd/note.txt @@ -0,0 +1 @@ +43285 https://hackerone.com/mobisystems_ltd MobiSystems Ltd. mobisystems_ltd diff --git a/src/modern_treasury/URL.txt b/src/modern_treasury/URL.txt new file mode 100644 index 0000000..a10916e --- /dev/null +++ b/src/modern_treasury/URL.txt @@ -0,0 +1,2 @@ +app.moderntreasury.com +cdn.moderntreasury.com diff --git a/src/modern_treasury/note.txt b/src/modern_treasury/note.txt new file mode 100644 index 0000000..46205d1 --- /dev/null +++ b/src/modern_treasury/note.txt @@ -0,0 +1 @@ +57841 https://hackerone.com/modern_treasury Modern Treasury modern_treasury diff --git a/src/monarch_money/APPLE_STORE_APP_ID.txt b/src/monarch_money/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..5bb9aa7 --- /dev/null +++ b/src/monarch_money/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +1459319841 diff --git a/src/monarch_money/GOOGLE_PLAY_APP_ID.txt b/src/monarch_money/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..65e3efe --- /dev/null +++ b/src/monarch_money/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.monarchmoney.mobile diff --git a/src/monarch_money/URL.txt b/src/monarch_money/URL.txt new file mode 100644 index 0000000..ae950d4 --- /dev/null +++ b/src/monarch_money/URL.txt @@ -0,0 +1,2 @@ +app.monarchmoney.com +www.monarchmoney.com diff --git a/src/monarch_money/note.txt b/src/monarch_money/note.txt new file mode 100644 index 0000000..c824985 --- /dev/null +++ b/src/monarch_money/note.txt @@ -0,0 +1 @@ +57318 https://hackerone.com/monarch_money Monarch Money monarch_money diff --git a/src/mondelez/CIDR.txt b/src/mondelez/CIDR.txt new file mode 100644 index 0000000..c88c1df --- /dev/null +++ b/src/mondelez/CIDR.txt @@ -0,0 +1,27 @@ +185.183.185.116 +185.89.65.82 +195.122.195.234 +195.136.48.42 +195.239.232.54 +195.68.214.73 +212.174.158.210 +83.242.228.94 +81.12.139.114 +80.107.91.210 +78.107.30.18 +62.96.194.226 +62.1.54.58 +46.16.194.69 +217.146.130.51 +84.254.8.25 +86.110.242.75 +86.110.245.26 +88.254.8.25 +89.120.147.170 +89.216.23.202 +90.152.54.18 +91.196.156.146 +91.82.106.182 +92.86.207.110 +93.184.72.138 +94.42.120.90 diff --git a/src/mondelez/IP_ADDRESS.txt b/src/mondelez/IP_ADDRESS.txt new file mode 100644 index 0000000..c88c1df --- /dev/null +++ b/src/mondelez/IP_ADDRESS.txt @@ -0,0 +1,27 @@ +185.183.185.116 +185.89.65.82 +195.122.195.234 +195.136.48.42 +195.239.232.54 +195.68.214.73 +212.174.158.210 +83.242.228.94 +81.12.139.114 +80.107.91.210 +78.107.30.18 +62.96.194.226 +62.1.54.58 +46.16.194.69 +217.146.130.51 +84.254.8.25 +86.110.242.75 +86.110.245.26 +88.254.8.25 +89.120.147.170 +89.216.23.202 +90.152.54.18 +91.196.156.146 +91.82.106.182 +92.86.207.110 +93.184.72.138 +94.42.120.90 diff --git a/src/mondelez/OTHER.txt b/src/mondelez/OTHER.txt new file mode 100644 index 0000000..2ab9d24 --- /dev/null +++ b/src/mondelez/OTHER.txt @@ -0,0 +1,2 @@ +Client Supplied List of Target IPs & Hostnames +Please see external docs diff --git a/src/mondelez/URL.txt b/src/mondelez/URL.txt new file mode 100644 index 0000000..bcbe3fa --- /dev/null +++ b/src/mondelez/URL.txt @@ -0,0 +1,745 @@ +mondelezinternational.com +www.cadbury.com.au +amea.mondelezinternational.com +ar.mondelezinternational.com +au.mondelezinternational.com +br.mondelezinternational.com +cn.mondelezinternational.com +eu.mondelezinternational.com +gdpr-readiness-kit.mondelezinternational.com +http://in.mondelezinternational.com/home +id.mondelezinternational.com +in.mondelezinternational.com +ir.mondelezinternational.com +jp.mondelezinternational.com +mx.mondelezinternational.com +my.mondelezinternational.com +negotiations.mondelezinternational.com +ng.mondelezinternational.com +ph.mondelezinternational.com +ru.mondelezinternational.com +th.mondelezinternational.com +tr.mondelezinternational.com +trendreport.mondelezinternational.com +ua.mondelezinternational.com +vn.mondelezinternational.com +za.mondelezinternational.com +cadbury.co.uk +cookbook.cadbury.co.uk +fun.cadbury.co.uk +hideandfind.cadbury.co.uk +jubilee.cadbury.co.uk +makeit.cadbury.co.uk +makeityours.cadbury.co.uk +qr.easter.cadbury.co.uk +register.cadbury.co.uk +services.cadbury.co.uk +survey.cadbury.co.uk +worldwidehide-manutd.cadbury.co.uk +worldwidehide.cadbury.co.uk +donutmuffin.milka.de +edeka.milka.de +kaufland.milka.de +milka.de +mmmax.milka.de +mueller.milka.de +rewe.milka.de +services.milka.de +www.milka.de +de.oreo.eu +delivery.oreo.eu +fr.oreo.eu +nl.oreo.eu +oreo.eu +playwithoreo.oreo.eu +shop.oreo.eu +tournezlaroue.fr.oreo.eu +5ka.alpengold.me +alpengold.me +kz.alpengold.me +magnit.alpengold.me +perekrestok.alpengold.me +uz.alpengold.me +x5.alpengold.me +awaywins.cadburyfc.com +cadburyfc.com +captain.cadburyfc.com +matchandwin.cadburyfc.com +superstriker.cadburyfc.com +ticketing.cadburyfc.com +winaday.cadburyfc.com +co.oreo-la.com +ec.oreo-la.com +gt.oreo-la.com +oreo-la.com +pa.oreo-la.com +pe.oreo-la.com +rd.oreo-la.com +xn--80abwto.xn--p1ai +xn--80agpnh5a.xn--80abwto.xn--p1ai +xn--80ajpngj0i.xn--80abwto.xn--p1ai +xn--d1ababplg1ak.xn--80abwto.xn--p1ai +xn--e1aaatbxcjcll.xn--80abwto.xn--p1ai +xn--h1abcjhbnel.xn--80abwto.xn--p1ai +xn--l1adbbf.xn--80abwto.xn--p1ai +cocoalife.org +de.cocoalife.org +es.cocoalife.org +fr.cocoalife.org +pt.cocoalife.org +fcmilka.de +gold.fcmilka.de +star.fcmilka.de +tippspiel.fcmilka.de +www.gold.fcmilka.de +cadbury.ie +store.worldwidehide.cadbury.ie +womensfootball.cadbury.ie +worldwidehide.cadbury.ie +agencywire.mdlzapps.com +contactus.mdlzapps.com +http://secure-na1.mdlzapps.com/collectionadmin +winaday-cadburyfc-netstg.mdlzapps.com +game.milka.bg +go.milka.bg +milka.bg +potursinejnostta.milka.bg +5ka.milka.ru +magnit.milka.ru +milka.ru +promo.milka.ru +blog.perfectsnacks.com +dev.perfectsnacks.com +perfectsnacks.com +wholesale.perfectsnacks.com +fr.philadelphia.be +nl.philadelphia.be +philadelphia.be +taste.philadelphia.be +belvita.com.au +woolworths.belvita.com.au +www.belvita.com.au +cadbury.co.nz +hiddenegg.cadbury.co.nz +mothersday.cadbury.co.nz +bot.cadburygifting.in +cadburygifting.in +www.cadburygifting.in +choclairs.com +goldenticket.choclairs.com +rewards.choclairs.com +deliciousdisplay.co.uk +loyalty.deliciousdisplay.co.uk +www.deliciousdisplay.co.uk +bontasenzasegreti.fattorieosella.it +fattorieosella.it +missionebonta.fattorieosella.it +gratistesten.lu-original.de +lu-original.de +www.gratis-testen.lu-original.de +175ans.lu.fr +lu.fr +preuvesdamour.lu.fr +milka.at +mmmax.milka.at +zartstattzwider.milka.at +detoutcoeuraveclesbleus.milka.fr +miamourembourse.milka.fr +milka.fr +cautatandretea.milka.ro +milka.ro +tandretea.milka.ro +110birthday.oreo.com +oreo.com +magnit.oreo.ru +oreo.ru +x5.oreo.ru +cashback.philadelphia-professional.de +order-service.philadelphia-professional.de +philadelphia-professional.de +de.philadelphia.ch +fr.philadelphia.ch +philadelphia.ch +fruitfight.sourpatchkids.com +sourpatchkids.com +cadbury.com.au +worldwidehunt.cadbury.com.au +chipsahoyart.prizelogic.com +meijeroreo110.prizelogic.com +nabiscobiggame.prizelogic.com +resultsonline.rssl.com +rssl.com +services-mw.rssl.com +health-pro.snackmindful.com +snackmindful.com +www.snackmindful.com +admin.tettrungthu.vn +cdn.tettrungthu.vn +tettrungthu.vn +lenta.vkusnobonus.ru +referal.vkusnobonus.ru +vkusnobonus.ru +belvita.life +lenta.belvita.life +belvitabreakfast.com +www.belvitabreakfast.com +cadbury.co.za +worldwidehide.cadbury.co.za +bot.cadbury.com.my +www.zip.cadbury.com.my +fr.clifbar.ca +www.clifbar.ca +annual-report.clifbar.com +www.clifbar.com +philadelphia.co.nl +taste.philadelphia.co.nl +fr.cotedor.be +nl.cotedor.be +dirtkitchensnacks.com +www.dirtkitchensnacks.com +enjoylifefoods.com +www.enjoylifefoods.com +mondelez-nabiscominions.promo.eprize.com +mondelez.promo.eprize.com +freia.no +services.freia.no +goutezlavictoire.ca +or.goutezlavictoire.ca +apolo.hellojoy.es +catalogo.hellojoy.es +loteriadelicje.pl +www.loteriadelicje.pl +klubbkakan.marabou.se +marabou.se +mdlzfoodservice.com +www.mdlzfoodservice.com +cloud.mdlzinsights.com +mdlzinsights.com +gewinnspiel.mikado.tv +mikado.tv +milka.be +www.milka.be +milka.com +shop.milka.com +milka.cz +soutez.milka.cz +milka.sk +sutaz.milka.sk +oreo.co.uk +store.oreo.co.uk +batman.oreo.com.br +www.oreo.com.br +orosaiwa.it +qr.orosaiwa.it +fuehl-dich-gut.philadelphia.de +philadelphia.de +desayunadisfrutando.philadelphia.es +philadelphia.es +dimomentoinmomento.philadelphia.it +philadelphia.it +pequenosalmocos.philadelphia.pt +philadelphia.pt +philadelphiaprofessional.co.uk +www1.philadelphiaprofessional.co.uk +ritzcrackers.com +www.ritzcrackers.com +shopforbournvita.com +www.shopforbournvita.com +ricettacercasi.sottilette.it +sottilette.it +stimorol.ch +win-v6.stimorol.ch +sigamoscompartiendo.suchard.es +suchard.es +gold.tasteglory.ca +tasteglory.ca +toblerone.co.uk +www.toblerone.co.uk +fr.v6-labs.ch +v6-labs.ch +xn--80agpnh5a.xn--90aiakgkqi1l.xn--p1ai +xn--90aiakgkqi1l.xn--p1ai +84.254.8.25 +7days.com +5starnothingcoin.com +5ka-mdlz.ru +162.117.253.211 +86.110.245.26 +86.110.242.75 +40.112.91.212 +anevetessport.hu +back2school-gewinnspiel.at +barni.org +barniadventures.com +barnipromo.ro +base-mondelez-ag.fr +basketballgamingpromotion.com +bassettsvitamins.co.uk +beldent.com.ar +beldent.com.uy +belvita.eu +belvita.pl +belvitapromo.ro +bg.barniworld.com +biskuatacademy.com +bolachasprince.pt +bournville.in +boxofjoy.gr +brumikobjavitel.sk +brumikobjevitel.cz +cadbury.one +cadbury5stardonothinglegends.com +cadburycelebrationsgifting.com +cadburycelebrationsmyfirstrakhi.com +cadburycricket.in +cadburycustomer.com.au +cadburydonateyourkit.co.nz +cadburyfavourites.co.nz +cadburyfavourites.com +cadburygems.in +cadburygiftsdirect.co.uk +cadburyperktakeitlight.com +cadburypurpleheart.in +cadburyworld.co.uk +cadouritandre.ro +cafollowyourart.com +candybarencasa.com +capaofruit.com +caramilk.ca +caramilksalted.ca +caramilkseldemer.ca +cerealitas.com.ar +cheeseanything.com +cheesecakeperfect.ro +chipita.com +chipsahoy.es +chipsahoy.pt +ciasteczkowe.pl +clight.com.mx +clorets.jp +cloretsthailand.com +cotedor-chocolat.fr +cotedor.com +cotedor.it +cotedor.nl +cotedorgifts.com +createatreat.com +ct-hopp.interlogservices.com +ct-hopp.interlogsolutions.net +dairylea.co.uk +declaratiedetandrete.ro +dentyne.com +dessertscorner.com +digitalaccelerator-mdlz.com +diji-touch.com +dirolplay.com +discoverteddy.com +egyedimilka.hu +ejackson.co.uk +enjoylifefoods.sharepoint.com +experienciashalls.pt +fattorieosella.com +fidorka.cz +figaro.cz +figaro.sk +fineti.com +first.com.tr +fontaneda.es +fonzies.it +freiahjemmekonditori.no +freiasjokoladetester.no +fundraising.co.nz +fundraising.com.au +ganacontridentyhalls.es +gemscashback.com +generasitiger.com +gethalls.ca +gethalls.com +giveandgo.com +goodthins.com +gourmetfood.com.au +greenandblacks.co.uk +gustaredetop.ro +gustulcalatoriei.ro +halls.jp +halls.win +hallsbreathofthailand.com +hallsdarkcherry.com +hallsminiscameo.com +harmony.info +haztudiadelicioso.com +holidayoreorecipes.com +hollywood-chewinggum.fr +http://cadburychocobakesshop.in/cadburychocobakes/231403 +http://cadburyfusefit.in/cadburyfuse/223405 +http://mobilapresentkort.se/marabougram +http://shopfororeo.com/in/oreo/231505 +http://triscuit.connecting-food.com/en/triscuit/original +http://wbbsgfx.com/tagroller +indd.adobe.com +ingoodcompany.eco +jello.com.mx +jeubelin.com +jeuhollywood.fr +jocca.it +kimberleysbakeshoppe.com +lacta.com.br +lacta.gr +learnwithbournvita.com +leo.be +lescollationsdete.ca +letschatsnacks.com +liga.nl +lilaliebtgruen.at +lojamondelez.com.br +loteriamilka.pl +loteriasan.pl +lu.be +lu.nl +luprince.be +luprince.nl +madbury.in +makeitcadbury.co.uk +marabou.dk +marabou.fi +marabougram.se +maraboupremium.dk +maraboupremium.fi +maraboupremium.se +masonstbakehouse.com +mavieencouleurs.fr +mdlzcollaboration.com +mdlzcusthelp.ca +mdlzcusthelp.com +mdlzfreerackpromo.com +mdlzmysales.com +mdlznutritionscience.com +mdlzvendtray.com +meinebackkreation.de +mezclaydisfruta.com.ar +mibodegamondelez.pe +mikado.com +milka-promo.bg +milka-promo.com.ua +milka.ba +milka.cl +milka.com.pl +milka.com.tr +milka.es +milka.hr +milka.hu +milka.it +milka.nl +milka.rs +milka.ua +milkacrema-pruebagratis.es +milkamagicaleaster.be +milkaslovenija.com +milkatiregala.it +miracelwhip-mayo.de +miracelwhip.de +mitiendamondelez.com +mlflow.infra.uat.mdlz-matilda-predictive.com +molto.gr +mondelez-foodservice.co.uk +mondelezcanadafoodservice.ca +mondelezdeutschlandprofessional.de +mondelezfoodservice.com.mx +mondelezfoodsolutions.com.br +mondelezgrowthprogram.com +mondelezinternationalfoodservice.com +mondelezinternationalnutritionscience.com +mondelezkinhdo.com +mondelezpro.fr +mozartkugel.at +mwtr.com +nabiscodunksweepstakes.com +nabiscoxbox.com +nientaltrochebonta.it +nocoe.live-website.com +noiloiyeume.luvietnam.com +notjustacadburyad.com +nu-tavlar-vi.se +nussbeisser.pl +nutavlarvi.se +nyerjakedvenceiddel.hu +nyerjakekszekkel.hu +nyerjamilkaval.hu +oboy.fi +oboy.no +oboy.se +opavia.info +opavia180.com +oplatky-kolonada.cz +oplatky-kolonada.sk +oreo.at +oreo.com.ar +oreo.com.uy +oreo.gr +oreo.promo +oreo.pt +oreo110.ca +oreoacademy.es +oreobirthday.oreo.my +oreocookie.jp +oreodzienojca.pl +oreoitalia.it +oreomuhely.hu +oreoplay.in +oreoplaypack.in +oreopromociones.es +oreorecipes.com +pepitos.com.ar +philadelphia-professional.it +philadelphia.cl +philadelphia.co.uk +philadelphia.com.mx +philadelphia.dk +philadelphia.fi +philadelphia.fr +philadelphia.gr +philadelphia.ie +philadelphia.no +philadelphia.ro +philadelphia.se +philly.com.au +phillytisgefsis.gr +playpadwebar.com +premiumcrackers.jp +pressplaywithoreo.com +princedelu.fr +princepolo.pl +principe.es +promofield.pe +promoterrabusi.com.ar +promotion.pascall.co.nz +ramadanpromo.tang.in +readmytwirl.com +realrewardscafe.com +recaldent-gum.com +recetasconpremio.es +resipiraya.cadburyoreo.com.my +returns.kent.com.tr +ritzcrackers.jp +royalcontigo.com +salesapps.cloud.mdlz.net +salesapps.mdlz.com +servicesalimentairesmondelezcanada.ca +shopforcadburydairymilk.in +shopforcadburysilk.com +sjokoladehus.no +slowreleasecarbs.com +smartlabel.mondelez.info +snackfutures.com +snackworks.ca +snackworks.com +sobremesasroyal.pt +solucionesmondelez.com +spinspan.gr +sportszelet.hu +stimorol.be +stimorol.nl +suchard.at +suchard.bg +svogeshokoladi.bg +tang.com.ar +tang.com.br +tang.com.mx +tang.com.uy +tangonampromo.com +tangparatodos.com +tatesbakeshop.com +tbd.com +theworthycrumb.com +tiendamondelez.com.ar +toblerone.ch +toblerone.fr +togetherwefan.com +tojaskeresojatek.hu +trebor.co.uk +trident.com.mx +tridentfestivais.pt +tridentgum.com +tridentpromo.eu +triscuit.com +triunfo.pt +tuc.be +tuc.eu +tuc.fun +tuc.nl +tuctime.it +tusituc.ro +twobite.ca +unclewallys.com +vajickobrani.cz +vitasnellabakery.it +vyhrajscoop.cz +vykotulanesibalstvo.sk +vykutalenarostarna.cz +wheatthins.com +wielkanocneszukajki.pl +www.backtoschool-gewinnspiel.at +www.cadburygoodluckgirls.in +www.clifbar.be +www.clifbar.co.nz +www.clifbar.co.uk +www.clifbar.com.au +www.clifbar.de +www.clifbar.es +www.clifbar.fi +www.clifbar.fr +www.clifbar.nl +www.clifbar.pt +www.clifbar.se +www.dorminyeremenyjatek.hu +www.fattorioesella.com +www.fc-milka.de +www.foodservice-snacks-desserts.com +www.fuehl-dich-gut.philadelphia.at +www.ippayments.com.au +www.lunafest.org +www.mannkitayyari.in +www.mdlzsalessolutions.com +www.nabiscobiggame.com +www.oreothailand.com +www.qr-codes.royal.eu +youdeserveaflakemoment.com +ziz.be +www.greenandblacks.co.uk +www.twistandmake.com +horizon-api.www.toblerone.co.uk +oreostayplayful.com +orociokminions.it +loterianussbeisser.pl +ppsweeps.oreo.com +futisviikonloppu.marabou.fi +motngaytrungthusumvay.vn +giveasmile.belvitasnacks.com +saboresconjuego.es +bubbaloocity.com.mx +wirbackendas.milka.de +http://diardemo.mdlzapps.com +mdlz-shop.fr +lubakery.co.uk +http://apps.mdlz.com +snackdisplay.co.uk +cadburydessertscorner.com +shopforcadbury.com +http://backoffice.cadburygifting.in +http://mcprod.tatesbakeshop.com +csrmdlz.in +http://mystore.mdlz.com +http://ftp.lu.be +https://investorupdate.mondelezinternational.com/ +cadburytimeout.com +bakerypromo.milka.be +winter.lu.be +7days-promo.ro +schokohaus.milka.at +bbdr.sk +najljubsimilkaokus.si +winmetmilka.nl +nudge4mdlz.com +deliciouswishesgiftexchange.com +bbdr.cz +harmoniabanamehekkel.hu +favourites.milka.de +castigatandrete.ro +nabiscoseasonofgiving.com +netto.milka.de +budni.milka.de +https://digitas.8thwall.app/chips-ahoy-happy-by-design +doppeltgewinnen.fcmilka.de +http://cadburypakistan.com/cricketworldcup +hallsfangiveaway.com +spar.nyerjakedvenceiddel.hu +https://www.fundraising.com.au/ +chipsahoy.art +weihnachten.milka.de +cadburythisadismystore.com +shop.cadburydairymilk.com +phillyksa.com +snackingright.com.au +cadburysittogether.com +tridentxjungle.com +spkcringeorcandy.com +bisnaccxp.com.br +http://training-indonesia.cocoalife.org +milka-noelsdumonde.com +cadburygift.com +epack.mondelezinternational.com +mitiendamondelez.com.ar +cadbury-gifting.com +https://otm.croc.ru +https://milka.ru +https://alpengold.me +https://oreo.ru +https://xn--80abwto.xn--p1ai +https://xn--90aiakgkqi1l.xn--p1ai +100jaar.liga.nl +7days-promo.com +bakerypromo.milka.nl +clifbar.it +cotedor.be +entdeckeallesorten.milka.de +fodboldrejse.marabou.dk +go.7days.com +heritageadvertising.cadbury.co.uk +loteria7days.pl +marabouchokladhus.se +milkamaxtrenutak.ba +milkamaxtrenutak.hr +milkamaxtrenutak.rs +milkamaxtrenutek.si +mmmax-tester.milka.de +mongouterprince.fr +oreo.kz +principesportsacademy.es +secretsanta.cadbury.co.uk +signwithfingers.cadbury.co.uk +soutez.opavia.info +sport70promo.hu +sutaz.opavia.info +sutazoreo.sk +trident.gr +vyhrajschuti.cz +vyhrajschutou.sk +worldclass.cadburyfc.com +nabiscoholiday.com +posters.cadbury.com.au +sourpatchkids.gg +snackfest.ro +sayitwithasongmilka.com +savouronsensemblelareussite.ca +tavla.marabou.se +tavlamedtuc.se +tasteglorytogether.ca +tnccletspicnic.com.au +https://brand-sa.shortlyst.com/cadburydairymilk/1801 +oreo.com.au +https://cadburygift.com +https://cadburyworld.co.uk +https://csrmdlz.in +https://mystore.mdlz.com +https://mavieencouleurs.fr +https://mdlz-shop.fr +https://perfectsnacks.com +https://wholesale.perfectsnacks.com +https://www.clifbar.com +https://shop.clifbar.com +www.grenade-au.com +grenade.com +hukitchen.com +hukitchen.co.uk +www.snack7days.com +twistonit.oreo.com +https://cadburygifting.in +https://hukitchen.com +https://www.mavieencouleurs.fr +https://www.cadburygiftsdirect.co.uk +https://www.shopforcadbury.com +https://www.greenandblacks.co.uk +https://www.fundraising.com.au +https://www.tatesbakeshop.com +https://www.oreo.com +https://www.sourpatchkids.com diff --git a/src/mondelez/WILDCARD.txt b/src/mondelez/WILDCARD.txt new file mode 100644 index 0000000..beb9999 --- /dev/null +++ b/src/mondelez/WILDCARD.txt @@ -0,0 +1,4 @@ +http://www.oreo.com/* +http://*.sourpatchkids.com +http://www.sourpatchkids.com/* +http://*.oreo.com diff --git a/src/mondelez/note.txt b/src/mondelez/note.txt new file mode 100644 index 0000000..095cafb --- /dev/null +++ b/src/mondelez/note.txt @@ -0,0 +1 @@ +55095 https://hackerone.com/mondelez Mondelēz International mondelez diff --git a/src/monero/note.txt b/src/monero/note.txt new file mode 100644 index 0000000..75998c3 --- /dev/null +++ b/src/monero/note.txt @@ -0,0 +1 @@ +7731 https://hackerone.com/monero Monero monero diff --git a/src/moneybird/APPLE_STORE_APP_ID.txt b/src/moneybird/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..40e7bcd --- /dev/null +++ b/src/moneybird/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +com.moneybird.Moneybird diff --git a/src/moneybird/GOOGLE_PLAY_APP_ID.txt b/src/moneybird/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..53ef71f --- /dev/null +++ b/src/moneybird/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.moneybird.android diff --git a/src/moneybird/URL.txt b/src/moneybird/URL.txt new file mode 100644 index 0000000..7ec31eb --- /dev/null +++ b/src/moneybird/URL.txt @@ -0,0 +1,4 @@ +https://moneybird.com +https://moneybirdstorage.com +moneybird.com +moneybirdstorage.com diff --git a/src/moneybird/note.txt b/src/moneybird/note.txt new file mode 100644 index 0000000..000ca56 --- /dev/null +++ b/src/moneybird/note.txt @@ -0,0 +1 @@ +1361 https://hackerone.com/moneybird Moneybird moneybird diff --git a/src/mongodb/OTHER.txt b/src/mongodb/OTHER.txt new file mode 100644 index 0000000..b70cbdf --- /dev/null +++ b/src/mongodb/OTHER.txt @@ -0,0 +1,23 @@ +MongoDB Owned GitHub Repositories +MongoDB Driver: Node.js +MongoDB Driver: Java +MongoDB Driver: Python +MongoDB Driver: .NET +MongoDB Driver: Ruby +MongoDB Driver: Rust +MongoDB Server Local Instance +MongoDB BI Connector +MongoDB Cluster-To-Cluster sync +MongoDB Compass +MongoDB Driver: C +MongoDB Driver: C# +MongoDB Driver: C++ +MongoDB Driver: Go +MongoDB Driver: PHP +MongoDB Driver: Swift +MongoDB Kafka Connector +MongoDB Realm SDKs +MongoDB Relational Migrator +MongoDB Shell +MongoDB Spark Connector +MongoDB VS Code Plugin diff --git a/src/mongodb/URL.txt b/src/mongodb/URL.txt new file mode 100644 index 0000000..105536b --- /dev/null +++ b/src/mongodb/URL.txt @@ -0,0 +1,3 @@ +https://www.*mongodb.com/* +mongodb.live/* +artifactory.corp.mongodb.com/ diff --git a/src/mongodb/WILDCARD.txt b/src/mongodb/WILDCARD.txt new file mode 100644 index 0000000..992e577 --- /dev/null +++ b/src/mongodb/WILDCARD.txt @@ -0,0 +1 @@ +https://*.corp.mongodb.com* diff --git a/src/mongodb/note.txt b/src/mongodb/note.txt new file mode 100644 index 0000000..022ee32 --- /dev/null +++ b/src/mongodb/note.txt @@ -0,0 +1 @@ +55951 https://hackerone.com/mongodb MongoDB mongodb diff --git a/src/monolith/APPLE_STORE_APP_ID.txt b/src/monolith/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..1d90d3b --- /dev/null +++ b/src/monolith/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +io.tokencard.app.ios diff --git a/src/monolith/GOOGLE_PLAY_APP_ID.txt b/src/monolith/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..1f63f72 --- /dev/null +++ b/src/monolith/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +io.tokencard.app.android diff --git a/src/monolith/OTHER.txt b/src/monolith/OTHER.txt new file mode 100644 index 0000000..1095001 --- /dev/null +++ b/src/monolith/OTHER.txt @@ -0,0 +1,2 @@ +Android & IOS Apps +All Other Assets in Scope diff --git a/src/monolith/SOURCE_CODE.txt b/src/monolith/SOURCE_CODE.txt new file mode 100644 index 0000000..166a94d --- /dev/null +++ b/src/monolith/SOURCE_CODE.txt @@ -0,0 +1 @@ +https://github.com/tokencard/contracts diff --git a/src/monolith/URL.txt b/src/monolith/URL.txt new file mode 100644 index 0000000..9b6f581 --- /dev/null +++ b/src/monolith/URL.txt @@ -0,0 +1,3 @@ +api.production.tkn.zone +kyc-events.production.tkn.zone +card-onboarding.production.tkn.zone diff --git a/src/monolith/note.txt b/src/monolith/note.txt new file mode 100644 index 0000000..7dcb04c --- /dev/null +++ b/src/monolith/note.txt @@ -0,0 +1 @@ +38108 https://hackerone.com/monolith Monolith monolith diff --git a/src/monzo/APPLE_STORE_APP_ID.txt b/src/monzo/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..f86f367 --- /dev/null +++ b/src/monzo/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +io.b2a.BankProd diff --git a/src/monzo/GOOGLE_PLAY_APP_ID.txt b/src/monzo/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..4f574c1 --- /dev/null +++ b/src/monzo/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +co.uk.getmondo diff --git a/src/monzo/URL.txt b/src/monzo/URL.txt new file mode 100644 index 0000000..4da7d05 --- /dev/null +++ b/src/monzo/URL.txt @@ -0,0 +1,5 @@ +*.monzo.com +monzo.me +monzomail.com +monzoemail.com +*.prod-ffs.io diff --git a/src/monzo/WILDCARD.txt b/src/monzo/WILDCARD.txt new file mode 100644 index 0000000..d550395 --- /dev/null +++ b/src/monzo/WILDCARD.txt @@ -0,0 +1,2 @@ +http://*.monzo.com +http://*.prod-ffs.io diff --git a/src/monzo/note.txt b/src/monzo/note.txt new file mode 100644 index 0000000..0790687 --- /dev/null +++ b/src/monzo/note.txt @@ -0,0 +1 @@ +52467 https://hackerone.com/monzo Monzo monzo diff --git a/src/moonpay/APPLE_STORE_APP_ID.txt b/src/moonpay/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..69a9a3b --- /dev/null +++ b/src/moonpay/APPLE_STORE_APP_ID.txt @@ -0,0 +1,2 @@ +1635031432 +https://apps.apple.com/app/id1635031432 diff --git a/src/moonpay/GOOGLE_PLAY_APP_ID.txt b/src/moonpay/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..1938af7 --- /dev/null +++ b/src/moonpay/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1,2 @@ +com.moonpay +https://play.google.com/store/apps/details?id=com.moonpay diff --git a/src/moonpay/SOURCE_CODE.txt b/src/moonpay/SOURCE_CODE.txt new file mode 100644 index 0000000..8c579f3 --- /dev/null +++ b/src/moonpay/SOURCE_CODE.txt @@ -0,0 +1,2 @@ +https://github.com/moonpay +https://github.com/moonpay-hypermint diff --git a/src/moonpay/URL.txt b/src/moonpay/URL.txt new file mode 100644 index 0000000..df7bb04 --- /dev/null +++ b/src/moonpay/URL.txt @@ -0,0 +1,5 @@ +moonpay.com +*.moonpaycloud.com +hypermint.com +*.hypermint.com +*.moonpay.com diff --git a/src/moonpay/WILDCARD.txt b/src/moonpay/WILDCARD.txt new file mode 100644 index 0000000..317853b --- /dev/null +++ b/src/moonpay/WILDCARD.txt @@ -0,0 +1,6 @@ +http://*.moonpaycloud.com +http://*.hypermint.com +http://*.moonpay.com +*.moonpaycloud.com +*.hypermint.com +*.moonpay.com diff --git a/src/moonpay/note.txt b/src/moonpay/note.txt new file mode 100644 index 0000000..3201360 --- /dev/null +++ b/src/moonpay/note.txt @@ -0,0 +1 @@ +54756 https://hackerone.com/moonpay MoonPay moonpay diff --git a/src/mount-sinai-health/OTHER.txt b/src/mount-sinai-health/OTHER.txt new file mode 100644 index 0000000..755be4c --- /dev/null +++ b/src/mount-sinai-health/OTHER.txt @@ -0,0 +1,18 @@ +20.165.44.200 +20.122.153.201 +20.114.177.126 +20.232.191.31 +20.84.34.149 +52.147.215.103 +52.147.215.27 +40.74.181.236 +20.96.224.176 +20.80.229.29 +13.82.173.96 +20.96.80.106 +20.228.220.130 +20.25.124.98 +20.114.72.141 +20.55.212.23 +20.110.133.248 +20.22.88.242 diff --git a/src/mount-sinai-health/URL.txt b/src/mount-sinai-health/URL.txt new file mode 100644 index 0000000..c52677c --- /dev/null +++ b/src/mount-sinai-health/URL.txt @@ -0,0 +1,29 @@ +*.mountsinai.org +*.mssm.edu +*.stoppain.org +*.nyee2020.com +*.healthandhealingny.org +*.bethisraelny.org +*.thehealthcenterhudsonyards.com +*.thechep.org +*.nyeesurgnet.com +*.mountsinaiconnect.org +*.dubinbreastcenter.com +*.arnholdinstitute.org +*.wtcexams.org +*.stlukeshospitalnyc.org +*.sinaidowntown.net +*.sarcoidosis.org +*.medicalconciergenyc.com +*.healthandhealingny.com +*.carelink.mountsinaiconnect.org +*.usmgny.org +*.slrortho.com +*.nycepilepsyteam.com +*.cccsymposium.org +*.msonsitehealth.org +*.mountsinaiheartnp.org +*.healthbytesnyc.com +*.mountsinaidoctors.org +*.snch.org +*.southnassau.org diff --git a/src/mount-sinai-health/WILDCARD.txt b/src/mount-sinai-health/WILDCARD.txt new file mode 100644 index 0000000..c52677c --- /dev/null +++ b/src/mount-sinai-health/WILDCARD.txt @@ -0,0 +1,29 @@ +*.mountsinai.org +*.mssm.edu +*.stoppain.org +*.nyee2020.com +*.healthandhealingny.org +*.bethisraelny.org +*.thehealthcenterhudsonyards.com +*.thechep.org +*.nyeesurgnet.com +*.mountsinaiconnect.org +*.dubinbreastcenter.com +*.arnholdinstitute.org +*.wtcexams.org +*.stlukeshospitalnyc.org +*.sinaidowntown.net +*.sarcoidosis.org +*.medicalconciergenyc.com +*.healthandhealingny.com +*.carelink.mountsinaiconnect.org +*.usmgny.org +*.slrortho.com +*.nycepilepsyteam.com +*.cccsymposium.org +*.msonsitehealth.org +*.mountsinaiheartnp.org +*.healthbytesnyc.com +*.mountsinaidoctors.org +*.snch.org +*.southnassau.org diff --git a/src/mount-sinai-health/note.txt b/src/mount-sinai-health/note.txt new file mode 100644 index 0000000..e53470d --- /dev/null +++ b/src/mount-sinai-health/note.txt @@ -0,0 +1 @@ +55865 https://hackerone.com/mount-sinai-health Mount Sinai Health mount-sinai-health diff --git a/src/mozilla/OTHER.txt b/src/mozilla/OTHER.txt new file mode 100644 index 0000000..99afacf --- /dev/null +++ b/src/mozilla/OTHER.txt @@ -0,0 +1,2 @@ +Mozilla VPN Clients +Product Delivery diff --git a/src/mozilla/URL.txt b/src/mozilla/URL.txt new file mode 100644 index 0000000..3d9fddf --- /dev/null +++ b/src/mozilla/URL.txt @@ -0,0 +1,27 @@ +addons.allizom.org +developer.mozilla.org +accounts.firefox.com +profiler.firefox.com +vpn.mozilla.org +relay.firefox.com +api.profiler.firefox.com +www.mozilla.org +support.mozilla.org +hg.mozilla.org +stage.taskcluster.nonprod.cloudops.mozgcp.net +community-tc.services.mozilla.com +monitor.mozilla.org +shavar.services.mozilla.com +aus5.mozilla.org +bugzilla.mozilla.org +contile.services.mozilla.com +crash-reports.allizom.org +crash-stats.allizom.org +firefox-ci-tc.services.mozilla.com +firefox.settings.services.mozilla.com +lando.services.mozilla.com +merino.services.mozilla.com +mozilla-pontoon-staging.herokuapp.com +phabricator.allizom.org +push.services.mozilla.com +sync.services.mozilla.com diff --git a/src/mozilla/note.txt b/src/mozilla/note.txt new file mode 100644 index 0000000..7d26484 --- /dev/null +++ b/src/mozilla/note.txt @@ -0,0 +1 @@ +61236 https://hackerone.com/mozilla Mozilla mozilla diff --git a/src/mozilla_core_services/OTHER.txt b/src/mozilla_core_services/OTHER.txt new file mode 100644 index 0000000..99afacf --- /dev/null +++ b/src/mozilla_core_services/OTHER.txt @@ -0,0 +1,2 @@ +Mozilla VPN Clients +Product Delivery diff --git a/src/mozilla_core_services/URL.txt b/src/mozilla_core_services/URL.txt new file mode 100644 index 0000000..12e6880 --- /dev/null +++ b/src/mozilla_core_services/URL.txt @@ -0,0 +1,32 @@ +developer.mozilla.org +profiler.firefox.com +vpn.mozilla.org +relay.firefox.com +monitor.firefox.com +hubs.mozilla.com +uploads-prod.reticulum.io +api.profiler.firefox.com +hello.dev.myhubs.net +www.mozilla.org +getpocket.com +support.mozilla.org +hg.mozilla.org +stage.taskcluster.nonprod.cloudops.mozgcp.net +community-tc.services.mozilla.com +monitor.mozilla.org +addons.allizom.org +accounts.firefox.com +shavar.services.mozilla.com +aus5.mozilla.org +bugzilla.mozilla.org +contile.services.mozilla.com +crash-reports.allizom.org +crash-stats.allizom.org +firefox-ci-tc.services.mozilla.com +firefox.settings.services.mozilla.com +lando.services.mozilla.com +merino.services.mozilla.com +mozilla-pontoon-staging.herokuapp.com +phabricator.allizom.org +push.services.mozilla.com +sync.services.mozilla.com diff --git a/src/mozilla_core_services/note.txt b/src/mozilla_core_services/note.txt new file mode 100644 index 0000000..7a976c2 --- /dev/null +++ b/src/mozilla_core_services/note.txt @@ -0,0 +1,2 @@ +61236 https://hackerone.com/mozilla_core_services Mozilla Core Services mozilla_core_services +61236 https://hackerone.com/mozilla_core_services Mozilla mozilla_core_services diff --git a/src/mozilla_critical_services/APPLE_STORE_APP_ID.txt b/src/mozilla_critical_services/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..138c1de --- /dev/null +++ b/src/mozilla_critical_services/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +com.ideashower.ReadItLaterPro diff --git a/src/mozilla_critical_services/GOOGLE_PLAY_APP_ID.txt b/src/mozilla_critical_services/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..e65ab36 --- /dev/null +++ b/src/mozilla_critical_services/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.ideashower.readitlater.pro diff --git a/src/mozilla_critical_services/OTHER.txt b/src/mozilla_critical_services/OTHER.txt new file mode 100644 index 0000000..99afacf --- /dev/null +++ b/src/mozilla_critical_services/OTHER.txt @@ -0,0 +1,2 @@ +Mozilla VPN Clients +Product Delivery diff --git a/src/mozilla_critical_services/URL.txt b/src/mozilla_critical_services/URL.txt new file mode 100644 index 0000000..faa23d5 --- /dev/null +++ b/src/mozilla_critical_services/URL.txt @@ -0,0 +1,19 @@ +addons.allizom.org +accounts.firefox.com +bugzilla.mozilla.org +phabricator.services.mozilla.com +contile.services.mozilla.com +merino.services.mozilla.com +firefox.settings.services.mozilla.com +aus5.mozilla.org +location.services.mozilla.com +sync.services.mozilla.com +push.services.mozilla.com +crash-reports.allizom.org +crash-stats.allizom.org +hg.mozilla.org +lando.services.mozilla.com +firefox-ci-tc.services.mozilla.com +mozilla-pontoon-staging.herokuapp.com +shavar.services.mozilla.com +phabricator.allizom.org diff --git a/src/mozilla_critical_services/note.txt b/src/mozilla_critical_services/note.txt new file mode 100644 index 0000000..d1ad34c --- /dev/null +++ b/src/mozilla_critical_services/note.txt @@ -0,0 +1 @@ +63475 https://hackerone.com/mozilla_critical_services Mozilla Critical Services mozilla_critical_services diff --git a/src/msd/OTHER.txt b/src/msd/OTHER.txt new file mode 100644 index 0000000..7bac035 --- /dev/null +++ b/src/msd/OTHER.txt @@ -0,0 +1 @@ +All other applications (web sites, web applications, web services, and mobile applications) owned by Merck & Co., Inc., Rahway, NJ, USA diff --git a/src/msd/URL.txt b/src/msd/URL.txt new file mode 100644 index 0000000..5958bdc --- /dev/null +++ b/src/msd/URL.txt @@ -0,0 +1,2 @@ +*.merck.com +*.msd.com diff --git a/src/msd/note.txt b/src/msd/note.txt new file mode 100644 index 0000000..1cef6b9 --- /dev/null +++ b/src/msd/note.txt @@ -0,0 +1 @@ +6000 https://hackerone.com/msd Merck & Co., Inc., Rahway, NJ, USA msd diff --git a/src/mtb/APPLE_STORE_APP_ID.txt b/src/mtb/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..d9f459d --- /dev/null +++ b/src/mtb/APPLE_STORE_APP_ID.txt @@ -0,0 +1,5 @@ +397761931 +1460176225 +884242294 +1449758462 +884228815 diff --git a/src/mtb/GOOGLE_PLAY_APP_ID.txt b/src/mtb/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..cc1f5e8 --- /dev/null +++ b/src/mtb/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1,3 @@ +com.mtb.mbanking.sc.retail.prod +com.mtb.mobilebanking.ncr +com.mts.webtrading diff --git a/src/mtb/URL.txt b/src/mtb/URL.txt new file mode 100644 index 0000000..e06bd04 --- /dev/null +++ b/src/mtb/URL.txt @@ -0,0 +1,4 @@ +*.mtb.com +*.wilmingtontrust.com +*.trustnota.com +*.leafnow.com diff --git a/src/mtb/note.txt b/src/mtb/note.txt new file mode 100644 index 0000000..25e9596 --- /dev/null +++ b/src/mtb/note.txt @@ -0,0 +1 @@ +51968 https://hackerone.com/mtb M&T Bank Vulnerability Disclosure mtb diff --git a/src/mtn_group/OTHER.txt b/src/mtn_group/OTHER.txt new file mode 100644 index 0000000..2435bb6 --- /dev/null +++ b/src/mtn_group/OTHER.txt @@ -0,0 +1,6 @@ +nlaolsrvq02.mtn.co.za:8006/rest/atg/v1/device/mtnsite +portals-preprod.mtn.co.za:443 +mtnid-preprod.mtn.co.za:443 +http://nlaussrvu01:9982/ +http://jhmcgwrva01:8080 +http://flaeblrvd09:15002/ebilling-qa-ui/-1    diff --git a/src/mtn_group/URL.txt b/src/mtn_group/URL.txt new file mode 100644 index 0000000..4bb152e --- /dev/null +++ b/src/mtn_group/URL.txt @@ -0,0 +1,474 @@ +mtn.com +Mtn.co.za +Mtn.com.af +Mtn.bj +Mtn.cm +Mtncameroon.net +Mtncongo.net +Mtn.ci +Mtn.com.gh +Areeba.com.gn +Irancell.ir +Lonestarcell.com +Mtnonline.com +Mtn.co.rw +Mtn.sd +Mtn.co.sz +Mtn.co.ug +Mtn.com.ye +Mtnzambia.co.zm +Mtnbusiness.com +Mtnbusiness.com.ng +Mtnblog.co.za +Mtnplay.co.za +Mtnzakhele.co.za +mtnselfcare.co.zm +mtnplay.co.zm +mtngbissau.com +www.mtn.zm +mtnloaded.co.za +mtn-sa.com +yellomtn.com +mtn-ssd.com +mtngroup.com +mtnonlineservices.com +mascom.co.bw +upk.mtn.com +ebs.mtn.com +wc.mtn.com +ofr.mtn.com +oddc.mtn.com +grc-aacg.mtn.com +oam.mtn.com +grc-ccg.mtn.com +ascp.mtn.com +soa.mtn.com +mtnglobalconnect.com +mtnrewards.com +mtncareersonline.com +mtnbusiness.net +int.mtnbusiness.net +mtn-ic.com +mtngame.net +www.mtnbanking.com +mtnspptylimited.net +mtnholdings.org +mtnholdingsptylimited.biz +mtnchampionship.com +mtnplayonline.com +mtnptylimited.com +mtn-weca.com +mtnsecure.com +mtnns.net +mtn.mobi +mtn-investor.com +mtnbusiness.com +move2mtn.com +mtnhostedservices.com +mtnhostedservices.net +mtnonlineservices.net +mtnhostedservices.mobi +mtnonlineservices.mobi +mtnlibmusic.com +www.mtn.com +mtngb.com +mtn.wiki +usermtn.com +mtninternet.com +mtnmobiletv.com +mtnniger.com +mtnuktopup.com +mtnonlinepromo.com +mtnmoney.com +mtnpromocard.com +mtnfinancialservices.com +mtnzakhele.tel +mtntopup.com +mtnmmo.com +mtnholdings.com +mtnbirthdays.com +mtnupgrade.mobi +mtnselfserviceonline.com +mtnconnect.com +mtndownloads.com +mtnfrontrow.com +promobymtn.com +mtnbusiness.tel +mtnmobilemoney.us +mtnappstore.com +mtnmail.org +mtnanytimetopup.com +mtnsms.net +mtn-global.com +mtnpromobonus.com +mtnrates.com +mtnprojectfamewestafrica.com +mtncsms.com +mtnzakhele.net +mtnusatopup.com +mtni.net +mtninsurance.com +mtnmobilemoney.net +mtnns.com +mtnvoicemail.com +mtn.hosting +mtn.network +mtnprojectfame.com +mtnglobaltopup.com +mtnlite.com +mtnplay-ssd.com +mymtnapps.com +mtnpaid.com +mtnmusiconline.com +mtn.tel +mtnglobalrecharge.com +mtnpromoloaded.com +mtnbusiness.mobi +mtneasy.com +mtn-global.net +mtnpays.com +mtnfinancialsolutions.net +mtncallertunes.com +mtnhelloworld.com +mtnpulse.com +mtnadvertising.com +mtnsurprisepromo.com +mtnmobilemassage.com +mtnzakhele.com +mtn.host +mtnxmasoffer.com +mtnwebtransfer.com +mtnpreview.com +mtnayoba.com +mtnpins.com +mtnfreepromo.com +mtnbanking.com +mtntelecom.com +mtninsure.com +mtn-ns.net +mtnmail.tel +mtnyellomail.com +mtnghonlineservices.mobi +mtnfastmail.com +mtn.software +mtnonlineplay.com +mtnonlineloaded.com +mtnmena.com +mtncompass.mobi +mtnbussiness.com +mtnsp.mobi +mtnnconnectstore.com +mtn50.com +mtnpulse.tel +mtnholdingsptyltd.com +mtn131.com +mtnmobilecity.com +mtn-eschool.com +mtnmail.mobi +mtnmobilemoney.com +mtncloud.com +mtnmobility.net +mtnptylimited.net +mtnfull.com +mymtn-promo.com +mtnngprs.com +mtnrecharge.com +mtnbonus.com +mtninternational.net +mtnapps.net +mtnholdings.net +mtnddns.net +mtnmobileoffice.com +mtnholdingsptylimited.com +mtneurotopup.com +mtnholdingsptylimited.net +mtnplay.net +mtnconnectng.net +mtnholdingsptyltd.net +mtnatwork.com +mtnglobalconnect.net +mtndeveloper.com +yelloworld.com +mtnglobaltopup.net +mtncalls.com +mtnbanking.net +mtnhomeland.com +mtnconectng.net +mtn.net +mtnsoccer.com +yellobroadband.com +yellotalk.com +mtnoffer.com +mtnringtones.com +mymobilemoneyng.com +mtnrank.com +yellomonitoring.ir +mtnfantasyleague.com +yellobroadband.net +yelloafrica.com +mtnoverseastopup.com +mtngaming.com +hotmtnpromo.com +mtnsp.com +mtnfinancialsolutions.com +mtnplayasyougo.mobi +mtneuropeantopup.com +mtnepresence.com +mtnairborn.com +mtn-universal-topup.com +mtnonlineoffer.com +mtnhelloworld.net +mtnwireless.net +mtndownload.com +mtnpromosite.com +mtnglobalservices.com +mtnhelloworld.mobi +novafone.com.lr +areeba.com.gh +jolie.ir +achom.ir +worldcom.co.bw +equitygroup.africa +imarikafoundation.org +tpskenya.co.ke +krysandchris.co.ke +ms-df.com +aimco.co.ke +vipresecurity.co.bw +bambonline.co.bw +bomaid.co.bw +redire.co.bw +simbani.co.bw +bhp.org.bw +seza.co.bw +faulucareers.co.ke +sharehub.co.ke +equity-group.org +silobreaks.co.ke +irancel.ir +mtnsouthafricatopup.com +mtnsouthafrica.net +mtnspotlight.com +mtnmailsync.com +mtn.so +mtnss.com +mtn.fail +mtnseasonoffer.com +mtn.digital +mtneasy.net +mtn.global +mtn.business +mtn.media +mtn.wtf +mtnrechargelink.com +mtnretail.com +mtntopup.net +mtngo.durban +mtngo.capetown +mtngo.net +mtngo.joburg +mtngo.mtn +mtngroup.tel +mtngroupltd.net +mtngrouplimited.com +mtngrouplimited.net +lonestarcell.org +yellolearn.co.bw +mtngh.com +p6analytics.mtn.com +eppm.mtn.com +bi-ebs.mtn.com +epm.mtn.com +fs-prdfus.mtn.com +uni.mtn.com +ecap.mtn.com +isupplier.mtn.com +MoMo-App01.mtn.com.af +MoMo-App02.mtn.com.af +MoMo-staging.mtn.com.af +MoMo-Reporting.mtn.com.af +gh-pr-db01.mtngh.root.net +gh-pr-db02.mtngh.root.net +AC2-myMTN-DB01.mtngh.root.net +AC2-myMTN-DB02.mtngh.root.net +gh-pr-rpt01.mtn.com.gh +ac1-mymtn-app01.mtngh.root.net +AC1-myMTN-APP02.mtngh.root.net +ac1-mymtn-stg.mtngh.root.net +ac1-mymtn-rpt01.mtngh.root.net +AC1-myMTN-RPTDB.mtngh.root.net +AC1-myMTN-APP03.mtngh.root.net +ac2-mymtn-app01.mtngh.root.net +ac2-mymtn-app02.mtngh.root.net +AC2-myMTN-APP03.mtngh.root.net +ac2-mymtn-rpt01.mtngh.root.net +ac2-mymtn-db-01.mtngh.root.net +ac2-mymtn-db-02.mtngh.root.net +ac1-mymtn-db-01.mtngh.root.net +ac1-mymtn-db-02.mtngh.root.net +AC2-myMTN-APP05.mtngh.root.net +AC2-myMTN-APP04.mtngh.root.net +NLAMYARVA01.mtn.co.za +NLAMYARVA02.mtn.co.za +FLAMYARVS01.mtn.co.za +FLAMYARVS02.mtn.co.za +NLAMYARVU01.mtn.co.za +FLAMYARVD01.mtn.co.za +FLAMYARVB01.mtn.co.za +FLAMYARVB02.mtn.co.za +FLAMYARVS09.mtn.co.za +FLAMYARVS10.mtn.co.za +FLAMYARVT01.mtn.co.za +NLDMYARVA01.mtn.co.za +NLDMYARVA02.mtn.co.za +FLDMYARVB01.mtn.co.za +FLDMYARVB02.mtn.co.za +https://ringtune.mtn.co.za/ +https://dep.mtn.co.za/ +https://www.mtn.co.za/home/help/content/mtn-chat +https://www.mtn.co.za/Pages/esim.aspx +http://nlaolsrvq02.mtn.co.za:8006/rest/atg/v1/device/MTNSite +https://ringtune.mtn.co.za +https://www.mtn.co.za/home/pulse/ +https://www.evod.co.za +http://gamerplus.mtn.co.za +https://www.mtn.co.za/shop/deals/devices +https://portals-preprod.mtn.co.za:443 +https://www.mtn.co.za/shop/upgrades/ +https://www.mtn.co.za/gobozza +https://www.mtn.co.za/home/ +https://digitalpartners.mtn.co.za/ +https://www.mtn.co.za/insurance/ +https://www.mtn.co.za/insurance/claims +https://www.mtn.co.za/insurance/device-cover/ +https://nofunds.mtn.co.za/ +https://econnect-preprod.mtn.co.za/business/employee-connect +https://www.mtn.co.za/business/self-service/login +https://www.mtn.co.za/shop/deals/devices/prepaid +https://www.mtn.co.za/business/ebu-prepaid/agent +https://www.mtn.co.za/business/shop/login +https://mtnapp.mtn.co.za +https://mtnid-preprod.mtn.co.za:443 +www.mtn.co.za/business/ebu-prepaid/agent +www.mtn.co.za/business/shop/login +www.mtnbusiness.co.za/ +www.mtn.co.za/home/blackfriday/perl/io +www.mtnbusiness.co.za/en/Pages/MSTeams-Direct-Routing.aspx/43331 +https://portalsso.mtn.co.za +https://www.mtn.co.za/recharge/ +https://mycontract.mtn.co.za/landing/landing +https://www.mtn.co.za/shop/new/ +https://www.mtn.co.za/shop/addlines/ +https://play.mtn.co.za +https://www.mtnbusiness.co.za/ +https://www.mtn.co.za/home/blackfriday/perl/io +https://www.mtnbusiness.co.za/en/Pages/MSTeams-Direct-Routing.aspx/43331 +https://portalsso.mtn.co.za/ +mtn.co.za +mtn.com.af +mtn.bj +mtn.cm +mtncameroon.net +mtncongo.net +mtn.ci +mtn.com.gh +irancell.ir +lonestarcell.com +mtnonline.com +mtn.co.rw +mtn.sd +mtn.co.sz +mtn.co.ug +mtnzambia.co.zm +mtnbusiness.com.ng +mtnblog.co.za +mtnplay.co.za +mtnzakhele.co.za +momo-app01.mtn.com.af +momo-app02.mtn.com.af +momo-staging.mtn.com.af +momo-reporting.mtn.com.af +ac2-mymtn-db01.mtngh.root.net +ac2-mymtn-db02.mtngh.root.net +ac1-mymtn-app02.mtngh.root.net +ac1-mymtn-rptdb.mtngh.root.net +ac1-mymtn-app03.mtngh.root.net +ac2-mymtn-app03.mtngh.root.net +ac2-mymtn-app05.mtngh.root.net +ac2-mymtn-app04.mtngh.root.net +nlamyarva01.mtn.co.za +nlamyarva02.mtn.co.za +flamyarvs01.mtn.co.za +flamyarvs02.mtn.co.za +nlamyarvu01.mtn.co.za +flamyarvd01.mtn.co.za +flamyarvb01.mtn.co.za +flamyarvb02.mtn.co.za +flamyarvs09.mtn.co.za +flamyarvs10.mtn.co.za +flamyarvt01.mtn.co.za +nldmyarva01.mtn.co.za +nldmyarva02.mtn.co.za +fldmyarvb01.mtn.co.za +fldmyarvb02.mtn.co.za +ringtune.mtn.co.za +dep.mtn.co.za +https://www.mtn.co.za/pages/esim.aspx +www.evod.co.za +gamerplus.mtn.co.za +digitalpartners.mtn.co.za +nofunds.mtn.co.za +mtnapp.mtn.co.za +http://www.mtn.co.za/business/ebu-prepaid/agent +http://www.mtn.co.za/business/shop/login +www.mtnbusiness.co.za +http://www.mtn.co.za/home/blackfriday/perl/io +http://www.mtnbusiness.co.za/en/pages/msteams-direct-routing.aspx/43331 +portalsso.mtn.co.za +play.mtn.co.za +http://nlaolsrvq02.mtn.co.za:8006/rest/atg/v1/device/mtnsite +https://www.mtnbusiness.co.za/en/pages/msteams-direct-routing.aspx/43331 +https://1app.mtn.co.za +https://mtnmomoagent.mtn.co.za/ +https://www.mtn.co.za/home/help/content/bill-and-payments +https://www.mtn.co.za/insurance/portal +http://gamerplus.mtn.co.za/ +https://www.evod.co.za/ +developer.ayoba.me +microapps.ayoba.me +feed.ayoba.me +nofunds-sd.ayoba.me +cms.stg.ayoba.me +invite.ayoba.me +web.stg.ayoba.me +cms.ayoba.me +cms.dev.ayoba.me +devcms.ayoba.me +ayoba.me +status.ayoba.me +trade-api.ayoba.me +trade.ayoba.me +api.ayoba.me +avatar.ayoba.me +media-cms.ayoba.me +sundowns-admin.ayoba.me +web.dev.ayoba.me +cdn.cms.ayoba.me +dynamic-cdn.cms.ayoba.me +games.ayoba.me +proxy.ayoba.me +sms.ayoba.me +stage.ayoba.me +static-cdn.cms.ayoba.me +sync.ayoba.me +voip.ayoba.me +vpn.ayoba.me +web.ayoba.me +simfy.co.za +simfy.africa +musictime.app +progressivetech.holdings +simfyafrica.mobi +ayo.ba +devapi.ayoba.me +ayoba-donations.vercel.app diff --git a/src/mtn_group/note.txt b/src/mtn_group/note.txt new file mode 100644 index 0000000..26f8362 --- /dev/null +++ b/src/mtn_group/note.txt @@ -0,0 +1 @@ +41919 https://hackerone.com/mtn_group MTN Group mtn_group diff --git a/src/myetherwallet/APPLE_STORE_APP_ID.txt b/src/myetherwallet/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..2cf5177 --- /dev/null +++ b/src/myetherwallet/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +mewwallet.ios diff --git a/src/myetherwallet/GOOGLE_PLAY_APP_ID.txt b/src/myetherwallet/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..a5b88be --- /dev/null +++ b/src/myetherwallet/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +mewwallet.android diff --git a/src/myetherwallet/SOURCE_CODE.txt b/src/myetherwallet/SOURCE_CODE.txt new file mode 100644 index 0000000..fd9099e --- /dev/null +++ b/src/myetherwallet/SOURCE_CODE.txt @@ -0,0 +1,2 @@ +mewcx.chrome.extension +enkrypt.browser.extension diff --git a/src/myetherwallet/URL.txt b/src/myetherwallet/URL.txt new file mode 100644 index 0000000..b0165f9 --- /dev/null +++ b/src/myetherwallet/URL.txt @@ -0,0 +1 @@ +www.myetherwallet.com diff --git a/src/myetherwallet/note.txt b/src/myetherwallet/note.txt new file mode 100644 index 0000000..a514937 --- /dev/null +++ b/src/myetherwallet/note.txt @@ -0,0 +1 @@ +53044 https://hackerone.com/myetherwallet MyEtherWallet myetherwallet diff --git a/src/myndr/URL.txt b/src/myndr/URL.txt new file mode 100644 index 0000000..c1075b5 --- /dev/null +++ b/src/myndr/URL.txt @@ -0,0 +1,4 @@ +osd.myndr.nl +*.myndr.net +www.myndr.nl +*.myndr.nl diff --git a/src/myndr/WILDCARD.txt b/src/myndr/WILDCARD.txt new file mode 100644 index 0000000..73a5f6e --- /dev/null +++ b/src/myndr/WILDCARD.txt @@ -0,0 +1,4 @@ +http://*.myndr.net +http://*.myndr.nl +*.myndr.net +*.myndr.nl diff --git a/src/myndr/note.txt b/src/myndr/note.txt new file mode 100644 index 0000000..02207aa --- /dev/null +++ b/src/myndr/note.txt @@ -0,0 +1 @@ +44612 https://hackerone.com/myndr Myndr myndr diff --git a/src/n45ht/URL.txt b/src/n45ht/URL.txt new file mode 100644 index 0000000..1074245 --- /dev/null +++ b/src/n45ht/URL.txt @@ -0,0 +1,8 @@ +n45ht.or.id +ctf.n45ht.or.id +api.n45ht.or.id +xssr.n45ht.or.id +1337.or.id +nusastory.com +wiki.1337.or.id +pansysecurity.com diff --git a/src/n45ht/note.txt b/src/n45ht/note.txt new file mode 100644 index 0000000..cf7ad05 --- /dev/null +++ b/src/n45ht/note.txt @@ -0,0 +1 @@ +46857 https://hackerone.com/n45ht N45HT n45ht diff --git a/src/natur_com_gmbh/URL.txt b/src/natur_com_gmbh/URL.txt new file mode 100644 index 0000000..66a6708 --- /dev/null +++ b/src/natur_com_gmbh/URL.txt @@ -0,0 +1 @@ +www.natur.com diff --git a/src/natur_com_gmbh/note.txt b/src/natur_com_gmbh/note.txt new file mode 100644 index 0000000..e9edefc --- /dev/null +++ b/src/natur_com_gmbh/note.txt @@ -0,0 +1 @@ +40482 https://hackerone.com/natur_com_gmbh Natur.com GmbH natur_com_gmbh diff --git a/src/navient_solutions/CIDR.txt b/src/navient_solutions/CIDR.txt new file mode 100644 index 0000000..2510192 --- /dev/null +++ b/src/navient_solutions/CIDR.txt @@ -0,0 +1,2 @@ +167.104.0.0/16 +207.250.125.0/28 diff --git a/src/navient_solutions/URL.txt b/src/navient_solutions/URL.txt new file mode 100644 index 0000000..32e9b80 --- /dev/null +++ b/src/navient_solutions/URL.txt @@ -0,0 +1,21 @@ +myaccount.navirefi.com +dspayments.com/* +www.pamcollections.com +www.pampayments.com +www.msbpay.com +www.msbnexus.com +admin.msbnexus.navient.com +sandiego.dsmyportal.com +msbpay.com +dsparkingportal.com +duncan.imageenforcement.com +www.pamcollectionsin.com +sandiegoadmin.dsmyportal.com +www.nystapayment.com +onlineserviceshub.com +temp.msbpay.com +temp.msbnexus.com +payments.msbpay.navient.com +www.navirefi.com +apply2.navirefi.com +wsmb2bresv.navient.com diff --git a/src/navient_solutions/note.txt b/src/navient_solutions/note.txt new file mode 100644 index 0000000..5675ea8 --- /dev/null +++ b/src/navient_solutions/note.txt @@ -0,0 +1 @@ +45827 https://hackerone.com/navient_solutions Navient Solutions LLC navient_solutions diff --git a/src/nba-vdp/URL.txt b/src/nba-vdp/URL.txt new file mode 100644 index 0000000..8e73459 --- /dev/null +++ b/src/nba-vdp/URL.txt @@ -0,0 +1,97 @@ +nba.com +wnba.com +2kleague.nba.com +bal.nba.com +cdn.nba.com +content-api-prod.nba.com +core-api.nba.com +gleague.nba.com +identity.nba.com +stats-trafficcop-prod.nba.com +teamportal.nba.com +76ersgc.nba.com +austin.gleague.nba.com +birmingham.gleague.nba.com +blazer5gaming.nba.com +bluecoats.gleague.nba.com +bucksgaming.nba.com +capitalcity.gleague.nba.com +capitanes.gleague.nba.com +cavslegion.nba.com +cdn-bal.nba.com +cdn.gleague.nba.com +celticscrossover.nba.com +cleveland.gleague.nba.com +cms.nba.com +content-api-nextgen-prod.nba.com +cpskyhawks.gleague.nba.com +cweb-ott.nba.com +detroit.gleague.nba.com +duxinfinitos.nba.com +fortwayne.gleague.nba.com +gengtigers.nba.com +global.nba.com +gom.ngss.nba.com +grandrapids.gleague.nba.com +greensboro.gleague.nba.com +grizzgaming.nba.com +hawkstalon.nba.com +heatcheck.nba.com +hornetsvenomgt.nba.com +id.nba.com +ignite.gleague.nba.com +iowa.gleague.nba.com +jazzgaming.nba.com +kingsguard.nba.com +knicksgaming.nba.com +lakersgaming.nba.com +lockervision.nba.com +longisland.gleague.nba.com +magicgaming.nba.com +maine.gleague.nba.com +manage.nba.com +mavsgaming.nba.com +mcd.nba.com +memphis.gleague.nba.com +nblozgaming.nba.com +netsgc.nba.com +oklahomacity.gleague.nba.com +ontario.gleague.nba.com +osceola.gleague.nba.com +pacersgaming.nba.com +pistonsgt.nba.com +raptors905.gleague.nba.com +raptorsuprising.nba.com +riograndevalley.gleague.nba.com +ripcity.gleague.nba.com +saltlakecity.gleague.nba.com +santacruz.gleague.nba.com +siouxfalls.gleague.nba.com +southbay.gleague.nba.com +stats.gleague.nba.com +stats.nba.com +stockton.gleague.nba.com +syndication.nba.com +texas.gleague.nba.com +transfers.nba.com +transmissions.nba.com +twolvesgaming.nba.com +varnish.nba.com +warriorsgs.nba.com +westchester.gleague.nba.com +windycity.gleague.nba.com +wisconsin.gleague.nba.com +wizardsdg.nba.com +aces.wnba.com +dream.wnba.com +fever.wnba.com +liberty.wnba.com +lynx.wnba.com +mercury.wnba.com +mystics.wnba.com +sky.wnba.com +sparks.wnba.com +stats.wnba.com +storm.wnba.com +sun.wnba.com +wings.wnba.com diff --git a/src/nba-vdp/note.txt b/src/nba-vdp/note.txt new file mode 100644 index 0000000..fbe7dff --- /dev/null +++ b/src/nba-vdp/note.txt @@ -0,0 +1 @@ +36246 https://hackerone.com/nba-vdp NBA nba-vdp diff --git a/src/netflix/APPLE_STORE_APP_ID.txt b/src/netflix/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..ebfa747 --- /dev/null +++ b/src/netflix/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +Netflix Mobile Application for iOS diff --git a/src/netflix/GOOGLE_PLAY_APP_ID.txt b/src/netflix/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..f00f620 --- /dev/null +++ b/src/netflix/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +Netflix Mobile Application for Android diff --git a/src/netflix/OTHER.txt b/src/netflix/OTHER.txt new file mode 100644 index 0000000..e8d8590 --- /dev/null +++ b/src/netflix/OTHER.txt @@ -0,0 +1,13 @@ +Corporate Assets +Open Source - Consoleme +Open Source - Weep +Open Source - Zuul +Microsites +Open Source - Spectator +Secondary Assets +Content Authorization Targets +Open Source - Dispatch +Affiliates or entities such as recently acquired companies +Content authorization vulnerabilities affecting only the in-browser player +Low impact, individually exposed Google Docs with no common root cause (see “Publicly accessible Google Document or Drive Links” in the “Corporate Targets” section) +Netflix Gaming Target diff --git a/src/netflix/SOURCE_CODE.txt b/src/netflix/SOURCE_CODE.txt new file mode 100644 index 0000000..6733756 --- /dev/null +++ b/src/netflix/SOURCE_CODE.txt @@ -0,0 +1 @@ +Open Source - Atlas diff --git a/src/netflix/URL.txt b/src/netflix/URL.txt new file mode 100644 index 0000000..6fe69e0 --- /dev/null +++ b/src/netflix/URL.txt @@ -0,0 +1,9 @@ +www.netflix.com +beacon.netflix.com +customerevents.netflix.com +secure.netflix.com +help.netflix.com +ichnaea.netflix.com +presentationtracking.netflix.com +nmtracking.netflix.com +meechum.netflix.com diff --git a/src/netflix/WILDCARD.txt b/src/netflix/WILDCARD.txt new file mode 100644 index 0000000..0427b9e --- /dev/null +++ b/src/netflix/WILDCARD.txt @@ -0,0 +1,9 @@ +*.nflxext.com +api*.netflix.com +*.prod.ftl.netflix.com +*.prod.cloud.netflix.com +*.nflxvideo.net +*.prod.dradis.netflix.com +*.nflximg.net +*.nflxso.net +*.nlfxvideo.net diff --git a/src/netflix/note.txt b/src/netflix/note.txt new file mode 100644 index 0000000..68641d7 --- /dev/null +++ b/src/netflix/note.txt @@ -0,0 +1 @@ +75285 https://hackerone.com/netflix Netflix netflix diff --git a/src/netlify/URL.txt b/src/netlify/URL.txt new file mode 100644 index 0000000..5e2eb84 --- /dev/null +++ b/src/netlify/URL.txt @@ -0,0 +1,15 @@ +app.netlify.com +api.netlify.com +*.services.netlify.com +*.services-prod.nsvcs.net +internal.netlify.com +*.infra-prod.nsvcs.net +*.ops.netlify.com +netlify-cdp-loader.netlify.app +*.onegraph.com +screenshot-proxy.netlify.app +netlify-rum.netlify.app +list-v2--netlify-plugins.netlify.app +internal-docs.netlify.com +supportal.netlify.app +www.netlifycms.org diff --git a/src/netlify/WILDCARD.txt b/src/netlify/WILDCARD.txt new file mode 100644 index 0000000..343c103 --- /dev/null +++ b/src/netlify/WILDCARD.txt @@ -0,0 +1,10 @@ +http://*.services.netlify.com +http://*.services-prod.nsvcs.net +http://*.infra-prod.nsvcs.net +http://*.ops.netlify.com +http://*.onegraph.com +*.services.netlify.com +*.services-prod.nsvcs.net +*.infra-prod.nsvcs.net +*.ops.netlify.com +*.onegraph.com diff --git a/src/netlify/note.txt b/src/netlify/note.txt new file mode 100644 index 0000000..668421e --- /dev/null +++ b/src/netlify/note.txt @@ -0,0 +1 @@ +22962 https://hackerone.com/netlify Netlify netlify diff --git a/src/newegg/WILDCARD.txt b/src/newegg/WILDCARD.txt new file mode 100644 index 0000000..390a431 --- /dev/null +++ b/src/newegg/WILDCARD.txt @@ -0,0 +1,2 @@ +http://*.newegg.com +http://*.newegg.ca diff --git a/src/newegg/note.txt b/src/newegg/note.txt new file mode 100644 index 0000000..7773dc6 --- /dev/null +++ b/src/newegg/note.txt @@ -0,0 +1 @@ +53211 https://hackerone.com/newegg Newegg newegg diff --git a/src/newrelic/APPLE_STORE_APP_ID.txt b/src/newrelic/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..2aa370e --- /dev/null +++ b/src/newrelic/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +com.newrelic.NRApp diff --git a/src/newrelic/DOWNLOADABLE_EXECUTABLES.txt b/src/newrelic/DOWNLOADABLE_EXECUTABLES.txt new file mode 100644 index 0000000..b857263 --- /dev/null +++ b/src/newrelic/DOWNLOADABLE_EXECUTABLES.txt @@ -0,0 +1,13 @@ +Infrastructure agents +Go agent +Node.js agent +Ruby agent +Unity agent +PHP agent +.NET agent +.NET Core agent +Java agent +Python agent +Browser agent +Android agent +iOS agent diff --git a/src/newrelic/GOOGLE_PLAY_APP_ID.txt b/src/newrelic/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..671351f --- /dev/null +++ b/src/newrelic/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.newrelic.rpm diff --git a/src/newrelic/OTHER.txt b/src/newrelic/OTHER.txt new file mode 100644 index 0000000..9def2ff --- /dev/null +++ b/src/newrelic/OTHER.txt @@ -0,0 +1,2 @@ +Synthetics minions (public and private) +Agent traffic diff --git a/src/newrelic/URL.txt b/src/newrelic/URL.txt new file mode 100644 index 0000000..a542285 --- /dev/null +++ b/src/newrelic/URL.txt @@ -0,0 +1,28 @@ +*.newrelic.com +infrastructure.newrelic.com +*.infrastructure.newrelic.com +*.infrastructure-data.newrelic.com +synthetics.newrelic.com +alerts.newrelic.com +docs.newrelic.com +support.newrelic.com +discuss.newrelic.com +blog.newrelic.com +learn.newrelic.com +*.blog.newrelic.com +insights.newrelic.com +insights.eu.newrelic.com +infrastructure.eu.newrelic.com +synthetics.eu.newrelic.com +rpm.newrelic.com/accounts/*/mobile +rpm.eu.newrelic.com/accounts/*/mobile +alerts.eu.newrelic.com +*.eu.newrelic.com +login.newrelic.com +rpm.newrelic.com/accounts/*/browser +rpm.eu.newrelic.com/accounts/*/browser +developer.newrelic.com +rpm.newrelic.com +one.newrelic.com +*.nr-data.net +*.nr-ops.net diff --git a/src/newrelic/WILDCARD.txt b/src/newrelic/WILDCARD.txt new file mode 100644 index 0000000..c5e4d31 --- /dev/null +++ b/src/newrelic/WILDCARD.txt @@ -0,0 +1,22 @@ +http://*.newrelic.com +http://*.infrastructure.newrelic.com +http://*.infrastructure-data.newrelic.com +http://*.blog.newrelic.com +http://rpm.newrelic.com/accounts/*/mobile +http://rpm.eu.newrelic.com/accounts/*/mobile +http://*.eu.newrelic.com +http://rpm.newrelic.com/accounts/*/browser +http://rpm.eu.newrelic.com/accounts/*/browser +http://*.nr-data.net +http://*.nr-ops.net +*.newrelic.com +*.infrastructure.newrelic.com +*.infrastructure-data.newrelic.com +*.blog.newrelic.com +rpm.newrelic.com/accounts/*/mobile +rpm.eu.newrelic.com/accounts/*/mobile +*.eu.newrelic.com +rpm.newrelic.com/accounts/*/browser +rpm.eu.newrelic.com/accounts/*/browser +*.nr-data.net +*.nr-ops.net diff --git a/src/newrelic/note.txt b/src/newrelic/note.txt new file mode 100644 index 0000000..4d08e87 --- /dev/null +++ b/src/newrelic/note.txt @@ -0,0 +1 @@ +17011 https://hackerone.com/newrelic New Relic newrelic diff --git a/src/nextcloud/APPLE_STORE_APP_ID.txt b/src/nextcloud/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..983f221 --- /dev/null +++ b/src/nextcloud/APPLE_STORE_APP_ID.txt @@ -0,0 +1,3 @@ +it.twsweb.Nextcloud +com.nextcloud.Talk +com.peterandlinda.iOCNotes diff --git a/src/nextcloud/DOWNLOADABLE_EXECUTABLES.txt b/src/nextcloud/DOWNLOADABLE_EXECUTABLES.txt new file mode 100644 index 0000000..691b707 --- /dev/null +++ b/src/nextcloud/DOWNLOADABLE_EXECUTABLES.txt @@ -0,0 +1 @@ +Desktop Client diff --git a/src/nextcloud/GOOGLE_PLAY_APP_ID.txt b/src/nextcloud/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..7270493 --- /dev/null +++ b/src/nextcloud/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1,3 @@ +com.nextcloud.client +com.nextcloud.talk2 +it.niedermann.owncloud.notes diff --git a/src/nextcloud/SOURCE_CODE.txt b/src/nextcloud/SOURCE_CODE.txt new file mode 100644 index 0000000..b1bb471 --- /dev/null +++ b/src/nextcloud/SOURCE_CODE.txt @@ -0,0 +1,63 @@ +nextcloud/server +nextcloud/activity +nextcloud/files_accesscontrol +nextcloud/3rdparty +nextcloud/files_pdfviewer +nextcloud/files_texteditor +nextcloud/firstrunwizard +nextcloud/notifications +nextcloud/password_policy +nextcloud/user_saml +nextcloud/files_automatedtagging +nextcloud/files_retention +nextcloud/serverinfo +nextcloud/nextcloud_announcements +nextcloud/logreader +nextcloud/survey_client +nextcloud/updater +nextcloud/spreed +nextcloud/photos +nextcloud/mail +nextcloud/files_rightclick +nextcloud/privacy +nextcloud/recommendations +nextcloud/viewer +nextcloud/text +nextcloud/circles +nextcloud/data_request +nextcloud/files_antivirus +nextcloud/fulltextsearch +daita/files_fulltextsearch_tesseract +nextcloud/flow_notifications +nextcloud/fulltextsearch_elasticsearch +nextcloud/files_fulltextsearch +nextcloud/groupfolders +nextcloud/guests +nextcloud/sharepoint +nextcloud/socialsharing +nextcloud/suspicious_login +nextcloud/terms_of_service +nextcloud/twofactor_totp +nextcloud/twofactor_u2f +nextcloud/user_oidc +nextcloud/workflow_script +nextcloud/calendar +nextcloud/contacts +nextcloud/richdocuments +nextcloud/onlyoffice +nextcloud/end_to_end_encryption +nextcloud/deck +nextcloud/bruteforcesettings +nextcloud/related_resources +nextcloud/approval +nextcloud/files_lock +nextcloud/user_migration +nextcloud/twofactor_webauthn +nextcloud/external +nextcloud/notify_push +nextcloud/calendar_resource_management +nextcloud/globalsiteselector +nextcloud/notes +nextcloud/preferred_providers +https://github.com/roundcube/roundcubemail +https://github.com/nextcloud/files_confidential diff --git a/src/nextcloud/URL.txt b/src/nextcloud/URL.txt new file mode 100644 index 0000000..2cec161 --- /dev/null +++ b/src/nextcloud/URL.txt @@ -0,0 +1,48 @@ +https://updates.nextcloud.com +https://customerupdates.nextcloud.com +https://download.nextcloud.com +https://help.nextcloud.com +https://usercontent.apps.nextcloud.com +https://projects.nextcloud.com +https://lookup.nextcloud.com +https://knowledge.nextcloud.com +https://surveyserver.nextcloud.com +https://static.apps.nextcloud.com +https://apps.nextcloud.com/ +https://docs.nextcloud.com +https://crm.nextcloud.com +https://support.nextcloud.com +https://scan.nextcloud.com/ +https://lists.nextcloud.com +https://portal.nextcloud.com +https://push-notifications.nextcloud.com +https://auth.nextcloud.com +https://logs.nextcloud.com +https://stats.nextcloud.com +https://nextcloud.com +https://pushfeed.nextcloud.com +https://newsletter.nextcloud.com +help.nextcloud.com +usercontent.apps.nextcloud.com +projects.nextcloud.com +lookup.nextcloud.com +knowledge.nextcloud.com +surveyserver.nextcloud.com +static.apps.nextcloud.com +apps.nextcloud.com +updates.nextcloud.com +docs.nextcloud.com +crm.nextcloud.com +support.nextcloud.com +scan.nextcloud.com +lists.nextcloud.com +portal.nextcloud.com +push-notifications.nextcloud.com +customerupdates.nextcloud.com +auth.nextcloud.com +logs.nextcloud.com +stats.nextcloud.com +nextcloud.com +download.nextcloud.com +pushfeed.nextcloud.com +newsletter.nextcloud.com diff --git a/src/nextcloud/note.txt b/src/nextcloud/note.txt new file mode 100644 index 0000000..c7af624 --- /dev/null +++ b/src/nextcloud/note.txt @@ -0,0 +1 @@ +13291 https://hackerone.com/nextcloud Nextcloud nextcloud diff --git a/src/nicehash/APPLE_STORE_APP_ID.txt b/src/nicehash/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..0df41ba --- /dev/null +++ b/src/nicehash/APPLE_STORE_APP_ID.txt @@ -0,0 +1,2 @@ +com.nicehash.mobile +com.nicehash.NiceX diff --git a/src/nicehash/GOOGLE_PLAY_APP_ID.txt b/src/nicehash/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..efa8753 --- /dev/null +++ b/src/nicehash/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1,2 @@ +com.nicehash.metallum +com.metallum.nicex diff --git a/src/nicehash/URL.txt b/src/nicehash/URL.txt new file mode 100644 index 0000000..bebc6a8 --- /dev/null +++ b/src/nicehash/URL.txt @@ -0,0 +1,7 @@ +test.nicehash.com +https://test.nicehash.com/shop/ +https://test.nicex.com +nicex.com +https://api-test.nicex.com +https://api-test.nicehash.com +test.nicex.com diff --git a/src/nicehash/note.txt b/src/nicehash/note.txt new file mode 100644 index 0000000..9a9a6f1 --- /dev/null +++ b/src/nicehash/note.txt @@ -0,0 +1 @@ +63596 https://hackerone.com/nicehash NiceHash nicehash diff --git a/src/nimiq/SOURCE_CODE.txt b/src/nimiq/SOURCE_CODE.txt new file mode 100644 index 0000000..02467d6 --- /dev/null +++ b/src/nimiq/SOURCE_CODE.txt @@ -0,0 +1 @@ +https://github.com/nimiq/core-rs-albatross diff --git a/src/nimiq/note.txt b/src/nimiq/note.txt new file mode 100644 index 0000000..8f52e11 --- /dev/null +++ b/src/nimiq/note.txt @@ -0,0 +1 @@ +79046 https://hackerone.com/nimiq Nimiq nimiq diff --git a/src/nintendo/HARDWARE.txt b/src/nintendo/HARDWARE.txt new file mode 100644 index 0000000..d97b54f --- /dev/null +++ b/src/nintendo/HARDWARE.txt @@ -0,0 +1,2 @@ +Nintendo Switch System +Nintendo Switch applications for which Nintendo is the publisher worldwide diff --git a/src/nintendo/note.txt b/src/nintendo/note.txt new file mode 100644 index 0000000..493f785 --- /dev/null +++ b/src/nintendo/note.txt @@ -0,0 +1 @@ +16634 https://hackerone.com/nintendo Nintendo nintendo diff --git a/src/nisc/OTHER.txt b/src/nisc/OTHER.txt new file mode 100644 index 0000000..14852b5 --- /dev/null +++ b/src/nisc/OTHER.txt @@ -0,0 +1,11 @@ +iVUE AppSuite +iVUE ABS +iVUE CC&B +iVUE Connect +iVUE E&O +iVUE Document Vault +NISC Cloud Portal +NISC Community +NISC Payment Gateway +NISC SmartHub +Capturis Vendor Portal diff --git a/src/nisc/note.txt b/src/nisc/note.txt new file mode 100644 index 0000000..2f0fbcc --- /dev/null +++ b/src/nisc/note.txt @@ -0,0 +1 @@ +31110 https://hackerone.com/nisc NISC-VDP nisc diff --git a/src/nodejs-ecosystem/DOWNLOADABLE_EXECUTABLES.txt b/src/nodejs-ecosystem/DOWNLOADABLE_EXECUTABLES.txt new file mode 100644 index 0000000..6e2879e --- /dev/null +++ b/src/nodejs-ecosystem/DOWNLOADABLE_EXECUTABLES.txt @@ -0,0 +1 @@ +yarn diff --git a/src/nodejs-ecosystem/SOURCE_CODE.txt b/src/nodejs-ecosystem/SOURCE_CODE.txt new file mode 100644 index 0000000..36765be --- /dev/null +++ b/src/nodejs-ecosystem/SOURCE_CODE.txt @@ -0,0 +1,180 @@ +express +body-parser +Other module +serve-here +augustine +lactate +fastify +featurebook +html-pages +serve +html-janitor +angular-http-server +node-srv +hekto +metascrapper +simplehttpserver +general-file-server +anywhere +626 +crud-file-server +localhost-now +mcstatic +public +hoek +lodash +mixin-deep +assign-deep +merge-deep +defaults-deep +resolve-path +stattic +protobufjs +sshpk +typeorm +https-proxy-agent +http-proxy-agent +glance +bracket-template +simple-server +pullit +whereis +metascraper +sexstatic +grunt-serve +buttle +pdfinfojs +m-server +atob +deap +deep-extend +merge-recursive +merge-options +merge-objects +entitlements +cloudcmd +concat-with-sourcemaps +foreman +rgb2hex +superstatic +stringstream +fs-path +command-exists +npmconf +react-marked-markdown +put +getcookies +utile +file-static-server +formidable +canvas +njwt +merge +useragent +ua-parser-js +pdf-image +byte +open +sql +base64url +macaddress +cryo +funcster +express-cart +git-dummy-commit +marked +memjs +express-useragent +markdown-pdf +scrape-metadata +statics-server +exceljs +extend +url-parse +multer +win-spawn +flintcms +egg-scripts +libnmap +ps +cached-path-relative +samsung-remote +apex-publish-static-files +takeapeek +ascii-art +knightjs +bruteser +node-red +samlify +http-live-simulator +node-xlsx +ponse +send +morgan +tianma-static +zombie +flatmap-stream +reveal.js +harp +mpath +node.extend +just-extend +noble +servey +bower +kramed +zlib-browserify +atlasboard-atlassian-package +node-buffer-builder +questor +node-email +http-sync +bufferjs +jQuery +smart-extend +node-tar +pdf-officegen +is-my-json-valid +dot +kill-port +webpack-bundle-analyzer +finalhandler +handlebars +gatsby-remark-images-contentful +mqtt-packet +seneca +http_server +gitlabhook +pino +MQTT.js +node-df +node-static +treekill +tree-kill +new-serve +fileview +kill-port-process +seeftl +meta-git +hexo-admin +npm-git-publish +total.js +jimp +jpeg-js +devcert +Ghost +crypto-js +jison +logkitty +react-autolinker-wrapper +utils-extend +jsonpointer +Uppy +json-bigint +property-expr +i18next +json8-merge-patch +node-downloader-helper +json-stable-stringify +@firebase/util +systeminformation diff --git a/src/nodejs-ecosystem/note.txt b/src/nodejs-ecosystem/note.txt new file mode 100644 index 0000000..26979d9 --- /dev/null +++ b/src/nodejs-ecosystem/note.txt @@ -0,0 +1 @@ +23949 https://hackerone.com/nodejs-ecosystem Node.js third-party modules nodejs-ecosystem diff --git a/src/nodejs/SOURCE_CODE.txt b/src/nodejs/SOURCE_CODE.txt new file mode 100644 index 0000000..7f519c6 --- /dev/null +++ b/src/nodejs/SOURCE_CODE.txt @@ -0,0 +1 @@ +https://github.com/nodejs/node diff --git a/src/nodejs/note.txt b/src/nodejs/note.txt new file mode 100644 index 0000000..ea6a605 --- /dev/null +++ b/src/nodejs/note.txt @@ -0,0 +1 @@ +22984 https://hackerone.com/nodejs Node.js nodejs diff --git a/src/nokogiri/note.txt b/src/nokogiri/note.txt new file mode 100644 index 0000000..01765e9 --- /dev/null +++ b/src/nokogiri/note.txt @@ -0,0 +1 @@ +1711 https://hackerone.com/nokogiri Nokogiri nokogiri diff --git a/src/nominet/URL.txt b/src/nominet/URL.txt new file mode 100644 index 0000000..8c6cbd2 --- /dev/null +++ b/src/nominet/URL.txt @@ -0,0 +1,3 @@ +*.nominet.uk +*.nominet.org.uk +*.nic.uk diff --git a/src/nominet/WILDCARD.txt b/src/nominet/WILDCARD.txt new file mode 100644 index 0000000..e2a6c04 --- /dev/null +++ b/src/nominet/WILDCARD.txt @@ -0,0 +1,6 @@ +http://*.nominet.uk +http://*.nominet.org.uk +http://*.nic.uk +*.nominet.uk +*.nominet.org.uk +*.nic.uk diff --git a/src/nominet/note.txt b/src/nominet/note.txt new file mode 100644 index 0000000..8e43cf8 --- /dev/null +++ b/src/nominet/note.txt @@ -0,0 +1 @@ +52595 https://hackerone.com/nominet Nominet nominet diff --git a/src/nordsecurity/APPLE_STORE_APP_ID.txt b/src/nordsecurity/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..a6f37d1 --- /dev/null +++ b/src/nordsecurity/APPLE_STORE_APP_ID.txt @@ -0,0 +1,2 @@ +905953485 +1486322860 diff --git a/src/nordsecurity/DOWNLOADABLE_EXECUTABLES.txt b/src/nordsecurity/DOWNLOADABLE_EXECUTABLES.txt new file mode 100644 index 0000000..975ec5c --- /dev/null +++ b/src/nordsecurity/DOWNLOADABLE_EXECUTABLES.txt @@ -0,0 +1,8 @@ +NordVPN - Windows Executable +NordVPN - MacOS Executable +NordVPN - Linux Executable +NordPass - Windows Executable +NordPass - MacOS Executable +NordPass - Linux Executable +NordLocker - MacOS Executable +NordLocker - Windows Executable diff --git a/src/nordsecurity/GOOGLE_PLAY_APP_ID.txt b/src/nordsecurity/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..5b249fd --- /dev/null +++ b/src/nordsecurity/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1,3 @@ +com.nordvpn.android +com.nordpass.android.app.password.manager +NordLocker - Android Application diff --git a/src/nordsecurity/OTHER.txt b/src/nordsecurity/OTHER.txt new file mode 100644 index 0000000..e399c2f --- /dev/null +++ b/src/nordsecurity/OTHER.txt @@ -0,0 +1,2 @@ +All Mobile Assets +NordVPN Browser Extension diff --git a/src/nordsecurity/OTHER_APK.txt b/src/nordsecurity/OTHER_APK.txt new file mode 100644 index 0000000..25dd295 --- /dev/null +++ b/src/nordsecurity/OTHER_APK.txt @@ -0,0 +1 @@ +com.nordvpn.android diff --git a/src/nordsecurity/URL.txt b/src/nordsecurity/URL.txt new file mode 100644 index 0000000..c203a81 --- /dev/null +++ b/src/nordsecurity/URL.txt @@ -0,0 +1,3 @@ +*.nordvpn.com +cloud.nordlocker.com +app.nordpass.com diff --git a/src/nordsecurity/WILDCARD.txt b/src/nordsecurity/WILDCARD.txt new file mode 100644 index 0000000..34ed322 --- /dev/null +++ b/src/nordsecurity/WILDCARD.txt @@ -0,0 +1,2 @@ +http://*.nordvpn.com +*.nordvpn.com diff --git a/src/nordsecurity/note.txt b/src/nordsecurity/note.txt new file mode 100644 index 0000000..c261868 --- /dev/null +++ b/src/nordsecurity/note.txt @@ -0,0 +1 @@ +17173 https://hackerone.com/nordsecurity Nord Security nordsecurity diff --git a/src/note.txt b/src/note.txt new file mode 100644 index 0000000..2419ea9 --- /dev/null +++ b/src/note.txt @@ -0,0 +1,704 @@ +102 https://hackerone.com/tinder Tinder tinder +104 https://hackerone.com/coinbase Coinbase coinbase +10543 https://hackerone.com/apitest APITest.IO apitest +1069 https://hackerone.com/airtable Airtable airtable +1080 https://hackerone.com/airbnb Airbnb airbnb +10995 https://hackerone.com/duckduckgo DuckDuckGo duckduckgo +1105 https://hackerone.com/vhx VHX vhx +111 https://hackerone.com/automattic Automattic automattic +11788 https://hackerone.com/deliveroo Deliveroo deliveroo +11973 https://hackerone.com/websummit WebSummit websummit +12172 https://hackerone.com/helium Helium helium +122 https://hackerone.com/att AT&T att +12340 https://hackerone.com/drugs_com Drugs.com drugs_com +1254 https://hackerone.com/vkcom VK.com vkcom +12633 https://hackerone.com/owox OWOX, Inc. owox +12707 https://hackerone.com/fantasytote FantasyTote fantasytote +12719 https://hackerone.com/exness EXNESS exness +12946 https://hackerone.com/pushwoosh Pushwoosh pushwoosh +13031 https://hackerone.com/files Files.com files +13192 https://hackerone.com/icq ICQ icq +1320 https://hackerone.com/kayak KAYAK kayak +13291 https://hackerone.com/nextcloud Nextcloud nextcloud +13323 https://hackerone.com/pyca Python Cryptographic Authority pyca +13343 https://hackerone.com/line LINE line +13417 https://hackerone.com/secnews SecNews secnews +13428 https://hackerone.com/acronis Acronis acronis +134 https://hackerone.com/khanacademy Khan Academy khanacademy +13559 https://hackerone.com/gocd GoCD gocd +1361 https://hackerone.com/moneybird Moneybird moneybird +1366 https://hackerone.com/mapbox Mapbox mapbox +13798 https://hackerone.com/hiro Hiro hiro +1382 https://hackerone.com/shopify Shopify shopify +1387 https://hackerone.com/ips Invision Power Services, Inc. ips +13 https://hackerone.com/security HackerOne security +14047 https://hackerone.com/kindred_group Kindred Group kindred_group +140 https://hackerone.com/irccloud IRCCloud irccloud +14122 https://hackerone.com/localizejs Localize localizejs +1453 https://hackerone.com/boozt Boozt Fashion AB boozt +14633 https://hackerone.com/drive_net_inc DRIVE.NET, Inc. drive_net_inc +14743 https://hackerone.com/toyota Toyota toyota +1492 https://hackerone.com/drchrono drchrono drchrono +1516 https://hackerone.com/coursera Coursera coursera +15252 https://hackerone.com/portswigger PortSwigger Web Security portswigger +15391 https://hackerone.com/plaid Plaid plaid +15668 https://hackerone.com/shopify-scripts shopify-scripts shopify-scripts +1566 https://hackerone.com/udemy Udemy udemy +15673 https://hackerone.com/casper Casper casper +15688 https://hackerone.com/brave Brave Software brave +15966 https://hackerone.com/semrush Semrush semrush +1601 https://hackerone.com/legalrobot Legal Robot legalrobot +16064 https://hackerone.com/deptofdefense U.S. Dept Of Defense deptofdefense +16083 https://hackerone.com/xiaomi Xiaomi xiaomi +16159 https://hackerone.com/showmax Showmax showmax +162 https://hackerone.com/iandunn-projects Ian Dunn iandunn-projects +16334 https://hackerone.com/lyst Lyst lyst +16388 https://hackerone.com/enjin Enjin enjin +16420 https://hackerone.com/alvosec Alvosec alvosec +16427 https://hackerone.com/sony Sony sony +1644 https://hackerone.com/square-open-source Square Open Source square-open-source +1659 https://hackerone.com/grab Grab grab +165 https://hackerone.com/stopthehacker StopTheHacker stopthehacker +1660 https://hackerone.com/globaleaks GlobaLeaks globaleaks +16634 https://hackerone.com/nintendo Nintendo nintendo +16780 https://hackerone.com/mapsmarker_com_e_u MapsMarker.com e.U. mapsmarker_com_e_u +1684 https://hackerone.com/goodrx GoodRx goodrx +16885 https://hackerone.com/youporn YouPorn youporn +16887 https://hackerone.com/nutanix Nutanix nutanix +16893 https://hackerone.com/discourse Discourse discourse +17011 https://hackerone.com/newrelic New Relic newrelic +1711 https://hackerone.com/nokogiri Nokogiri nokogiri +17173 https://hackerone.com/nordsecurity Nord Security nordsecurity +1737 https://hackerone.com/maplogin MapLogin maplogin +17443 https://hackerone.com/vanilla Vanilla vanilla +17716 https://hackerone.com/trustpilot Trustpilot trustpilot +1782 https://hackerone.com/ok ok.ru ok +1800 https://hackerone.com/torproject Tor torproject +18073 https://hackerone.com/rbkmoney RBKmoney rbkmoney +1894 https://hackerone.com/github GitHub github +18 https://hackerone.com/phabricator Phabricator phabricator +1915 https://hackerone.com/paypal PayPal paypal +1925 https://hackerone.com/matomo Matomo matomo +19264 https://hackerone.com/shipt Shipt shipt +1926 https://hackerone.com/badoo Badoo badoo +1930 https://hackerone.com/trellix Trellix trellix +19399 https://hackerone.com/homebrew Homebrew homebrew +193 https://hackerone.com/bitso Bitso bitso +19468 https://hackerone.com/weblate Weblate weblate +19491 https://hackerone.com/roblox Roblox roblox +194 https://hackerone.com/kadira Kadira kadira +19858 https://hackerone.com/rocket_chat Rocket.Chat rocket_chat +1989 https://hackerone.com/starbucks Starbucks starbucks +19 https://hackerone.com/yahoo Yahoo! yahoo +20051 https://hackerone.com/teradici Teradici teradici +2010 https://hackerone.com/spotify Spotify spotify +20286 https://hackerone.com/johnblackbourn JohnBlackbourn johnblackbourn +20287 https://hackerone.com/stellar Stellar.org stellar +20423 https://hackerone.com/parrot_sec Parrot Sec parrot_sec +204 https://hackerone.com/glassdoor Glassdoor glassdoor +205 https://hackerone.com/zendesk Zendesk zendesk +2060 https://hackerone.com/ibm IBM ibm +20680 https://hackerone.com/cuvva Cuvva cuvva +207 https://hackerone.com/urbandictionary Urban Dictionary urbandictionary +21024 https://hackerone.com/bitwarden Bitwarden bitwarden +21045 https://hackerone.com/omise Omise omise +21291 https://hackerone.com/wink_jq3al WINK wink_jq3al +2143 https://hackerone.com/rockstargames Rockstar Games rockstargames +21499 https://hackerone.com/tts TTS Bug Bounty tts +21554 https://hackerone.com/bumble Bumble bumble +21745 https://hackerone.com/infogram Infogram infogram +21795 https://hackerone.com/yoti Yoti yoti +21801 https://hackerone.com/wakatime WakaTime wakatime +21831 https://hackerone.com/redtube Redtube redtube +21953 https://hackerone.com/delight_im delight.im delight_im +21981 https://hackerone.com/upserve Upserve upserve +221 https://hackerone.com/bigmonocle Big Monocle bigmonocle +222 https://hackerone.com/fanfootage FanFootage fanfootage +224 https://hackerone.com/formassembly FormAssembly formassembly +2250 https://hackerone.com/libsass LibSass libsass +22522 https://hackerone.com/hyperledger Hyperledger hyperledger +22649 https://hackerone.com/fransvisitsvegas Frans Visits Vegas fransvisitsvegas +22746 https://hackerone.com/grammarly Grammarly grammarly +22762 https://hackerone.com/usertesting UserTesting usertesting +22763 https://hackerone.com/streak_com Streak streak_com +22925 https://hackerone.com/kartpay Kartpay kartpay +22962 https://hackerone.com/netlify Netlify netlify +22984 https://hackerone.com/nodejs Node.js nodejs +22998 https://hackerone.com/deconf_com Deconf deconf_com +22 https://hackerone.com/rails Ruby on Rails rails +23233 https://hackerone.com/epicgames Epic Games epicgames +23363 https://hackerone.com/valve Valve valve +23501 https://hackerone.com/recargapay RecargaPay recargapay +23607 https://hackerone.com/elastic Elastic elastic +2367 https://hackerone.com/revive_adserver Revive Adserver revive_adserver +2379 https://hackerone.com/kaspersky Kaspersky kaspersky +237 https://hackerone.com/harvest Harvest harvest +23855 https://hackerone.com/fig Fig fig +23949 https://hackerone.com/nodejs-ecosystem Node.js third-party modules nodejs-ecosystem +23970 https://hackerone.com/smule Smule smule +23 https://hackerone.com/django Django django +24019 https://hackerone.com/lifeomic LifeOmic lifeomic +24231 https://hackerone.com/tube8 Tube8 tube8 +24323 https://hackerone.com/bitmex BitMEX bitmex +24342 https://hackerone.com/ed Ed ed +24397 https://hackerone.com/jamieweb JamieWeb jamieweb +2450 https://hackerone.com/radancy Radancy radancy +24587 https://hackerone.com/flutteruki Flutter UK&I flutteruki +24603 https://hackerone.com/databricks Databricks databricks +24626 https://hackerone.com/cosmos Cosmos cosmos +24846 https://hackerone.com/coalition Coalition, Inc. coalition +24883 https://hackerone.com/affirm Affirm affirm +25172 https://hackerone.com/crowdstrike Crowdstrike crowdstrike +25188 https://hackerone.com/pingidentity Ping Identity pingidentity +254 https://hackerone.com/robinhood Robinhood robinhood +25570 https://hackerone.com/passhash passhash passhash +25854 https://hackerone.com/iovlabs IOVLabs iovlabs +2607 https://hackerone.com/postmates Postmates postmates +264 https://hackerone.com/gitlab GitLab gitlab +265 https://hackerone.com/expressionengine ExpressionEngine expressionengine +266 https://hackerone.com/jsdelivr jsDelivr jsdelivr +2672 https://hackerone.com/unikrn Unikrn unikrn +26754 https://hackerone.com/ycombinator Y Combinator ycombinator +26806 https://hackerone.com/tumblr Tumblr tumblr +26813 https://hackerone.com/loofah Loofah loofah +26860 https://hackerone.com/ratelimited RATELIMITED ratelimited +26953 https://hackerone.com/cobinhood Cobinhood cobinhood +2706 https://hackerone.com/binary Binary.com binary +2738 https://hackerone.com/flox Flox flox +27759 https://hackerone.com/crypto Crypto.com crypto +27778 https://hackerone.com/lob Lob lob +2809 https://hackerone.com/keybase Keybase keybase +28411 https://hackerone.com/liberapay Liberapay liberapay +28545 https://hackerone.com/zenly Zenly zenly +293 https://hackerone.com/digitalsellz DigitalSellz digitalsellz +2943 https://hackerone.com/zomato Zomato zomato +29446 https://hackerone.com/pixiv pixiv pixiv +297 https://hackerone.com/wp-api WP API wp-api +29833 https://hackerone.com/arkadiyt-projects arkadiyt-projects arkadiyt-projects +3006 https://hackerone.com/wealthsimple Wealthsimple wealthsimple +30278 https://hackerone.com/hannob Hanno's projects hannob +30475 https://hackerone.com/chaturbate Chaturbate chaturbate +30500 https://hackerone.com/cfptime CFP Time cfptime +3056 https://hackerone.com/kiwi-ki KIWI.KI GmbH kiwi-ki +3059 https://hackerone.com/owncloud ownCloud owncloud +3067 https://hackerone.com/versioncake Version Cake versioncake +30994 https://hackerone.com/marriott Marriott Bug Bounty Program marriott +31110 https://hackerone.com/nisc NISC-VDP nisc +3115 https://hackerone.com/homebargains Home Bargains homebargains +312 https://hackerone.com/greenhouse Greenhouse.io greenhouse +314 https://hackerone.com/uber Uber uber +3152 https://hackerone.com/quora Quora quora +31577 https://hackerone.com/chainlink Chainlink chainlink +315 https://hackerone.com/otf Open Technology Fund otf +31752 https://hackerone.com/eslint ESLint eslint +32665 https://hackerone.com/8x8 8x8 8x8 +32972 https://hackerone.com/logitech Logitech logitech +32982 https://hackerone.com/flickr Flickr flickr +33043 https://hackerone.com/magento Magento magento +33314 https://hackerone.com/h1-5411-ctf h1-5411-CTF h1-5411-ctf +33317 https://hackerone.com/defectdojo DefectDojo defectdojo +33616 https://hackerone.com/creditkarma Credit Karma creditkarma +33640 https://hackerone.com/urbancompany Urban Company urbancompany +34401 https://hackerone.com/sweatco_ltd Sweatco Ltd sweatco_ltd +34753 https://hackerone.com/fanduel FanDuel fanduel +34784 https://hackerone.com/insulet_corporation Insulet Corporation insulet_corporation +347 https://hackerone.com/adobe Adobe adobe +34960 https://hackerone.com/etoro_bbp eToro BBP etoro_bbp +35268 https://hackerone.com/mattermost Mattermost mattermost +35350 https://hackerone.com/pillarproject Pillar Project Worldwide Limited pillarproject +35524 https://hackerone.com/central-security-project Central Security Project central-security-project +35527 https://hackerone.com/instacart Instacart instacart +35549 https://hackerone.com/remitano Remitano remitano +35663 https://hackerone.com/curl curl curl +35710 https://hackerone.com/reddit Reddit reddit +35713 https://hackerone.com/magic-bbp Magic magic-bbp +35812 https://hackerone.com/ford Ford ford +35929 https://hackerone.com/status_im Status.im status_im +361 https://hackerone.com/wordpoints WordPoints wordpoints +36449 https://hackerone.com/xilinx Xilinx, now part of AMD – Vulnerability Disclosure Program xilinx +36450 https://hackerone.com/xilinx_bbp Xilinx, now part of AMD – Bug Bounty Program xilinx_bbp +36569 https://hackerone.com/capital-one Capital One capital-one +36713 https://hackerone.com/filezilla FileZilla filezilla +36721 https://hackerone.com/notepad-plus-plus Notepad++ notepad-plus-plus +36863 https://hackerone.com/vlc_h1c VLC (European Commission - DIGIT) vlc_h1c +36864 https://hackerone.com/putty_h1c PuTTY (European Commission - DIGIT) putty_h1c +36865 https://hackerone.com/notepad_h1c Notepad++ (European Commission - DIGIT) notepad_h1c +36866 https://hackerone.com/filezilla_h1c FileZilla (European Commission - DIGIT) filezilla_h1c +36867 https://hackerone.com/apache_kafka_h1c Apache Kafka (European Commission - DIGIT) apache_kafka_h1c +36980 https://hackerone.com/ridewithvia Via ridewithvia +37038 https://hackerone.com/endless_group Endless Group endless_group +37451 https://hackerone.com/agoric-vdp Agoric agoric-vdp +374 https://hackerone.com/glasswire GlassWire glasswire +37632 https://hackerone.com/spell Spell spell +37660 https://hackerone.com/allegro Allegro allegro +37774 https://hackerone.com/starling_bank Starling Bank Limited starling_bank +38108 https://hackerone.com/monolith Monolith monolith +38302 https://hackerone.com/impresscms ImpressCMS impresscms +38469 https://hackerone.com/midpoint_h1c Midpoint (European Commission - DIGIT) midpoint_h1c +38470 https://hackerone.com/smartsheet Smartsheet smartsheet +38489 https://hackerone.com/50m-ctf 50m-ctf 50m-ctf +39147 https://hackerone.com/coda_bbp Coda coda_bbp +39386 https://hackerone.com/kubernetes Kubernetes kubernetes +39487 https://hackerone.com/datastax DataStax datastax +39489 https://hackerone.com/forescout_technologies ForeScout Technologies forescout_technologies +39833 https://hackerone.com/bmwgroup BMW Group bmwgroup +39838 https://hackerone.com/curve Curve curve +40160 https://hackerone.com/consensys Consensys consensys +40178 https://hackerone.com/raivo Raivo raivo +40276 https://hackerone.com/engel_volkers Engel & Völkers Technology GmbH engel_volkers +40428 https://hackerone.com/diem Diem diem +40469 https://hackerone.com/replyify Replyify replyify +40482 https://hackerone.com/natur_com_gmbh Natur.com GmbH natur_com_gmbh +40485 https://hackerone.com/mailtime_technology_inc Mailtime Technology Inc. mailtime_technology_inc +40499 https://hackerone.com/worklytics Worklytics worklytics +40637 https://hackerone.com/amitree_inc Amitree Inc amitree_inc +40674 https://hackerone.com/lark_technologies Lark Technologies lark_technologies +40756 https://hackerone.com/solidus Solidus solidus +40811 https://hackerone.com/aodocs AODocs aodocs +41089 https://hackerone.com/keybank KeyBank keybank +41286 https://hackerone.com/facebook Facebook facebook +41357 https://hackerone.com/top_echelon_software Top Echelon Software top_echelon_software +41371 https://hackerone.com/people_interactive People Interactive people_interactive +41380 https://hackerone.com/nuri Nuri nuri +41393 https://hackerone.com/coinspot CoinSpot coinspot +41626 https://hackerone.com/panther_labs Panther Labs panther_labs +41648 https://hackerone.com/govtech-vdp GovTech VDP govtech-vdp +41650 https://hackerone.com/koho Koho koho +41710 https://hackerone.com/orion_labs Orion Labs orion_labs +41772 https://hackerone.com/qulture_rocks Qulture.Rocks qulture_rocks +41919 https://hackerone.com/mtn_group MTN Group mtn_group +41 https://hackerone.com/cloudflare Cloudflare Public Bug Bounty cloudflare +42008 https://hackerone.com/investnext InvestNext investnext +42023 https://hackerone.com/uphabit UpHabit uphabit +42327 https://hackerone.com/palo_alto_software Palo Alto Software palo_alto_software +42368 https://hackerone.com/stripo Stripo Inc stripo +42426 https://hackerone.com/overloop Overloop overloop +424 https://hackerone.com/blockchain Blockchain blockchain +42751 https://hackerone.com/jnj_mobile JNJ Mobile jnj_mobile +43020 https://hackerone.com/copper Copper copper +43225 https://hackerone.com/oasis_protocol_foundation Oasis Protocol Foundation oasis_protocol_foundation +43232 https://hackerone.com/thnks Thnks thnks +43285 https://hackerone.com/mobisystems_ltd MobiSystems Ltd. mobisystems_ltd +43330 https://hackerone.com/topcoder Topcoder topcoder +43432 https://hackerone.com/gmelius Gmelius gmelius +43718 https://hackerone.com/magisto Magisto magisto +43727 https://hackerone.com/companyhub CompanyHub companyhub +43746 https://hackerone.com/clario Clario clario +43825 https://hackerone.com/exodus Exodus exodus +43923 https://hackerone.com/thomsonreuters-public Thomson Reuters thomsonreuters-public +43928 https://hackerone.com/hcl_software HCL Software Inc. hcl_software +44002 https://hackerone.com/amazonvrp Amazon Vulnerability Research Program amazonvrp +44045 https://hackerone.com/lemlist lemlist lemlist +44134 https://hackerone.com/picsart Picsart picsart +44150 https://hackerone.com/usps USPS - United States Postal Service usps +44163 https://hackerone.com/earny Earny earny +44211 https://hackerone.com/evernote Evernote evernote +44336 https://hackerone.com/ramp_vdp Ramp VDP ramp_vdp +44342 https://hackerone.com/chorus_jg4l2 Chorus chorus_jg4l2 +443 https://hackerone.com/algolia Algolia algolia +44491 https://hackerone.com/pubg PUBG pubg +44515 https://hackerone.com/doppler Doppler doppler +44612 https://hackerone.com/myndr Myndr myndr +44879 https://hackerone.com/playstation PlayStation playstation +44956 https://hackerone.com/rghost RGhost rghost +45140 https://hackerone.com/github-security-lab GitHub Security Lab github-security-lab +45152 https://hackerone.com/skale_network SKALE Network skale_network +45246 https://hackerone.com/meredith Meredith meredith +45395 https://hackerone.com/simple_poll Simple Poll simple_poll +453 https://hackerone.com/informatica Informatica informatica +45650 https://hackerone.com/aiven_ltd Aiven Ltd aiven_ltd +45675 https://hackerone.com/faraday_inc Faraday, Inc. faraday_inc +45701 https://hackerone.com/r3 R3 r3 +45735 https://hackerone.com/btfs BTFS btfs +45900 https://hackerone.com/stagingdoteverydotorg Staging.every.org stagingdoteverydotorg +45907 https://hackerone.com/oppo OPPO oppo +45943 https://hackerone.com/cirrusinsight Cirrus Insight cirrusinsight +45986 https://hackerone.com/gener8 Gener8 gener8 +46119 https://hackerone.com/vend Vend by Lightspeed vend +461 https://hackerone.com/dropbox Dropbox dropbox +46293 https://hackerone.com/cedars-sinai Cedars-Sinai cedars-sinai +46330 https://hackerone.com/logsnitch LogSnitch logsnitch +46469 https://hackerone.com/shein SHEIN shein +46502 https://hackerone.com/openmage OpenMage openmage +46581 https://hackerone.com/alibaba Alibaba BBP alibaba +46613 https://hackerone.com/ups UPS VDP ups +46757 https://hackerone.com/h1-ctf h1-ctf h1-ctf +46857 https://hackerone.com/n45ht N45HT n45ht +47236 https://hackerone.com/digitalocean DigitalOcean digitalocean +47507 https://hackerone.com/ozon Ozon ozon +47776 https://hackerone.com/tencent Tencent tencent +47876 https://hackerone.com/trycourier Courier trycourier +48095 https://hackerone.com/american_systems_bbp AMERICAN SYSTEMS american_systems_bbp +48281 https://hackerone.com/mendix Mendix mendix +48311 https://hackerone.com/cs_money CS Money cs_money +48354 https://hackerone.com/watson_group A.S. Watson Group watson_group +48395 https://hackerone.com/av Azbuka Vkusa av +48739 https://hackerone.com/figma Figma figma +48754 https://hackerone.com/launchdarkly LaunchDarkly launchdarkly +48831 https://hackerone.com/jfrog JFrog jfrog +48923 https://hackerone.com/zebra_vdp Zebra VDP zebra_vdp +48976 https://hackerone.com/blackrock BlackRock blackrock +48980 https://hackerone.com/finra FINRA Response finra +48983 https://hackerone.com/chime Chime chime +48984 https://hackerone.com/o1-labs O1 Labs o1-labs +48 https://hackerone.com/mavenlink Mavenlink mavenlink +49048 https://hackerone.com/matic-network Matic Network matic-network +49048 https://hackerone.com/polygon-technology Polygon Technology polygon-technology +49072 https://hackerone.com/zivver Zivver zivver +49225 https://hackerone.com/callsign Callsign callsign +49254 https://hackerone.com/rebellion-defense Rebellion Defense rebellion-defense +49422 https://hackerone.com/aig AIG aig +49532 https://hackerone.com/rockset Rockset rockset +49538 https://hackerone.com/dropcontact Dropcontact dropcontact +49708 https://hackerone.com/tiktok TikTok tiktok +49728 https://hackerone.com/john-deere John Deere john-deere +49756 https://hackerone.com/blockfi BlockFi blockfi +49797 https://hackerone.com/zego Zego zego +50090 https://hackerone.com/hudapp Hud App hudapp +50109 https://hackerone.com/federal-reserve Federal Reserve federal-reserve +50114 https://hackerone.com/jimdo Jimdo GmbH jimdo +5013 https://hackerone.com/codeigniter CodeIgniter codeigniter +50158 https://hackerone.com/checkout Checkout checkout +50286 https://hackerone.com/ohiosecretaryofstate Ohio Secretary of State ohiosecretaryofstate +50348 https://hackerone.com/nubank Nubank nubank +50349 https://hackerone.com/anywhererealestate Anywhere Real Estate anywhererealestate +50349 https://hackerone.com/realogy Realogy realogy +5044 https://hackerone.com/equifax Equifax equifax +50466 https://hackerone.com/trafficfactory Traffic Factory trafficfactory +50470 https://hackerone.com/xvideos XVIDEOS xvideos +504 https://hackerone.com/blockio Block.io blockio +50553 https://hackerone.com/gsa_vdp U.S. General Services Administration gsa_vdp +50592 https://hackerone.com/gsa_bbp GSA Bounty gsa_bbp +50602 https://hackerone.com/hilton Hilton hilton +50631 https://hackerone.com/citrix Citrix Systems citrix +50698 https://hackerone.com/emoney-advisor eMoney Advisor emoney-advisor +50742 https://hackerone.com/gymshark Gymshark gymshark +50842 https://hackerone.com/judgeme Judge.me judgeme +50928 https://hackerone.com/on On on +50933 https://hackerone.com/stripe Stripe stripe +50957 https://hackerone.com/costco Costco costco +50979 https://hackerone.com/tennessee-valley-authority Tennessee Valley Authority tennessee-valley-authority +51016 https://hackerone.com/zilliqa Zilliqa zilliqa +51045 https://hackerone.com/pfizer Pfizer pfizer +513 https://hackerone.com/snapchat Snapchat snapchat +51514 https://hackerone.com/payoneer Payoneer payoneer +51543 https://hackerone.com/who-covid-19-mobile-app WHO COVID-19 Mobile App who-covid-19-mobile-app +51682 https://hackerone.com/jetblue JetBlue jetblue +51815 https://hackerone.com/glovo Glovo glovo +51877 https://hackerone.com/sifchain Sifchain sifchain +51924 https://hackerone.com/global-payments Global Payments global-payments +51928 https://hackerone.com/aktia Aktia aktia +51940 https://hackerone.com/recorded-future Recorded Future recorded-future +51968 https://hackerone.com/mtb M&T Bank Vulnerability Disclosure mtb +52057 https://hackerone.com/lumiradx LumiraDx lumiradx +52105 https://hackerone.com/clubhouse Clubhouse clubhouse +52295 https://hackerone.com/trendyol Trendyol trendyol +52423 https://hackerone.com/fastify Fastify fastify +52437 https://hackerone.com/gojek Gojek gojek +52467 https://hackerone.com/monzo Monzo monzo +52484 https://hackerone.com/mcuboot MCUboot mcuboot +52489 https://hackerone.com/proctorio Proctorio proctorio +52544 https://hackerone.com/beiersdorf Beiersdorf beiersdorf +52553 https://hackerone.com/smtp2go SMTP2GO BBP smtp2go +52589 https://hackerone.com/upchieve UPchieve upchieve +52591 https://hackerone.com/kryptor Kryptor kryptor +52595 https://hackerone.com/nominet Nominet nominet +52713 https://hackerone.com/lacework Lacework lacework +53042 https://hackerone.com/trade-republic-bbp Trade Republic Bounty trade-republic-bbp +53044 https://hackerone.com/myetherwallet MyEtherWallet myetherwallet +53084 https://hackerone.com/krisp Krisp krisp +53126 https://hackerone.com/vanmoof VanMoof vanmoof +53167 https://hackerone.com/planetart PlanetArt planetart +53169 https://hackerone.com/tesco Tesco tesco +53207 https://hackerone.com/keurigdrpepper Keurig Dr Pepper keurigdrpepper +53215 https://hackerone.com/epam-bbp EPAM Bounty epam-bbp +53216 https://hackerone.com/epam EPAM epam +53236 https://hackerone.com/octopus-energy Octopus Energy Group octopus-energy +53236 https://hackerone.com/octopus-energy Octopus Energy octopus-energy +53276 https://hackerone.com/cardano-foundation Cardano Foundation cardano-foundation +53329 https://hackerone.com/hy-vee Hy-Vee hy-vee +53545 https://hackerone.com/sega SEGA sega +53638 https://hackerone.com/tenable Tenable tenable +53813 https://hackerone.com/twitter-algorithmic-bias Twitter Algorithmic Bias twitter-algorithmic-bias +53834 https://hackerone.com/planet-labs Planet Labs planet-labs +53867 https://hackerone.com/snowplow Snowplow snowplow +54261 https://hackerone.com/oanda OANDA oanda +54275 https://hackerone.com/gemini_trust_co_vdp Gemini gemini_trust_co_vdp +54299 https://hackerone.com/razorpay Razorpay razorpay +54349 https://hackerone.com/ibb Internet Bug Bounty ibb +54523 https://hackerone.com/caterpillar Caterpillar caterpillar +545 https://hackerone.com/yelp Yelp yelp +54608 https://hackerone.com/redis-vdp Redis redis-vdp +54722 https://hackerone.com/opensea OpenSea opensea +54792 https://hackerone.com/horizen Horizen horizen +54803 https://hackerone.com/veeam Veeam veeam +54808 https://hackerone.com/auvik Auvik auvik +54832 https://hackerone.com/godaddy-vdp GoDaddy VDP godaddy-vdp +54884 https://hackerone.com/circle Circle circle +54977 https://hackerone.com/inmobi InMobi inmobi +54981 https://hackerone.com/disney The Walt Disney Company disney +55091 https://hackerone.com/palantir_public Palantir Public palantir_public +55095 https://hackerone.com/mondelez Mondelēz International mondelez +55190 https://hackerone.com/automation-anywhere Automation Anywhere automation-anywhere +55215 https://hackerone.com/securityscorecard SecurityScorecard securityscorecard +55361 https://hackerone.com/agoric Agoric agoric +55425 https://hackerone.com/wickr Wickr wickr +55484 https://hackerone.com/ziff-davis Ziff Davis ziff-davis +554 https://hackerone.com/dashlane Dashlane dashlane +55552 https://hackerone.com/sidefx SideFX sidefx +55590 https://hackerone.com/kraden Kraden kraden +557 https://hackerone.com/thisdata ThisData thisdata +55863 https://hackerone.com/windstream Windstream windstream +55988 https://hackerone.com/sorare Sorare sorare +55 https://hackerone.com/wordpress WordPress wordpress +56034 https://hackerone.com/alohi Alohi alohi +56081 https://hackerone.com/fidelity Fidelity fidelity +56104 https://hackerone.com/ro Ro ro +56232 https://hackerone.com/gamestop GameStop gamestop +563 https://hackerone.com/enter Enter enter +56419 https://hackerone.com/metamask MetaMask metamask +567 https://hackerone.com/scopely Scopely scopely +569 https://hackerone.com/whisper Whisper whisper +56 https://hackerone.com/vimeo Vimeo vimeo +5708 https://hackerone.com/goldmansachs Goldman Sachs goldmansachs +57307 https://hackerone.com/pogo Pogo pogo +58093 https://hackerone.com/hack-us-h1c Hack U.S. hack-us-h1c +58251 https://hackerone.com/tokenweb3 token.com tokenweb3 +58 https://hackerone.com/linkedin LinkedIn linkedin +59 https://hackerone.com/priceline Priceline priceline +607 https://hackerone.com/mobilevikings Mobile Vikings mobilevikings +60 https://hackerone.com/concretecms Concrete CMS concretecms +61 https://hackerone.com/twitter Twitter twitter +638 https://hackerone.com/imgur Imgur imgur +65 https://hackerone.com/mailru Mail.ru mailru +679 https://hackerone.com/certly Certly certly +67 https://hackerone.com/basecamp Basecamp basecamp +6820 https://hackerone.com/fetlife FetLife fetlife +695 https://hackerone.com/zaption Zaption zaption +69 https://hackerone.com/slack Slack slack +7068 https://hackerone.com/bime Bime bime +7205 https://hackerone.com/gm General Motors gm +7242 https://hackerone.com/wellsfargo Wells Fargo wellsfargo +75 https://hackerone.com/c2fo C2FO c2fo +7724 https://hackerone.com/ruby Ruby ruby +7731 https://hackerone.com/monero Monero monero +7747 https://hackerone.com/leaseweb LeaseWeb leaseweb +7883 https://hackerone.com/hyatt Hyatt Hotels hyatt +7915 https://hackerone.com/livestream Livestream livestream +7954 https://hackerone.com/cakebet Cakebet cakebet +800 https://hackerone.com/ui Ubiquiti Inc. ui +8146 https://hackerone.com/olx OLX olx +8212 https://hackerone.com/rubygems RubyGems rubygems +8416 https://hackerone.com/localtapiola LocalTapiola localtapiola +8539 https://hackerone.com/paragonie Paragon Initiative Enterprises paragonie +8619 https://hackerone.com/bitaccess bitaccess bitaccess +8724 https://hackerone.com/mariadb MariaDB mariadb +8855 https://hackerone.com/mainwp MainWP mainwp +8906 https://hackerone.com/open-xchange Open-Xchange open-xchange +8936 https://hackerone.com/phpbb phpBB phpbb +9409 https://hackerone.com/veris Veris veris +9520 https://hackerone.com/aspen Aspen aspen +952 https://hackerone.com/pornhub Pornhub pornhub +15466 https://hackerone.com/cornershop Cornershop cornershop +46196 https://hackerone.com/flexport_vdp Flexport VDP flexport_vdp +50581 https://hackerone.com/mars Mars mars +55865 https://hackerone.com/mount-sinai-health Mount Sinai Health mount-sinai-health +55226 https://hackerone.com/fossil Fossil fossil +58856 https://hackerone.com/alsco ALSCO alsco +55951 https://hackerone.com/mongodb MongoDB mongodb +52101 https://hackerone.com/linktree Linktree linktree +55148 https://hackerone.com/amazonvrp-devices Amazon Vulnerability Research Program - Devices amazonvrp-devices +54544 https://hackerone.com/blend-labs Blend Labs blend-labs +27589 https://hackerone.com/poloniex Poloniex poloniex +57318 https://hackerone.com/monarch_money Monarch Money monarch_money +55426 https://hackerone.com/allegion Allegion allegion +58143 https://hackerone.com/rivian_automotive Rivian Automotive rivian_automotive +54275 https://hackerone.com/gemini_trust_co_vdp Gemini VDP gemini_trust_co_vdp +55550 https://hackerone.com/strongdm strongDM strongdm +58228 https://hackerone.com/abercrombie_fitch Abercrombie & Fitch Management Co. abercrombie_fitch +57666 https://hackerone.com/resmed ResMed resmed +56118 https://hackerone.com/deribit Deribit deribit +58895 https://hackerone.com/intuit_rdp Intuit intuit_rdp +57405 https://hackerone.com/avalara Avalara avalara +55550 https://hackerone.com/strongdm StrongDM strongdm +56908 https://hackerone.com/shoplazza SHOPLAZZA shoplazza +55090 https://hackerone.com/divvy-homes Divvy Homes divvy-homes +57187 https://hackerone.com/teleport Teleport teleport +56098 https://hackerone.com/amber-ai AMBER AI amber-ai +58701 https://hackerone.com/zerobounce ZeroBounce zerobounce +52554 https://hackerone.com/varonis Varonis varonis +59452 https://hackerone.com/magic-eden Magic Eden magic-eden +33992 https://hackerone.com/expediagroup_bbp Expedia Group Bug Bounty expediagroup_bbp +33400 https://hackerone.com/expediagroup Expedia Group expediagroup +46646 https://hackerone.com/cognizant Cognizant cognizant +58895 https://hackerone.com/intuit_rdp RDP_INTUIT intuit_rdp +58088 https://hackerone.com/yuga_labs Yuga Labs yuga_labs +52881 https://hackerone.com/us-department-of-state U.S. Department of State us-department-of-state +59122 https://hackerone.com/one_zero_vdp ONE ZERO VDP one_zero_vdp +43132 https://hackerone.com/engel_volkers_bbp Engel & Völkers Technology GmbH BBP engel_volkers_bbp +50767 https://hackerone.com/doppler-bbp Doppler BBP doppler-bbp +54756 https://hackerone.com/moonpay MoonPay moonpay +57325 https://hackerone.com/deliveryhero Delivery Hero deliveryhero +50767 https://hackerone.com/doppler Doppler doppler +44515 https://hackerone.com/doppler-vdp Doppler VDP doppler-vdp +60591 https://hackerone.com/superbet_romania Superbet Romania superbet_romania +60591 https://hackerone.com/superbet Superbet superbet +58682 https://hackerone.com/mckesson McKesson mckesson +49732 https://hackerone.com/8x8-bounty 8x8 Bounty 8x8-bounty +58186 https://hackerone.com/kkr_vdp KKR-VDP kkr_vdp +55704 https://hackerone.com/stanford-university Stanford University stanford-university +52949 https://hackerone.com/hedera-hashgraph Hedera Hashgraph hedera-hashgraph +8582 https://hackerone.com/kiwicom Kiwi.com kiwicom +61129 https://hackerone.com/tron_dao TRON DAO tron_dao +29970 https://hackerone.com/s-pankki S-Pankki s-pankki +45660 https://hackerone.com/td-bank TD Bank td-bank +57109 https://hackerone.com/xdefi Xdefi Technologies Ltd xdefi +56159 https://hackerone.com/svb-financial SVB Financial svb-financial +21978 https://hackerone.com/malwarebytes Malwarebytes malwarebytes +57677 https://hackerone.com/canada_goose_inc Canada Goose Inc. canada_goose_inc +49424 https://hackerone.com/miro Miro miro +58246 https://hackerone.com/abb_information_systems ABB Information Systems Ltd abb_information_systems +56661 https://hackerone.com/skinport Skinport skinport +58305 https://hackerone.com/zabbix Zabbix zabbix +50697 https://hackerone.com/grindr Grindr grindr +58857 https://hackerone.com/indrive inDrive indrive +53632 https://hackerone.com/fastly-vdp Fastly VDP fastly-vdp +57704 https://hackerone.com/city_of_los_angeles_vdp City of Los Angeles city_of_los_angeles_vdp +58246 https://hackerone.com/abb ABB Information Systems Ltd abb +60793 https://hackerone.com/okx OKX okx +50934 https://hackerone.com/paystack-vdp Paystack Vulnerability Disclosure paystack-vdp +54565 https://hackerone.com/apnic APNIC apnic +5044 https://hackerone.com/equifax Equifax-vdp equifax +55457 https://hackerone.com/hilton Hilton Bounty hilton +56830 https://hackerone.com/floqast FloQast floqast +62568 https://hackerone.com/eero Eero eero +60431 https://hackerone.com/prolinx-vdp Prolinx VDP prolinx-vdp +6000 https://hackerone.com/msd Merck & Co., Inc., Rahway, NJ, USA msd +61998 https://hackerone.com/gsa-h1c3 GSA H1C3 gsa-h1c3 +55457 https://hackerone.com/hilton Hilton hilton +62251 https://hackerone.com/saytechnologies Say Technologies saytechnologies +52738 https://hackerone.com/latamairlines LATAM Airlines latamairlines +53211 https://hackerone.com/newegg Newegg newegg +63415 https://hackerone.com/six-group SIX Group six-group +47225 https://hackerone.com/shutterfly_vdp Shutterfly VDP shutterfly_vdp +63475 https://hackerone.com/mozilla_critical_services Mozilla Critical Services mozilla_critical_services +61236 https://hackerone.com/mozilla_core_services Mozilla Core Services mozilla_core_services +58946 https://hackerone.com/oyo_rooms OYO Rooms oyo_rooms +2706 https://hackerone.com/deriv Deriv.com deriv +2706 https://hackerone.com/binary Deriv.com binary +51971 https://hackerone.com/tide Tide tide +63606 https://hackerone.com/ring Ring ring +61537 https://hackerone.com/fertitta_entertainment Fertitta Entertainment fertitta_entertainment +63603 https://hackerone.com/soroban Soroban soroban +41286 https://hackerone.com/facebook Meta facebook +59489 https://hackerone.com/kolesagroup Kolesa Group kolesagroup +43225 https://hackerone.com/oasisprotocol Oasis Protocol Foundation oasisprotocol +53191 https://hackerone.com/debtbook DebtBook debtbook +34783 https://hackerone.com/mercadolibre_vdp MercadoLibre mercadolibre_vdp +41286 https://hackerone.com/meta Meta meta +54839 https://hackerone.com/clarivate Clarivate clarivate +50166 https://hackerone.com/freshworks Freshworks freshworks +61909 https://hackerone.com/truist_financial Truist Financial truist_financial +58322 https://hackerone.com/fifth_third_bank_vdp Fifth Third Bank VDP fifth_third_bank_vdp +57436 https://hackerone.com/daimler_truck Daimler Truck daimler_truck +60430 https://hackerone.com/egress-vdp Egress Software Technologies egress-vdp +63820 https://hackerone.com/visa Visa visa +61055 https://hackerone.com/redox_bbp Redox redox_bbp +55728 https://hackerone.com/tecno TECNO tecno +63689 https://hackerone.com/aleo Aleo aleo +55164 https://hackerone.com/fresenius Fresenius fresenius +63537 https://hackerone.com/eurofins Eurofins eurofins +58335 https://hackerone.com/shi_vdp SHI shi_vdp +69735 https://hackerone.com/cal_com_inc Cal.com, Inc cal_com_inc +61126 https://hackerone.com/massmutual MassMutual massmutual +53129 https://hackerone.com/servicenow-disclosure ServiceNow Disclosure servicenow-disclosure +69749 https://hackerone.com/aven_response Aven (Response) aven_response +45444 https://hackerone.com/standard_notes Standard Notes standard_notes +60123 https://hackerone.com/greenfly Greenfly greenfly +36246 https://hackerone.com/nba-vdp NBA nba-vdp +70022 https://hackerone.com/fireblocks_mpc Fireblocks MPC fireblocks_mpc +63546 https://hackerone.com/iron_fish_bbp Iron Fish iron_fish_bbp +61 https://hackerone.com/twitter X (Formerly Twitter) twitter +61 https://hackerone.com/x X (Formerly Twitter) x +64556 https://hackerone.com/aboitizpower_corporation AboitizPower aboitizpower_corporation +60539 https://hackerone.com/abn_amro_vdp ABN AMRO Bank VDP abn_amro_vdp +60429 https://hackerone.com/kahootz-vdp Kahootz kahootz-vdp +57982 https://hackerone.com/wisdomtree WisdomTree, Inc. wisdomtree +63712 https://hackerone.com/alshaya Alshaya alshaya +70351 https://hackerone.com/leather_wallet Leather Wallet leather_wallet +65386 https://hackerone.com/baidu Baidu baidu +70673 https://hackerone.com/inditex Inditex inditex +58669 https://hackerone.com/coinhako Coinhako coinhako +58678 https://hackerone.com/rei_bbp REI BBP rei_bbp +39750 https://hackerone.com/gocardless_bbp GoCardless Bug Bounty Program gocardless_bbp +53090 https://hackerone.com/particle-health-vdp Particle Health VDP particle-health-vdp +62920 https://hackerone.com/brightspeed Brightspeed brightspeed +52950 https://hackerone.com/palta Palta palta +63596 https://hackerone.com/nicehash NiceHash nicehash +57841 https://hackerone.com/modern_treasury Modern Treasury modern_treasury +13343 https://hackerone.com/line LY Corporation line +51483 https://hackerone.com/hypr-corp HYPR hypr-corp +50163 https://hackerone.com/blueapron Blue Apron, LLC VDP blueapron +51985 https://hackerone.com/compass-bbp Compass compass-bbp +58649 https://hackerone.com/mergify Mergify mergify +35433 https://hackerone.com/fronthq Front fronthq +59152 https://hackerone.com/boozt Boozt Fashion AB boozt +70847 https://hackerone.com/trip_com Trip.com trip_com +50128 https://hackerone.com/cbre CBRE cbre +63839 https://hackerone.com/synapxe_cvip_vdp Synapxe CVIP VDP synapxe_cvip_vdp +72059 https://hackerone.com/porsche-h1c Porsche H1C porsche-h1c +45827 https://hackerone.com/navient_solutions Navient Solutions LLC navient_solutions +58820 https://hackerone.com/frontegg Frontegg frontegg +71387 https://hackerone.com/bybit_fintech Bybit Fintech Ltd bybit_fintech +1078 https://hackerone.com/bookingcom Booking.com bookingcom +33462 https://hackerone.com/mercadolibre MercadoLibre mercadolibre +73681 https://hackerone.com/temu Temu temu +62739 https://hackerone.com/eufy_security eufy Security eufy_security +73655 https://hackerone.com/23andme_bbp 23andMe Bug Bounty 23andme_bbp +45515 https://hackerone.com/hostinger hostinger hostinger +69717 https://hackerone.com/oaknorth_bank OakNorth Bank oaknorth_bank +57935 https://hackerone.com/dynamic_labs Dynamic Labs dynamic_labs +75348 https://hackerone.com/wellhive WellHive wellhive +39572 https://hackerone.com/dynatrace Dynatrace dynatrace +57779 https://hackerone.com/fireblocks Fireblocks fireblocks +45660 https://hackerone.com/td-bank TD Bank Group td-bank +103 https://hackerone.com/publitas Publitas publitas +58697 https://hackerone.com/sheer_bbp Sheer sheer_bbp +60414 https://hackerone.com/pornbox PornBox pornbox +58609 https://hackerone.com/arkose_labs Arkose Labs arkose_labs +62568 https://hackerone.com/eero eero eero +46476 https://hackerone.com/international_airlines_group International Airlines Group international_airlines_group +72779 https://hackerone.com/tari_labs Tari tari_labs +48435 https://hackerone.com/vendasta Vendasta vendasta +63660 https://hackerone.com/toolsforhumanity Tools for Humanity toolsforhumanity +76567 https://hackerone.com/interco_vdp Inter & Co. VDP interco_vdp +76876 https://hackerone.com/alchemyplatform Alchemy Insights, Inc. alchemyplatform +77076 https://hackerone.com/chia_network Chia Network chia_network +32674 https://hackerone.com/remitly Remitly remitly +9322 https://hackerone.com/dyson Dyson dyson +44135 https://hackerone.com/truecaller_bbp Truecaller BBP truecaller_bbp +44135 https://hackerone.com/truecaller Truecaller BBP truecaller +60793 https://hackerone.com/okg OKG okg +58679 https://hackerone.com/rei_vdp REI VDP rei_vdp +44135 https://hackerone.com/truecaller Truecaller truecaller +74937 https://hackerone.com/banco_bmg Banco BMG VDP banco_bmg +77155 https://hackerone.com/lowes Lowe's Companies VDP lowes +61236 https://hackerone.com/mozilla_core_services Mozilla mozilla_core_services +70006 https://hackerone.com/aon Aon aon +25854 https://hackerone.com/rootstocklabs Rootstock Labs rootstocklabs +71332 https://hackerone.com/transunion TransUnion LLC transunion +64932 https://hackerone.com/ionity_gmbh Ionity GmbH ionity_gmbh +72870 https://hackerone.com/aeromexico_vdp Aeromexico VDP aeromexico_vdp +81001 https://hackerone.com/puter_h1b Puter puter_h1b +59658 https://hackerone.com/caesars-digital Caesars Digital caesars-digital +76932 https://hackerone.com/guggenheimpartners_vdp Guggenheim Partners VDP guggenheimpartners_vdp +53499 https://hackerone.com/koho KOHO koho +49230 https://hackerone.com/estee-lauder Esteé Lauder estee-lauder +61236 https://hackerone.com/mozilla Mozilla mozilla +81945 https://hackerone.com/klarna_bbp_public Klarna Public Program klarna_bbp_public +83935 https://hackerone.com/varonis Varonis varonis +75285 https://hackerone.com/netflix Netflix netflix +37035 https://hackerone.com/early_warning Early Warning early_warning +79046 https://hackerone.com/nimiq Nimiq nimiq +43330 https://hackerone.com/lab45 Lab45 lab45 +83563 https://hackerone.com/circle-bbp Circle BBP circle-bbp diff --git a/src/notepad-plus-plus/SOURCE_CODE.txt b/src/notepad-plus-plus/SOURCE_CODE.txt new file mode 100644 index 0000000..f70ade6 --- /dev/null +++ b/src/notepad-plus-plus/SOURCE_CODE.txt @@ -0,0 +1 @@ +https://github.com/notepad-plus-plus/notepad-plus-plus diff --git a/src/notepad-plus-plus/note.txt b/src/notepad-plus-plus/note.txt new file mode 100644 index 0000000..e2aaa1a --- /dev/null +++ b/src/notepad-plus-plus/note.txt @@ -0,0 +1 @@ +36721 https://hackerone.com/notepad-plus-plus Notepad++ notepad-plus-plus diff --git a/src/notepad_h1c/SOURCE_CODE.txt b/src/notepad_h1c/SOURCE_CODE.txt new file mode 100644 index 0000000..259c825 --- /dev/null +++ b/src/notepad_h1c/SOURCE_CODE.txt @@ -0,0 +1 @@ +https://github.com/notepad-plus-plus/notepad-plus-plus.git diff --git a/src/notepad_h1c/note.txt b/src/notepad_h1c/note.txt new file mode 100644 index 0000000..cbe2aca --- /dev/null +++ b/src/notepad_h1c/note.txt @@ -0,0 +1 @@ +36865 https://hackerone.com/notepad_h1c Notepad++ (European Commission - DIGIT) notepad_h1c diff --git a/src/nubank/APPLE_STORE_APP_ID.txt b/src/nubank/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..689510c --- /dev/null +++ b/src/nubank/APPLE_STORE_APP_ID.txt @@ -0,0 +1,2 @@ +814456780 +1065904944 diff --git a/src/nubank/GOOGLE_PLAY_APP_ID.txt b/src/nubank/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..40ef71c --- /dev/null +++ b/src/nubank/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1,2 @@ +com.nu.production +br.com.easynvest.rendafixa diff --git a/src/nubank/OTHER.txt b/src/nubank/OTHER.txt new file mode 100644 index 0000000..d01fc7a --- /dev/null +++ b/src/nubank/OTHER.txt @@ -0,0 +1,2 @@ +All Nubank assets +All other Nubank assets diff --git a/src/nubank/URL.txt b/src/nubank/URL.txt new file mode 100644 index 0000000..6d5b99e --- /dev/null +++ b/src/nubank/URL.txt @@ -0,0 +1,16 @@ +*.nuinvest.com.br +*.investnews.com.br +*.nubank.com.br +*.nu.com.mx +*.nu.com.co +*.nu.com.ar +*.spinpay.com.br +*.olivia.ai +*.cognitect.com +*.datomic.com +*.easynvest.com.br +*.plataformatec.com +*.plataformatec.com.br +*.nuinternational.com +*.investidores.nu +*.somoszetta.org.br diff --git a/src/nubank/WILDCARD.txt b/src/nubank/WILDCARD.txt new file mode 100644 index 0000000..740d033 --- /dev/null +++ b/src/nubank/WILDCARD.txt @@ -0,0 +1,32 @@ +http://*.investnews.com.br +http://*.nubank.com.br +http://*.nu.com.mx +http://*.nu.com.co +http://*.nu.com.ar +http://*.nuinvest.com.br +http://*.spinpay.com.br +http://*.olivia.ai +http://*.cognitect.com +http://*.datomic.com +http://*.easynvest.com.br +http://*.plataformatec.com +http://*.plataformatec.com.br +http://*.nuinternational.com +http://*.investidores.nu +http://*.somoszetta.org.br +*.investnews.com.br +*.nubank.com.br +*.nu.com.mx +*.nu.com.co +*.nu.com.ar +*.nuinvest.com.br +*.spinpay.com.br +*.olivia.ai +*.cognitect.com +*.datomic.com +*.easynvest.com.br +*.plataformatec.com +*.plataformatec.com.br +*.nuinternational.com +*.investidores.nu +*.somoszetta.org.br diff --git a/src/nubank/note.txt b/src/nubank/note.txt new file mode 100644 index 0000000..41ba8e7 --- /dev/null +++ b/src/nubank/note.txt @@ -0,0 +1 @@ +50348 https://hackerone.com/nubank Nubank nubank diff --git a/src/nuri/APPLE_STORE_APP_ID.txt b/src/nuri/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..4a9b3cc --- /dev/null +++ b/src/nuri/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +com.bitwala.app diff --git a/src/nuri/GOOGLE_PLAY_APP_ID.txt b/src/nuri/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..4a9b3cc --- /dev/null +++ b/src/nuri/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.bitwala.app diff --git a/src/nuri/URL.txt b/src/nuri/URL.txt new file mode 100644 index 0000000..741825a --- /dev/null +++ b/src/nuri/URL.txt @@ -0,0 +1,10 @@ +https://www.bitwala.com +https://app.bitwala.com +api.app.bitwala.com +https://www.nuri.com +https://app.nuri.com/ +api.app.nuri.com +www.bitwala.com +app.bitwala.com +www.nuri.com +app.nuri.com diff --git a/src/nuri/note.txt b/src/nuri/note.txt new file mode 100644 index 0000000..7bc254f --- /dev/null +++ b/src/nuri/note.txt @@ -0,0 +1 @@ +41380 https://hackerone.com/nuri Nuri nuri diff --git a/src/nutanix/URL.txt b/src/nutanix/URL.txt new file mode 100644 index 0000000..86eaf3c --- /dev/null +++ b/src/nutanix/URL.txt @@ -0,0 +1,18 @@ +support.nutanix.com +ticket.nutanix.com +my.nutanix.com +jira.nutanix.com +nutanix.com +install.nutanix.com +bootcamp.nutanix.com +productsizer.nutanix.com +gp.nutanix.com +stage-billing.nutanix.com +idp.nutanix.com +cpq.nutanix.com +iot.nutanix.com +frame.nutanix.com +beam.nutanix.com +*.nutanix.com +www.nutanix.dev +testdrive.nutanix.com diff --git a/src/nutanix/WILDCARD.txt b/src/nutanix/WILDCARD.txt new file mode 100644 index 0000000..dd975a4 --- /dev/null +++ b/src/nutanix/WILDCARD.txt @@ -0,0 +1,2 @@ +http://*.nutanix.com +*.nutanix.com diff --git a/src/nutanix/note.txt b/src/nutanix/note.txt new file mode 100644 index 0000000..bc6a6c2 --- /dev/null +++ b/src/nutanix/note.txt @@ -0,0 +1 @@ +16887 https://hackerone.com/nutanix Nutanix nutanix diff --git a/src/o1-labs/note.txt b/src/o1-labs/note.txt new file mode 100644 index 0000000..8420760 --- /dev/null +++ b/src/o1-labs/note.txt @@ -0,0 +1 @@ +48984 https://hackerone.com/o1-labs O1 Labs o1-labs diff --git a/src/oaknorth_bank/APPLE_STORE_APP_ID.txt b/src/oaknorth_bank/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..dcdd265 --- /dev/null +++ b/src/oaknorth_bank/APPLE_STORE_APP_ID.txt @@ -0,0 +1,2 @@ +https://apps.apple.com/gb/app/oaknorth-business/id1633477300 +https://apps.apple.com/gb/app/oaknorth-mobile-banking/id1476387507 diff --git a/src/oaknorth_bank/GOOGLE_PLAY_APP_ID.txt b/src/oaknorth_bank/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..0e6b3bd --- /dev/null +++ b/src/oaknorth_bank/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1,2 @@ +com.oaknorth.businessbanking +com.oaknorth.oaknorthmobilebanking diff --git a/src/oaknorth_bank/WILDCARD.txt b/src/oaknorth_bank/WILDCARD.txt new file mode 100644 index 0000000..c8a3d3b --- /dev/null +++ b/src/oaknorth_bank/WILDCARD.txt @@ -0,0 +1,4 @@ +*.oaknorth.co.uk +*.oaknorth-it.com +*.oaknorth-prod.com +*.oaknorth.com diff --git a/src/oaknorth_bank/note.txt b/src/oaknorth_bank/note.txt new file mode 100644 index 0000000..0a36730 --- /dev/null +++ b/src/oaknorth_bank/note.txt @@ -0,0 +1 @@ +69717 https://hackerone.com/oaknorth_bank OakNorth Bank oaknorth_bank diff --git a/src/oanda/APPLE_STORE_APP_ID.txt b/src/oanda/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..d580b39 --- /dev/null +++ b/src/oanda/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +370922777 diff --git a/src/oanda/GOOGLE_PLAY_APP_ID.txt b/src/oanda/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..c8caf7a --- /dev/null +++ b/src/oanda/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.oanda.fxtrade diff --git a/src/oanda/URL.txt b/src/oanda/URL.txt new file mode 100644 index 0000000..ad31fc3 --- /dev/null +++ b/src/oanda/URL.txt @@ -0,0 +1,5 @@ +*.oanda.com +*.oanda.jp +*.tms.pl +*.tmsbrokers.com +*.investmentuniversity.pl diff --git a/src/oanda/WILDCARD.txt b/src/oanda/WILDCARD.txt new file mode 100644 index 0000000..b766653 --- /dev/null +++ b/src/oanda/WILDCARD.txt @@ -0,0 +1,8 @@ +http://*.oanda.com +http://*.oanda.jp +http://*.tms.pl +http://*.tmsbrokers.com +*.oanda.com +*.oanda.jp +*.tms.pl +*.tmsbrokers.com diff --git a/src/oanda/note.txt b/src/oanda/note.txt new file mode 100644 index 0000000..5819e4f --- /dev/null +++ b/src/oanda/note.txt @@ -0,0 +1 @@ +54261 https://hackerone.com/oanda OANDA oanda diff --git a/src/oasis_protocol_foundation/SOURCE_CODE.txt b/src/oasis_protocol_foundation/SOURCE_CODE.txt new file mode 100644 index 0000000..9d86314 --- /dev/null +++ b/src/oasis_protocol_foundation/SOURCE_CODE.txt @@ -0,0 +1,9 @@ +https://github.com/oasisprotocol/oasis-core +https://github.com/oasisprotocol/deoxysii +https://github.com/oasisprotocol/deoxysii-rust +https://github.com/oasisprotocol/ed25519 +https://github.com/oasisprotocol/oasis-sdk +https://github.com/oasisprotocol/curve25519-voi +https://github.com/oasisprotocol/oasis-wallet-web +https://github.com/oasisprotocol/oasis-wallet-ext +github.com/oasisprotocol/explorer diff --git a/src/oasis_protocol_foundation/URL.txt b/src/oasis_protocol_foundation/URL.txt new file mode 100644 index 0000000..b97d717 --- /dev/null +++ b/src/oasis_protocol_foundation/URL.txt @@ -0,0 +1,6 @@ +wallet.oasis.io +status.oasis.io +http://emerald.oasis.dev +http://grpc.oasis.dev +http://rosetta.oasis.dev/api/mainnet +http://sapphire.oasis.io diff --git a/src/oasis_protocol_foundation/note.txt b/src/oasis_protocol_foundation/note.txt new file mode 100644 index 0000000..8ab1946 --- /dev/null +++ b/src/oasis_protocol_foundation/note.txt @@ -0,0 +1 @@ +43225 https://hackerone.com/oasis_protocol_foundation Oasis Protocol Foundation oasis_protocol_foundation diff --git a/src/oasisprotocol/SOURCE_CODE.txt b/src/oasisprotocol/SOURCE_CODE.txt new file mode 100644 index 0000000..16ada69 --- /dev/null +++ b/src/oasisprotocol/SOURCE_CODE.txt @@ -0,0 +1,8 @@ +https://github.com/oasisprotocol/oasis-core +https://github.com/oasisprotocol/deoxysii +https://github.com/oasisprotocol/deoxysii-rust +https://github.com/oasisprotocol/oasis-sdk +https://github.com/oasisprotocol/curve25519-voi +https://github.com/oasisprotocol/oasis-wallet-web +https://github.com/oasisprotocol/oasis-wallet-ext +github.com/oasisprotocol/explorer diff --git a/src/oasisprotocol/URL.txt b/src/oasisprotocol/URL.txt new file mode 100644 index 0000000..b97d717 --- /dev/null +++ b/src/oasisprotocol/URL.txt @@ -0,0 +1,6 @@ +wallet.oasis.io +status.oasis.io +http://emerald.oasis.dev +http://grpc.oasis.dev +http://rosetta.oasis.dev/api/mainnet +http://sapphire.oasis.io diff --git a/src/oasisprotocol/note.txt b/src/oasisprotocol/note.txt new file mode 100644 index 0000000..f4047c0 --- /dev/null +++ b/src/oasisprotocol/note.txt @@ -0,0 +1 @@ +43225 https://hackerone.com/oasisprotocol Oasis Protocol Foundation oasisprotocol diff --git a/src/octopus-energy/note.txt b/src/octopus-energy/note.txt new file mode 100644 index 0000000..50d86f8 --- /dev/null +++ b/src/octopus-energy/note.txt @@ -0,0 +1,2 @@ +53236 https://hackerone.com/octopus-energy Octopus Energy octopus-energy +53236 https://hackerone.com/octopus-energy Octopus Energy Group octopus-energy diff --git a/src/ohiosecretaryofstate/URL.txt b/src/ohiosecretaryofstate/URL.txt new file mode 100644 index 0000000..c7f0091 --- /dev/null +++ b/src/ohiosecretaryofstate/URL.txt @@ -0,0 +1,10 @@ +*.boe.ohio.gov +*.militaryvotes.ohio.gov +*.ohiobusinesscentral.gov +*.ohiosecretaryofstate.gov +*.ohiosos.gov +*.safeathomeohio.gov +*.sos.state.oh.us +*.vote.ohio.gov +*.voteohio.gov +*.electionintegrity.ohio.gov diff --git a/src/ohiosecretaryofstate/WILDCARD.txt b/src/ohiosecretaryofstate/WILDCARD.txt new file mode 100644 index 0000000..a673edc --- /dev/null +++ b/src/ohiosecretaryofstate/WILDCARD.txt @@ -0,0 +1,20 @@ +http://*.boe.ohio.gov +http://*.militaryvotes.ohio.gov +http://*.ohiobusinesscentral.gov +http://*.ohiosecretaryofstate.gov +http://*.ohiosos.gov +http://*.safeathomeohio.gov +http://*.sos.state.oh.us +http://*.vote.ohio.gov +http://*.voteohio.gov +http://*.electionintegrity.ohio.gov +*.boe.ohio.gov +*.militaryvotes.ohio.gov +*.ohiobusinesscentral.gov +*.ohiosecretaryofstate.gov +*.ohiosos.gov +*.safeathomeohio.gov +*.sos.state.oh.us +*.vote.ohio.gov +*.voteohio.gov +*.electionintegrity.ohio.gov diff --git a/src/ohiosecretaryofstate/note.txt b/src/ohiosecretaryofstate/note.txt new file mode 100644 index 0000000..4834fbe --- /dev/null +++ b/src/ohiosecretaryofstate/note.txt @@ -0,0 +1 @@ +50286 https://hackerone.com/ohiosecretaryofstate Ohio Secretary of State ohiosecretaryofstate diff --git a/src/ok/APPLE_STORE_APP_ID.txt b/src/ok/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..45774c6 --- /dev/null +++ b/src/ok/APPLE_STORE_APP_ID.txt @@ -0,0 +1,2 @@ +398465290 +1095345669 diff --git a/src/ok/GOOGLE_PLAY_APP_ID.txt b/src/ok/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..7bdfb21 --- /dev/null +++ b/src/ok/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1,2 @@ +ru.ok.android +ru.ok.messages diff --git a/src/ok/URL.txt b/src/ok/URL.txt new file mode 100644 index 0000000..f5d6c82 --- /dev/null +++ b/src/ok/URL.txt @@ -0,0 +1,5 @@ +ok.ru +*.ok.ru +tamtam.chat +ok.me +apiok.ru diff --git a/src/ok/WILDCARD.txt b/src/ok/WILDCARD.txt new file mode 100644 index 0000000..f620197 --- /dev/null +++ b/src/ok/WILDCARD.txt @@ -0,0 +1,2 @@ +http://*.ok.ru +*.ok.ru diff --git a/src/ok/note.txt b/src/ok/note.txt new file mode 100644 index 0000000..8fc0826 --- /dev/null +++ b/src/ok/note.txt @@ -0,0 +1 @@ +1782 https://hackerone.com/ok ok.ru ok diff --git a/src/okg/OTHER.txt b/src/okg/OTHER.txt new file mode 100644 index 0000000..29ca085 --- /dev/null +++ b/src/okg/OTHER.txt @@ -0,0 +1,10 @@ +OKX Android APK +OKX iOS APP +OKT Chain +OKX Wallet Chrome Extension +OKX Wallet Edge Add-ons +OKX Wallet Safari Extension +Mac OS Executable +Windows OS Executable +Okcoin Android APK +Okcoin iOS App diff --git a/src/okg/WILDCARD.txt b/src/okg/WILDCARD.txt new file mode 100644 index 0000000..2d0199a --- /dev/null +++ b/src/okg/WILDCARD.txt @@ -0,0 +1,4 @@ +*.okx.com +*.okcoin.com +*.oklink.com +*.okg.com diff --git a/src/okg/note.txt b/src/okg/note.txt new file mode 100644 index 0000000..4aa461e --- /dev/null +++ b/src/okg/note.txt @@ -0,0 +1 @@ +60793 https://hackerone.com/okg OKG okg diff --git a/src/okx/OTHER.txt b/src/okx/OTHER.txt new file mode 100644 index 0000000..e017004 --- /dev/null +++ b/src/okx/OTHER.txt @@ -0,0 +1,12 @@ +Android APK: Download here https://play.google.com/store/apps/dev?id=5411538746886747470 +iOS APP: Download here https://apps.apple.com/hk/app/okx-buy-bitcoin-eth-crypto/id1327268470?l=en +Mac OS Executable: Download here https://www.okx.com/download +Windows OS Executable: Download here https://www.okx.com/download +OKT Chain +OKX Wallet Chrome Extension +OKX Wallet Edge Add-ons +OKX Wallet Safari Extension +Android APK +iOS APP +Mac OS Executable +Windows OS Executable diff --git a/src/okx/URL.txt b/src/okx/URL.txt new file mode 100644 index 0000000..41a7c9b --- /dev/null +++ b/src/okx/URL.txt @@ -0,0 +1,3 @@ +*.okx.com +https://www.okx.com/docs-v5/en/#market-maker-program +https://www.okx.com/docs/en/ diff --git a/src/okx/WILDCARD.txt b/src/okx/WILDCARD.txt new file mode 100644 index 0000000..c1916ad --- /dev/null +++ b/src/okx/WILDCARD.txt @@ -0,0 +1,2 @@ +http://*.okx.com +*.okx.com diff --git a/src/okx/note.txt b/src/okx/note.txt new file mode 100644 index 0000000..146ce8e --- /dev/null +++ b/src/okx/note.txt @@ -0,0 +1 @@ +60793 https://hackerone.com/okx OKX okx diff --git a/src/olx/note.txt b/src/olx/note.txt new file mode 100644 index 0000000..ba23296 --- /dev/null +++ b/src/olx/note.txt @@ -0,0 +1 @@ +8146 https://hackerone.com/olx OLX olx diff --git a/src/omise/APPLE_STORE_APP_ID.txt b/src/omise/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..6e80da6 --- /dev/null +++ b/src/omise/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +co.omise.omise diff --git a/src/omise/GOOGLE_PLAY_APP_ID.txt b/src/omise/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..6e80da6 --- /dev/null +++ b/src/omise/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +co.omise.omise diff --git a/src/omise/SOURCE_CODE.txt b/src/omise/SOURCE_CODE.txt new file mode 100644 index 0000000..1142736 --- /dev/null +++ b/src/omise/SOURCE_CODE.txt @@ -0,0 +1 @@ +github.com diff --git a/src/omise/URL.txt b/src/omise/URL.txt new file mode 100644 index 0000000..b77afa3 --- /dev/null +++ b/src/omise/URL.txt @@ -0,0 +1,9 @@ +vault.omise.co +api.omise.co +dashboard.omise.co +link.omise.co +offsite.omise.co +dashboard2.omise.co +www.omise.co +linksplus-dashboard.omise.co +www.opn.ooo diff --git a/src/omise/note.txt b/src/omise/note.txt new file mode 100644 index 0000000..cc71ac9 --- /dev/null +++ b/src/omise/note.txt @@ -0,0 +1 @@ +21045 https://hackerone.com/omise Omise omise diff --git a/src/on/URL.txt b/src/on/URL.txt new file mode 100644 index 0000000..a23ea70 --- /dev/null +++ b/src/on/URL.txt @@ -0,0 +1,4 @@ +*.on-running.com +on-app-backend.on-running.com +on.com +on-app-backend.on.com diff --git a/src/on/WILDCARD.txt b/src/on/WILDCARD.txt new file mode 100644 index 0000000..bd4d75e --- /dev/null +++ b/src/on/WILDCARD.txt @@ -0,0 +1,3 @@ +http://*.on-running.com +*.on-running.com +*.on.com diff --git a/src/on/note.txt b/src/on/note.txt new file mode 100644 index 0000000..839e8b2 --- /dev/null +++ b/src/on/note.txt @@ -0,0 +1 @@ +50928 https://hackerone.com/on On on diff --git a/src/one_zero_vdp/URL.txt b/src/one_zero_vdp/URL.txt new file mode 100644 index 0000000..9bfa1dd --- /dev/null +++ b/src/one_zero_vdp/URL.txt @@ -0,0 +1 @@ +*.onezerobank.com diff --git a/src/one_zero_vdp/WILDCARD.txt b/src/one_zero_vdp/WILDCARD.txt new file mode 100644 index 0000000..c5297c1 --- /dev/null +++ b/src/one_zero_vdp/WILDCARD.txt @@ -0,0 +1,2 @@ +http://*.onezerobank.com +*.onezerobank.com diff --git a/src/one_zero_vdp/note.txt b/src/one_zero_vdp/note.txt new file mode 100644 index 0000000..afb1efe --- /dev/null +++ b/src/one_zero_vdp/note.txt @@ -0,0 +1 @@ +59122 https://hackerone.com/one_zero_vdp ONE ZERO VDP one_zero_vdp diff --git a/src/open-xchange/APPLE_STORE_APP_ID.txt b/src/open-xchange/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..bddf899 --- /dev/null +++ b/src/open-xchange/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +1585939206 diff --git a/src/open-xchange/DOWNLOADABLE_EXECUTABLES.txt b/src/open-xchange/DOWNLOADABLE_EXECUTABLES.txt new file mode 100644 index 0000000..eb42f4b --- /dev/null +++ b/src/open-xchange/DOWNLOADABLE_EXECUTABLES.txt @@ -0,0 +1,2 @@ +https://repo.powerdns.com +https://repo.dovecot.org diff --git a/src/open-xchange/GOOGLE_PLAY_APP_ID.txt b/src/open-xchange/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..8ec86f5 --- /dev/null +++ b/src/open-xchange/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.openexchange.drive.vanilla diff --git a/src/open-xchange/SOURCE_CODE.txt b/src/open-xchange/SOURCE_CODE.txt new file mode 100644 index 0000000..f05f3e7 --- /dev/null +++ b/src/open-xchange/SOURCE_CODE.txt @@ -0,0 +1,5 @@ +https://github.com/dovecot/core +https://github.com/dovecot/pigeonhole +https://github.com/PowerDNS/pdns +https://github.com/open-xchange/appsuite-middleware +https://github.com/open-xchange/appsuite-frontend diff --git a/src/open-xchange/URL.txt b/src/open-xchange/URL.txt new file mode 100644 index 0000000..31d4d6c --- /dev/null +++ b/src/open-xchange/URL.txt @@ -0,0 +1 @@ +sandbox.open-xchange.com diff --git a/src/open-xchange/note.txt b/src/open-xchange/note.txt new file mode 100644 index 0000000..7d27bfa --- /dev/null +++ b/src/open-xchange/note.txt @@ -0,0 +1 @@ +8906 https://hackerone.com/open-xchange Open-Xchange open-xchange diff --git a/src/openmage/SOURCE_CODE.txt b/src/openmage/SOURCE_CODE.txt new file mode 100644 index 0000000..cd6444a --- /dev/null +++ b/src/openmage/SOURCE_CODE.txt @@ -0,0 +1 @@ +https://github.com/OpenMage/magento-lts diff --git a/src/openmage/URL.txt b/src/openmage/URL.txt new file mode 100644 index 0000000..0121c0e --- /dev/null +++ b/src/openmage/URL.txt @@ -0,0 +1,2 @@ +https://demo.openmage.org/ +demo.openmage.org diff --git a/src/openmage/note.txt b/src/openmage/note.txt new file mode 100644 index 0000000..e7da08b --- /dev/null +++ b/src/openmage/note.txt @@ -0,0 +1 @@ +46502 https://hackerone.com/openmage OpenMage openmage diff --git a/src/opensea/APPLE_STORE_APP_ID.txt b/src/opensea/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..aac66e5 --- /dev/null +++ b/src/opensea/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +io.opensea diff --git a/src/opensea/GOOGLE_PLAY_APP_ID.txt b/src/opensea/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..aac66e5 --- /dev/null +++ b/src/opensea/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +io.opensea diff --git a/src/opensea/OTHER.txt b/src/opensea/OTHER.txt new file mode 100644 index 0000000..79f78dc --- /dev/null +++ b/src/opensea/OTHER.txt @@ -0,0 +1,6 @@ +OpenSea’s Smart Contracts +OpenSea's Polygon and Klaytn contracts +Seaport Smart Contract +Seadrop/Fee Collector Smart Contract +Broken Links +Seadrop Smart Contract diff --git a/src/opensea/SMART_CONTRACT.txt b/src/opensea/SMART_CONTRACT.txt new file mode 100644 index 0000000..c5a6737 --- /dev/null +++ b/src/opensea/SMART_CONTRACT.txt @@ -0,0 +1,3 @@ +https://etherscan.io/address/0x0000a26b00c1F0DF003000390027140000fAa719 +https://github.com/ProjectOpenSea/seaport#deployments +https://etherscan.io/address/0x00005EA00Ac477B1030CE78506496e8C2dE24bf5 diff --git a/src/opensea/URL.txt b/src/opensea/URL.txt new file mode 100644 index 0000000..5d33ca6 --- /dev/null +++ b/src/opensea/URL.txt @@ -0,0 +1,2 @@ +opensea.io +pro.opensea.io diff --git a/src/opensea/note.txt b/src/opensea/note.txt new file mode 100644 index 0000000..3a614a1 --- /dev/null +++ b/src/opensea/note.txt @@ -0,0 +1 @@ +54722 https://hackerone.com/opensea OpenSea opensea diff --git a/src/oppo/OTHER.txt b/src/oppo/OTHER.txt new file mode 100644 index 0000000..93d0daa --- /dev/null +++ b/src/oppo/OTHER.txt @@ -0,0 +1 @@ +ROM diff --git a/src/oppo/OTHER_APK.txt b/src/oppo/OTHER_APK.txt new file mode 100644 index 0000000..d3efc2f --- /dev/null +++ b/src/oppo/OTHER_APK.txt @@ -0,0 +1,20 @@ +com.oppo.usercenter +com.heytap.usercenter +com.nearme.atlas +com.nearme.wallet +com.coloros.browser +com.nearme.browser +com.heytap.browser +com.oppo.market +com.heytap.market +com.oppo.cloud +com.heytap.cloud +com.coloros.findphone.client +com.coloros.findphone.client2 +com.coloros.findmyphone +com.oppo.speechassist +com.coloros.speechassist +com.nearme.instant.platform +com.coloros.backuprestore +com.coloros.encryption +com.coloros.securepay diff --git a/src/oppo/URL.txt b/src/oppo/URL.txt new file mode 100644 index 0000000..b5873b0 --- /dev/null +++ b/src/oppo/URL.txt @@ -0,0 +1,22 @@ +*.oppo.com +*.oppo.cn +*.opposhop.cn +*.coloros.com +*.nearme.com.cn +*.oppomobile.com +*.oppofind.com +*.heytap.com +*.heytapmobi.com +*.realme.com +*.realme.net +*.heytapmobile.com +*.realmeservice.com +*.realmemobile.com +*.realmebbs.com +*.myoas.net +*.heytapdownload.com +*.heytapimage.com +*.keke.cn +*.oppopay.com +*.finzfin.com +*.wanyol.com diff --git a/src/oppo/note.txt b/src/oppo/note.txt new file mode 100644 index 0000000..1ec2f8f --- /dev/null +++ b/src/oppo/note.txt @@ -0,0 +1 @@ +45907 https://hackerone.com/oppo OPPO oppo diff --git a/src/orion_labs/APPLE_STORE_APP_ID.txt b/src/orion_labs/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..2f99966 --- /dev/null +++ b/src/orion_labs/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +984202314 diff --git a/src/orion_labs/GOOGLE_PLAY_APP_ID.txt b/src/orion_labs/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..4c39c78 --- /dev/null +++ b/src/orion_labs/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.onbeep.obiwan diff --git a/src/orion_labs/SOURCE_CODE.txt b/src/orion_labs/SOURCE_CODE.txt new file mode 100644 index 0000000..fdb65ff --- /dev/null +++ b/src/orion_labs/SOURCE_CODE.txt @@ -0,0 +1,2 @@ +https://github.com/orion-labs/node-red-contrib-orion +https://github.com/orion-labs/node-orion diff --git a/src/orion_labs/URL.txt b/src/orion_labs/URL.txt new file mode 100644 index 0000000..c69c92e --- /dev/null +++ b/src/orion_labs/URL.txt @@ -0,0 +1,3 @@ +login.orionlabs.io +observatory.orionlabs.io +api.orionlabs.io diff --git a/src/orion_labs/note.txt b/src/orion_labs/note.txt new file mode 100644 index 0000000..32e1991 --- /dev/null +++ b/src/orion_labs/note.txt @@ -0,0 +1 @@ +41710 https://hackerone.com/orion_labs Orion Labs orion_labs diff --git a/src/otf/URL.txt b/src/otf/URL.txt new file mode 100644 index 0000000..07447fe --- /dev/null +++ b/src/otf/URL.txt @@ -0,0 +1,3 @@ +sandbox.opentech.fund +www.opentech.fund +apply.opentech.fund diff --git a/src/otf/note.txt b/src/otf/note.txt new file mode 100644 index 0000000..a8b1ec4 --- /dev/null +++ b/src/otf/note.txt @@ -0,0 +1 @@ +315 https://hackerone.com/otf Open Technology Fund otf diff --git a/src/overloop/URL.txt b/src/overloop/URL.txt new file mode 100644 index 0000000..b2660b8 --- /dev/null +++ b/src/overloop/URL.txt @@ -0,0 +1 @@ +app.overloop.com diff --git a/src/overloop/note.txt b/src/overloop/note.txt new file mode 100644 index 0000000..c57cc86 --- /dev/null +++ b/src/overloop/note.txt @@ -0,0 +1 @@ +42426 https://hackerone.com/overloop Overloop overloop diff --git a/src/owncloud/APPLE_STORE_APP_ID.txt b/src/owncloud/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..4b2b9b5 --- /dev/null +++ b/src/owncloud/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +owncloud.iosapp diff --git a/src/owncloud/DOWNLOADABLE_EXECUTABLES.txt b/src/owncloud/DOWNLOADABLE_EXECUTABLES.txt new file mode 100644 index 0000000..691b707 --- /dev/null +++ b/src/owncloud/DOWNLOADABLE_EXECUTABLES.txt @@ -0,0 +1 @@ +Desktop Client diff --git a/src/owncloud/GOOGLE_PLAY_APP_ID.txt b/src/owncloud/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..be45403 --- /dev/null +++ b/src/owncloud/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.owncloud.android diff --git a/src/owncloud/SOURCE_CODE.txt b/src/owncloud/SOURCE_CODE.txt new file mode 100644 index 0000000..25801ef --- /dev/null +++ b/src/owncloud/SOURCE_CODE.txt @@ -0,0 +1,12 @@ +owncloud/core +owncloud/user_ldap +owncloud/oauth2 +owncloud/customgroups +owncloud/guests +owncloud/richdocuments +owncloud/activity +owncloud/files +owncloud/notifications +owncloud/gallery +owncloud/updater +https://github.com/owncloud/ocis diff --git a/src/owncloud/note.txt b/src/owncloud/note.txt new file mode 100644 index 0000000..2d18e20 --- /dev/null +++ b/src/owncloud/note.txt @@ -0,0 +1 @@ +3059 https://hackerone.com/owncloud ownCloud owncloud diff --git a/src/owox/note.txt b/src/owox/note.txt new file mode 100644 index 0000000..d45cada --- /dev/null +++ b/src/owox/note.txt @@ -0,0 +1 @@ +12633 https://hackerone.com/owox OWOX, Inc. owox diff --git a/src/oyo_rooms/APPLE_STORE_APP_ID.txt b/src/oyo_rooms/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..0673ebd --- /dev/null +++ b/src/oyo_rooms/APPLE_STORE_APP_ID.txt @@ -0,0 +1,7 @@ +com.oyo.oyo-ios +com.belvilla.rental +com.oyo.partnerapp +com.oyo.campus +com.oyo.maestro +work.innov8.mobilecowork +com.oyorooms.weddingz.content diff --git a/src/oyo_rooms/GOOGLE_PLAY_APP_ID.txt b/src/oyo_rooms/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..fcfed4c --- /dev/null +++ b/src/oyo_rooms/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1,12 @@ +com.oyo.consumer +com.oyo.partnerapp +com.oyo.property +com.bookertools +com.oyo.orbis.ovh +com.oyo.homes.maestro +com.oyo.mmapp +com.jedi.jediaudit +com.oyorooms.coworkfoodvendor +com.oyo.consumerlite +com.guerrilla.innov8coworking +com.oyorooms.weddingz.content diff --git a/src/oyo_rooms/URL.txt b/src/oyo_rooms/URL.txt new file mode 100644 index 0000000..ec8036c --- /dev/null +++ b/src/oyo_rooms/URL.txt @@ -0,0 +1,3 @@ +traum-ferienwohnungen.de +preprod.oyorooms.ms +http://patron.oyo.com/blog/in diff --git a/src/oyo_rooms/WILDCARD.txt b/src/oyo_rooms/WILDCARD.txt new file mode 100644 index 0000000..d5e588c --- /dev/null +++ b/src/oyo_rooms/WILDCARD.txt @@ -0,0 +1,30 @@ +http://*.oyorooms.com +http://*.belvilla.com +http://*.dancenter.se +http://*.traum-ferienwohnungen.de +http://*.oyohotels.cn +http://*.oyoos.com +http://*.oyohotels.top +http://*.admiralstrand.dk +http://*.villaxl.com +http://*.tui-ferienhaus.de +http://*.leisure-partners.net +http://*.oyocircle.com +http://*.oyovacationhomes.com +http://*.topictravel.nl +http://*.danland.dk +http://*.direct-booker.com +http://*.booker-tools.com +http://*.belvilla.fr +http://*.stugsommar.se +http://*.oyo-vacation-homes.net +http://*.oyotimessquare.com +http://*.weddingz.in +http://*.oyolasvegas.com +http://*.oyolife.in +http://*.belvilla.net +http://*.innov8.work +http://*.oyotownhouse.com +http://*.workflobyoyo.com +http://*.oyoworkspaces.com +http://*.oyorooms.io diff --git a/src/oyo_rooms/note.txt b/src/oyo_rooms/note.txt new file mode 100644 index 0000000..3237e9e --- /dev/null +++ b/src/oyo_rooms/note.txt @@ -0,0 +1 @@ +58946 https://hackerone.com/oyo_rooms OYO Rooms oyo_rooms diff --git a/src/ozon/APPLE_STORE_APP_ID.txt b/src/ozon/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..37bd23b --- /dev/null +++ b/src/ozon/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +407804998 diff --git a/src/ozon/GOOGLE_PLAY_APP_ID.txt b/src/ozon/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..bdf653c --- /dev/null +++ b/src/ozon/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +ru.ozon.app.android diff --git a/src/ozon/URL.txt b/src/ozon/URL.txt new file mode 100644 index 0000000..304ac27 --- /dev/null +++ b/src/ozon/URL.txt @@ -0,0 +1,3 @@ +www.ozon.ru +id.ozon.ru +job.ozon.ru diff --git a/src/ozon/note.txt b/src/ozon/note.txt new file mode 100644 index 0000000..903c8bd --- /dev/null +++ b/src/ozon/note.txt @@ -0,0 +1 @@ +47507 https://hackerone.com/ozon Ozon ozon diff --git a/src/palantir_public/OTHER.txt b/src/palantir_public/OTHER.txt new file mode 100644 index 0000000..5a140e4 --- /dev/null +++ b/src/palantir_public/OTHER.txt @@ -0,0 +1,2 @@ +Any public (Internet-facing) infrastructure owned and operated by Palantir. +Any public cloud (e.g. Amazon AWS, Microsoft Azure) resource or infrastructure operated and managed by Palantir. diff --git a/src/palantir_public/note.txt b/src/palantir_public/note.txt new file mode 100644 index 0000000..4ebf4b4 --- /dev/null +++ b/src/palantir_public/note.txt @@ -0,0 +1 @@ +55091 https://hackerone.com/palantir_public Palantir Public palantir_public diff --git a/src/palo_alto_software/URL.txt b/src/palo_alto_software/URL.txt new file mode 100644 index 0000000..8f3ea31 --- /dev/null +++ b/src/palo_alto_software/URL.txt @@ -0,0 +1,5 @@ +app.liveplan.com +www.paloalto.com +www.liveplan.com +www.bplans.com +www.mplans.com diff --git a/src/palo_alto_software/note.txt b/src/palo_alto_software/note.txt new file mode 100644 index 0000000..364756d --- /dev/null +++ b/src/palo_alto_software/note.txt @@ -0,0 +1 @@ +42327 https://hackerone.com/palo_alto_software Palo Alto Software palo_alto_software diff --git a/src/palta/APPLE_STORE_APP_ID.txt b/src/palta/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..0b54407 --- /dev/null +++ b/src/palta/APPLE_STORE_APP_ID.txt @@ -0,0 +1,3 @@ +1467720176 +1436732536 +1552207792 diff --git a/src/palta/GOOGLE_PLAY_APP_ID.txt b/src/palta/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..f5625f1 --- /dev/null +++ b/src/palta/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1,3 @@ +life.simple +com.lensa.app +coach.zing.fitness diff --git a/src/palta/URL.txt b/src/palta/URL.txt new file mode 100644 index 0000000..e713363 --- /dev/null +++ b/src/palta/URL.txt @@ -0,0 +1,7 @@ +neuralprisma.com +prismalabsteam.com +lensa-ai.com +prisma-ai.com +appapi.neuralprisma.com +https://simple-life-app.com/ +https://simple.life diff --git a/src/palta/note.txt b/src/palta/note.txt new file mode 100644 index 0000000..bf80e7a --- /dev/null +++ b/src/palta/note.txt @@ -0,0 +1 @@ +52950 https://hackerone.com/palta Palta palta diff --git a/src/panther_labs/URL.txt b/src/panther_labs/URL.txt new file mode 100644 index 0000000..ba390da --- /dev/null +++ b/src/panther_labs/URL.txt @@ -0,0 +1,3 @@ +*.runpanther.io +*.runpanther.com +*.panther.com diff --git a/src/panther_labs/WILDCARD.txt b/src/panther_labs/WILDCARD.txt new file mode 100644 index 0000000..122f186 --- /dev/null +++ b/src/panther_labs/WILDCARD.txt @@ -0,0 +1,6 @@ +http://*.panther.com +http://*.runpanther.io +http://*.runpanther.com +*.panther.com +*.runpanther.io +*.runpanther.com diff --git a/src/panther_labs/note.txt b/src/panther_labs/note.txt new file mode 100644 index 0000000..68a49e7 --- /dev/null +++ b/src/panther_labs/note.txt @@ -0,0 +1 @@ +41626 https://hackerone.com/panther_labs Panther Labs panther_labs diff --git a/src/paragonie/SOURCE_CODE.txt b/src/paragonie/SOURCE_CODE.txt new file mode 100644 index 0000000..4fe8d3c --- /dev/null +++ b/src/paragonie/SOURCE_CODE.txt @@ -0,0 +1,12 @@ +https://github.com/paragonie/sodium_compat +https://github.com/paragonie/easydb +https://github.com/paragonie/halite +https://github.com/paragonie/random_compat +https://github.com/paragonie/anti-csrf +https://github.com/paragonie/constant_time_encoding +https://github.com/paragonie/certainty +https://github.com/paragonie/password_lock +https://github.com/paragonie/gpg-mailer +https://github.com/paragonie/chronicle +https://github.com/paragonie/sapient +https://github.com/paragonie/paseto diff --git a/src/paragonie/note.txt b/src/paragonie/note.txt new file mode 100644 index 0000000..b7b0642 --- /dev/null +++ b/src/paragonie/note.txt @@ -0,0 +1 @@ +8539 https://hackerone.com/paragonie Paragon Initiative Enterprises paragonie diff --git a/src/parrot_sec/OTHER.txt b/src/parrot_sec/OTHER.txt new file mode 100644 index 0000000..0468c44 --- /dev/null +++ b/src/parrot_sec/OTHER.txt @@ -0,0 +1 @@ +Parrot Security OS diff --git a/src/parrot_sec/URL.txt b/src/parrot_sec/URL.txt new file mode 100644 index 0000000..fafdcc2 --- /dev/null +++ b/src/parrot_sec/URL.txt @@ -0,0 +1,2 @@ +https://parrotlinux.org +parrotlinux.org diff --git a/src/parrot_sec/note.txt b/src/parrot_sec/note.txt new file mode 100644 index 0000000..808eb8f --- /dev/null +++ b/src/parrot_sec/note.txt @@ -0,0 +1 @@ +20423 https://hackerone.com/parrot_sec Parrot Sec parrot_sec diff --git a/src/particle-health-vdp/URL.txt b/src/particle-health-vdp/URL.txt new file mode 100644 index 0000000..784e498 --- /dev/null +++ b/src/particle-health-vdp/URL.txt @@ -0,0 +1,9 @@ +portal.particlehealth.com +api.particlehealth.com +carequality.particlehealth.com +admin.particlehealth.com +ehealthexchange.particlehealth.com +ia.particlehealth.com +management.particlehealth.com +partner.particlehealth.com +sandbox.particlehealth.com diff --git a/src/particle-health-vdp/note.txt b/src/particle-health-vdp/note.txt new file mode 100644 index 0000000..f2bc27e --- /dev/null +++ b/src/particle-health-vdp/note.txt @@ -0,0 +1 @@ +53090 https://hackerone.com/particle-health-vdp Particle Health VDP particle-health-vdp diff --git a/src/passhash/SOURCE_CODE.txt b/src/passhash/SOURCE_CODE.txt new file mode 100644 index 0000000..3def22b --- /dev/null +++ b/src/passhash/SOURCE_CODE.txt @@ -0,0 +1 @@ +https://github.com/dhui/passhash diff --git a/src/passhash/note.txt b/src/passhash/note.txt new file mode 100644 index 0000000..6fdea6e --- /dev/null +++ b/src/passhash/note.txt @@ -0,0 +1 @@ +25570 https://hackerone.com/passhash passhash passhash diff --git a/src/payoneer/URL.txt b/src/payoneer/URL.txt new file mode 100644 index 0000000..90a0e42 --- /dev/null +++ b/src/payoneer/URL.txt @@ -0,0 +1,2 @@ +*.payoneer.com +payoneer.com.cn diff --git a/src/payoneer/note.txt b/src/payoneer/note.txt new file mode 100644 index 0000000..d021ee1 --- /dev/null +++ b/src/payoneer/note.txt @@ -0,0 +1 @@ +51514 https://hackerone.com/payoneer Payoneer payoneer diff --git a/src/paypal/APPLE_STORE_APP_ID.txt b/src/paypal/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..a157bdb --- /dev/null +++ b/src/paypal/APPLE_STORE_APP_ID.txt @@ -0,0 +1,6 @@ +com.paypal.herehd +351727428 +com.xoom.app +com.yourcompany.PPClient +com.paypal.here +com.paypal.merchant diff --git a/src/paypal/GOOGLE_PLAY_APP_ID.txt b/src/paypal/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..e5da4ff --- /dev/null +++ b/src/paypal/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1,5 @@ +com.xoom.android.app +com.paypal.merchant.client +com.paypal.android.p2pmobile +com.venmo +com.paypal.here diff --git a/src/paypal/OTHER.txt b/src/paypal/OTHER.txt new file mode 100644 index 0000000..17ca606 --- /dev/null +++ b/src/paypal/OTHER.txt @@ -0,0 +1,2 @@ +Braintree SDK +PayPal SDK diff --git a/src/paypal/SOURCE_CODE.txt b/src/paypal/SOURCE_CODE.txt new file mode 100644 index 0000000..3e16866 --- /dev/null +++ b/src/paypal/SOURCE_CODE.txt @@ -0,0 +1 @@ +https://github.com/paypal/react-paypal-js diff --git a/src/paypal/URL.txt b/src/paypal/URL.txt new file mode 100644 index 0000000..0d142e3 --- /dev/null +++ b/src/paypal/URL.txt @@ -0,0 +1,31 @@ +www.paypal-*.com +*.xoom.com +*.paypal.com +*.braintreegateway.com +*.paydiant.com +*.venmo.com +paypalobjects.com +paypal.me +py.pl +*.braintreepayments.com +*.braintree-api.com +*.braintree.tools +prequal.swiftfinancial.com +partner.swiftfinancial.com +decision.swiftfinancial.com +pigeon.swiftfinancial.com +scrutiny.swiftfinancial.com +www.swiftcapital.com +www.loanbuilder.com +www.swiftfinancial.com +api.swiftfinancial.com +my.swiftfinancial.com +api.loanbuilder.com +my.loanbuilder.com +loanbuilder.com +swiftfinancial.com +swiftcapital.com +*.paypalcorp.com +*.hyperwallet.com +*.paylution.com +sandbox.braintreegateway.com diff --git a/src/paypal/note.txt b/src/paypal/note.txt new file mode 100644 index 0000000..d904b5b --- /dev/null +++ b/src/paypal/note.txt @@ -0,0 +1 @@ +1915 https://hackerone.com/paypal PayPal paypal diff --git a/src/paystack-vdp/OTHER.txt b/src/paystack-vdp/OTHER.txt new file mode 100644 index 0000000..851c975 --- /dev/null +++ b/src/paystack-vdp/OTHER.txt @@ -0,0 +1 @@ +Assets which are owned by Paystack are in scope for this Vulnerability Disclosure Program diff --git a/src/paystack-vdp/URL.txt b/src/paystack-vdp/URL.txt new file mode 100644 index 0000000..27eecc1 --- /dev/null +++ b/src/paystack-vdp/URL.txt @@ -0,0 +1,8 @@ +*.paystackintegrations.com +nigerialogos.com +decodefintech.com +legacy.paystack.co +checkout.paystack.com +api.paystack.co +dashboard.paystack.com +standard.paystack.co diff --git a/src/paystack-vdp/WILDCARD.txt b/src/paystack-vdp/WILDCARD.txt new file mode 100644 index 0000000..c78f9eb --- /dev/null +++ b/src/paystack-vdp/WILDCARD.txt @@ -0,0 +1 @@ +*.paystack.com diff --git a/src/paystack-vdp/note.txt b/src/paystack-vdp/note.txt new file mode 100644 index 0000000..c858535 --- /dev/null +++ b/src/paystack-vdp/note.txt @@ -0,0 +1 @@ +50934 https://hackerone.com/paystack-vdp Paystack Vulnerability Disclosure paystack-vdp diff --git a/src/people_interactive/APPLE_STORE_APP_ID.txt b/src/people_interactive/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..2e7a781 --- /dev/null +++ b/src/people_interactive/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +com.shaadi.iphone diff --git a/src/people_interactive/GOOGLE_PLAY_APP_ID.txt b/src/people_interactive/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..33c251a --- /dev/null +++ b/src/people_interactive/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.shaadi.android diff --git a/src/people_interactive/note.txt b/src/people_interactive/note.txt new file mode 100644 index 0000000..b4fbdcc --- /dev/null +++ b/src/people_interactive/note.txt @@ -0,0 +1 @@ +41371 https://hackerone.com/people_interactive People Interactive people_interactive diff --git a/src/pfizer/note.txt b/src/pfizer/note.txt new file mode 100644 index 0000000..5dc6cd6 --- /dev/null +++ b/src/pfizer/note.txt @@ -0,0 +1 @@ +51045 https://hackerone.com/pfizer Pfizer pfizer diff --git a/src/phabricator/note.txt b/src/phabricator/note.txt new file mode 100644 index 0000000..3133d15 --- /dev/null +++ b/src/phabricator/note.txt @@ -0,0 +1 @@ +18 https://hackerone.com/phabricator Phabricator phabricator diff --git a/src/phpbb/SOURCE_CODE.txt b/src/phpbb/SOURCE_CODE.txt new file mode 100644 index 0000000..74275fd --- /dev/null +++ b/src/phpbb/SOURCE_CODE.txt @@ -0,0 +1 @@ +https://github.com/phpbb/phpbb diff --git a/src/phpbb/note.txt b/src/phpbb/note.txt new file mode 100644 index 0000000..9ffcc9e --- /dev/null +++ b/src/phpbb/note.txt @@ -0,0 +1 @@ +8936 https://hackerone.com/phpbb phpBB phpbb diff --git a/src/picsart/APPLE_STORE_APP_ID.txt b/src/picsart/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..be3dec8 --- /dev/null +++ b/src/picsart/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +587366035 diff --git a/src/picsart/GOOGLE_PLAY_APP_ID.txt b/src/picsart/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..8c60a7b --- /dev/null +++ b/src/picsart/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.picsart.studio diff --git a/src/picsart/URL.txt b/src/picsart/URL.txt new file mode 100644 index 0000000..e77da74 --- /dev/null +++ b/src/picsart/URL.txt @@ -0,0 +1,16 @@ +www.picsart.com +www.picsart.io +api.picsart.io +picsart.io +ai.picsart.com +api.picsart.com +content-discovery.picsart.io +video-api.picsart.io +revenue-tracking.picsart.io +demo.sdk.picsart.io +cdn-basic-content-api.picsart.io +t.picsart.com +stage.optifyr.com +optifyr.com +upload.picsart.com +console.picsart.io diff --git a/src/picsart/WINDOWS_APP_STORE_APP_ID.txt b/src/picsart/WINDOWS_APP_STORE_APP_ID.txt new file mode 100644 index 0000000..43200f2 --- /dev/null +++ b/src/picsart/WINDOWS_APP_STORE_APP_ID.txt @@ -0,0 +1 @@ +9WZDNCRFJ10M diff --git a/src/picsart/note.txt b/src/picsart/note.txt new file mode 100644 index 0000000..e472761 --- /dev/null +++ b/src/picsart/note.txt @@ -0,0 +1 @@ +44134 https://hackerone.com/picsart Picsart picsart diff --git a/src/pillarproject/APPLE_STORE_APP_ID.txt b/src/pillarproject/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..cd91ca3 --- /dev/null +++ b/src/pillarproject/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +com.pillarproject.wallet diff --git a/src/pillarproject/GOOGLE_PLAY_APP_ID.txt b/src/pillarproject/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..cd91ca3 --- /dev/null +++ b/src/pillarproject/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.pillarproject.wallet diff --git a/src/pillarproject/OTHER.txt b/src/pillarproject/OTHER.txt new file mode 100644 index 0000000..f5bf807 --- /dev/null +++ b/src/pillarproject/OTHER.txt @@ -0,0 +1,2 @@ +Platform Core API +Etherspot SDK diff --git a/src/pillarproject/note.txt b/src/pillarproject/note.txt new file mode 100644 index 0000000..a3ed760 --- /dev/null +++ b/src/pillarproject/note.txt @@ -0,0 +1 @@ +35350 https://hackerone.com/pillarproject Pillar Project Worldwide Limited pillarproject diff --git a/src/pingidentity/URL.txt b/src/pingidentity/URL.txt new file mode 100644 index 0000000..05a26bf --- /dev/null +++ b/src/pingidentity/URL.txt @@ -0,0 +1,6 @@ +https://ort-admin.pingone.com/* +https://console-staging.pingone.com/* +https://api-staging.pingone.com/* +https://apps-staging.pingone.com/* +https://ort-authenticator.pingone.com/* +https://ort-desktop.pingone.com/* diff --git a/src/pingidentity/WILDCARD.txt b/src/pingidentity/WILDCARD.txt new file mode 100644 index 0000000..a2dcd17 --- /dev/null +++ b/src/pingidentity/WILDCARD.txt @@ -0,0 +1,12 @@ +http://ort-admin.pingone.com/* +http://console-staging.pingone.com/* +http://api-staging.pingone.com/* +http://apps-staging.pingone.com/* +http://ort-authenticator.pingone.com/* +http://ort-desktop.pingone.com/* +https://ort-admin.pingone.com/* +https://console-staging.pingone.com/* +https://api-staging.pingone.com/* +https://apps-staging.pingone.com/* +https://ort-authenticator.pingone.com/* +https://ort-desktop.pingone.com/* diff --git a/src/pingidentity/note.txt b/src/pingidentity/note.txt new file mode 100644 index 0000000..0eafdf2 --- /dev/null +++ b/src/pingidentity/note.txt @@ -0,0 +1 @@ +25188 https://hackerone.com/pingidentity Ping Identity pingidentity diff --git a/src/pixiv/SOURCE_CODE.txt b/src/pixiv/SOURCE_CODE.txt new file mode 100644 index 0000000..a7e992c --- /dev/null +++ b/src/pixiv/SOURCE_CODE.txt @@ -0,0 +1 @@ +https://github.com/pixiv/charcoal diff --git a/src/pixiv/URL.txt b/src/pixiv/URL.txt new file mode 100644 index 0000000..a9cbc86 --- /dev/null +++ b/src/pixiv/URL.txt @@ -0,0 +1,15 @@ +booth.pm +sketch.pixiv.net +sensei.pixiv.net +accounts.pixiv.net +www.pixiv.net +hub.vroid.com +*.fanbox.cc +vroid.com +payment.pixiv.net +neoket.net +comic.pixiv.net +dic.pixiv.net +novel.pixiv.net +https://vroid.com/studio +coban.pixiv.net diff --git a/src/pixiv/WILDCARD.txt b/src/pixiv/WILDCARD.txt new file mode 100644 index 0000000..8a2af66 --- /dev/null +++ b/src/pixiv/WILDCARD.txt @@ -0,0 +1,2 @@ +http://*.fanbox.cc +*.fanbox.cc diff --git a/src/pixiv/note.txt b/src/pixiv/note.txt new file mode 100644 index 0000000..44aa44d --- /dev/null +++ b/src/pixiv/note.txt @@ -0,0 +1 @@ +29446 https://hackerone.com/pixiv pixiv pixiv diff --git a/src/plaid/SOURCE_CODE.txt b/src/plaid/SOURCE_CODE.txt new file mode 100644 index 0000000..c05de7c --- /dev/null +++ b/src/plaid/SOURCE_CODE.txt @@ -0,0 +1,6 @@ +https://github.com/plaid/plaid-link-ios +https://github.com/plaid/plaid-link-android +https://github.com/plaid/plaid-link-examples +https://github.com/plaid/plaid-ruby +https://github.com/plaid/react-native-plaid-link-sdk +https://github.com/plaid/react-plaid-link diff --git a/src/plaid/URL.txt b/src/plaid/URL.txt new file mode 100644 index 0000000..7e142aa --- /dev/null +++ b/src/plaid/URL.txt @@ -0,0 +1,11 @@ +production.plaid.com +dashboard.plaid.com +cdn.plaid.com +my.plaid.com +secure.quovo.com +app.quovo.com +secure.plaid.com +demo.plaid.com +plaid.com +manage.blockscore.com +api.blockscore.com diff --git a/src/plaid/note.txt b/src/plaid/note.txt new file mode 100644 index 0000000..d7e4e95 --- /dev/null +++ b/src/plaid/note.txt @@ -0,0 +1 @@ +15391 https://hackerone.com/plaid Plaid plaid diff --git a/src/planet-labs/URL.txt b/src/planet-labs/URL.txt new file mode 100644 index 0000000..bcec502 --- /dev/null +++ b/src/planet-labs/URL.txt @@ -0,0 +1,2 @@ +*.planet.com +*.planet-labs.com diff --git a/src/planet-labs/WILDCARD.txt b/src/planet-labs/WILDCARD.txt new file mode 100644 index 0000000..6803a4b --- /dev/null +++ b/src/planet-labs/WILDCARD.txt @@ -0,0 +1,4 @@ +http://*.planet.com +http://*.planet-labs.com +*.planet.com +*.planet-labs.com diff --git a/src/planet-labs/note.txt b/src/planet-labs/note.txt new file mode 100644 index 0000000..559c9e4 --- /dev/null +++ b/src/planet-labs/note.txt @@ -0,0 +1 @@ +53834 https://hackerone.com/planet-labs Planet Labs planet-labs diff --git a/src/planetart/URL.txt b/src/planetart/URL.txt new file mode 100644 index 0000000..8b1fbca --- /dev/null +++ b/src/planetart/URL.txt @@ -0,0 +1,14 @@ +www.personalcreations.com +www.simplytoimpress.com +https://www.photoaffections.com/ +https://www.gifts.com/ +https://www.cafepress.com/ +https://www.canvasworld.com/ +https://www.mycustomcase.com/ +www.photoaffections.com +www.gifts.com +www.cafepress.com +www.canvasworld.com +www.mycustomcase.com +iseeme.com +ai.planetart.com diff --git a/src/planetart/WILDCARD.txt b/src/planetart/WILDCARD.txt new file mode 100644 index 0000000..746584a --- /dev/null +++ b/src/planetart/WILDCARD.txt @@ -0,0 +1,8 @@ +*.cafepress.com +*.canvasworld.com +*.gifts.com +*.iseeme.com +*.mycustomcase.com +*.personalcreations.com +*.photoaffections.com +*.simplytoimpress.com diff --git a/src/planetart/note.txt b/src/planetart/note.txt new file mode 100644 index 0000000..19faf00 --- /dev/null +++ b/src/planetart/note.txt @@ -0,0 +1 @@ +53167 https://hackerone.com/planetart PlanetArt planetart diff --git a/src/playstation/APPLE_STORE_APP_ID.txt b/src/playstation/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..fb380a7 --- /dev/null +++ b/src/playstation/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +410896080 diff --git a/src/playstation/GOOGLE_PLAY_APP_ID.txt b/src/playstation/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..c719624 --- /dev/null +++ b/src/playstation/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.scee.psxandroid diff --git a/src/playstation/HARDWARE.txt b/src/playstation/HARDWARE.txt new file mode 100644 index 0000000..7888291 --- /dev/null +++ b/src/playstation/HARDWARE.txt @@ -0,0 +1,2 @@ +PlayStation 4 +PlayStation 5 diff --git a/src/playstation/OTHER.txt b/src/playstation/OTHER.txt new file mode 100644 index 0000000..29b1760 --- /dev/null +++ b/src/playstation/OTHER.txt @@ -0,0 +1 @@ +PlayStation Network diff --git a/src/playstation/URL.txt b/src/playstation/URL.txt new file mode 100644 index 0000000..8c06d9f --- /dev/null +++ b/src/playstation/URL.txt @@ -0,0 +1,12 @@ +*.playstation.net +*.sonyentertainmentnetwork.com +*.api.playstation.com +my.playstation.com +store.playstation.com +social.playstation.com +transact.playstation.com +wallets.api.playstation.com +direct.playstation.com +api.direct.playstation.com +ca.account.sony.com +my.account.sony.com diff --git a/src/playstation/note.txt b/src/playstation/note.txt new file mode 100644 index 0000000..5e0395e --- /dev/null +++ b/src/playstation/note.txt @@ -0,0 +1 @@ +44879 https://hackerone.com/playstation PlayStation playstation diff --git a/src/pogo/APPLE_STORE_APP_ID.txt b/src/pogo/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..0874c7e --- /dev/null +++ b/src/pogo/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +com.pogotech.pogocash diff --git a/src/pogo/GOOGLE_PLAY_APP_ID.txt b/src/pogo/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..0874c7e --- /dev/null +++ b/src/pogo/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.pogotech.pogocash diff --git a/src/pogo/URL.txt b/src/pogo/URL.txt new file mode 100644 index 0000000..1f8f2ef --- /dev/null +++ b/src/pogo/URL.txt @@ -0,0 +1 @@ +api.joinpogo.com diff --git a/src/pogo/note.txt b/src/pogo/note.txt new file mode 100644 index 0000000..f91eddf --- /dev/null +++ b/src/pogo/note.txt @@ -0,0 +1 @@ +57307 https://hackerone.com/pogo Pogo pogo diff --git a/src/poloniex/URL.txt b/src/poloniex/URL.txt new file mode 100644 index 0000000..0b767bc --- /dev/null +++ b/src/poloniex/URL.txt @@ -0,0 +1,10 @@ +https://www.poloniex.com +https://api.poloniex.com +https://m.poloniex.com +https://api2.poloniex.com +https://public.poloniex.com +www.poloniex.com +api.poloniex.com +m.poloniex.com +api2.poloniex.com +public.poloniex.com diff --git a/src/poloniex/note.txt b/src/poloniex/note.txt new file mode 100644 index 0000000..875a2f2 --- /dev/null +++ b/src/poloniex/note.txt @@ -0,0 +1 @@ +27589 https://hackerone.com/poloniex Poloniex poloniex diff --git a/src/polygon-technology/SOURCE_CODE.txt b/src/polygon-technology/SOURCE_CODE.txt new file mode 100644 index 0000000..ad5265d --- /dev/null +++ b/src/polygon-technology/SOURCE_CODE.txt @@ -0,0 +1,4 @@ +https://github.com/maticnetwork/heimdall +https://github.com/maticnetwork/bor +https://github.com/maticnetwork/contracts +https://github.com/0xPolygon/chain-indexer-framework diff --git a/src/polygon-technology/URL.txt b/src/polygon-technology/URL.txt new file mode 100644 index 0000000..aeb5fa9 --- /dev/null +++ b/src/polygon-technology/URL.txt @@ -0,0 +1,27 @@ +*.matic.network +*.polygon.technology +https://wallet.polygon.technology/ +https://sentinel.matic.network/ +https://bridge-explorer.polygon.technology/ +https://bridge-api-node.matic.network +https://bridge-api.matic.network +https://burn.polygon.technology/ +https://mapper.polygon.technology/ +https://watchgod.polygon.technology/ +https://open-api.polygon.technology/ +https://faucet.polygon.technology/ +https://mnt.matic.network +https://multisig-wallet.polygon.technology/ +*.api.matic.network +https://staking-api.polygon.technology/ +wallet.polygon.technology +staking-api.polygon.technology +bridge-explorer.polygon.technology +bridge-api.matic.network +burn.polygon.technology +mapper.polygon.technology +watchgod.polygon.technology +open-api.polygon.technology +faucet.polygon.technology +portal.polygon.technology +https://agglayer-test.polygon.technology diff --git a/src/polygon-technology/note.txt b/src/polygon-technology/note.txt new file mode 100644 index 0000000..b21b6f7 --- /dev/null +++ b/src/polygon-technology/note.txt @@ -0,0 +1 @@ +49048 https://hackerone.com/polygon-technology Polygon Technology polygon-technology diff --git a/src/pornbox/URL.txt b/src/pornbox/URL.txt new file mode 100644 index 0000000..fbcca79 --- /dev/null +++ b/src/pornbox/URL.txt @@ -0,0 +1,4 @@ +www.pornbox.com +www.analvids.com +www.ddfcontent.com +www.pornworld.com diff --git a/src/pornbox/note.txt b/src/pornbox/note.txt new file mode 100644 index 0000000..38fb0dd --- /dev/null +++ b/src/pornbox/note.txt @@ -0,0 +1 @@ +60414 https://hackerone.com/pornbox PornBox pornbox diff --git a/src/pornhub/OTHER_APK.txt b/src/pornhub/OTHER_APK.txt new file mode 100644 index 0000000..647fded --- /dev/null +++ b/src/pornhub/OTHER_APK.txt @@ -0,0 +1 @@ +Pornhub_6.11.0-release.apk diff --git a/src/pornhub/URL.txt b/src/pornhub/URL.txt new file mode 100644 index 0000000..d72afe4 --- /dev/null +++ b/src/pornhub/URL.txt @@ -0,0 +1,13 @@ +www.pornhub.com +mobile.pornhub.com +api.pornhub.com +ht.pornhub.com +www.pornhubpremium.com +www.pornmd.com +www.modelhub.com +www.thumbzilla.com +*.tube8.com +www.redtube.com +www.redtubepremium.com +www.youporn.com +www.youpornpremium.com diff --git a/src/pornhub/WILDCARD.txt b/src/pornhub/WILDCARD.txt new file mode 100644 index 0000000..60099ee --- /dev/null +++ b/src/pornhub/WILDCARD.txt @@ -0,0 +1,2 @@ +http://*.tube8.com +*.tube8.com diff --git a/src/pornhub/note.txt b/src/pornhub/note.txt new file mode 100644 index 0000000..19d5c28 --- /dev/null +++ b/src/pornhub/note.txt @@ -0,0 +1 @@ +952 https://hackerone.com/pornhub Pornhub pornhub diff --git a/src/porsche-h1c/URL.txt b/src/porsche-h1c/URL.txt new file mode 100644 index 0000000..6e991da --- /dev/null +++ b/src/porsche-h1c/URL.txt @@ -0,0 +1,12 @@ +api.emea.gravity.porsche.com +configurator.porsche.com +connect-store.porsche.com +finder.porsche.com +identity.porsche.com +jobs.porsche.com +my.porsche.com +newsroom.porsche.com +porsche.com +shop.porsche.com +signup.porsche.com +skyway.porsche.com diff --git a/src/porsche-h1c/note.txt b/src/porsche-h1c/note.txt new file mode 100644 index 0000000..8b386db --- /dev/null +++ b/src/porsche-h1c/note.txt @@ -0,0 +1 @@ +72059 https://hackerone.com/porsche-h1c Porsche H1C porsche-h1c diff --git a/src/portswigger/DOWNLOADABLE_EXECUTABLES.txt b/src/portswigger/DOWNLOADABLE_EXECUTABLES.txt new file mode 100644 index 0000000..c6cb73c --- /dev/null +++ b/src/portswigger/DOWNLOADABLE_EXECUTABLES.txt @@ -0,0 +1,4 @@ +Burp Collaborator +Burp Suite Enterprise Edition +Burp Suite Pro/Community +Burp Suite Extension (BApps) diff --git a/src/portswigger/URL.txt b/src/portswigger/URL.txt new file mode 100644 index 0000000..123a989 --- /dev/null +++ b/src/portswigger/URL.txt @@ -0,0 +1,3 @@ +portswigger.net +forum.portswigger.net +https://enterprise-demo.portswigger.net/ diff --git a/src/portswigger/note.txt b/src/portswigger/note.txt new file mode 100644 index 0000000..2436d23 --- /dev/null +++ b/src/portswigger/note.txt @@ -0,0 +1 @@ +15252 https://hackerone.com/portswigger PortSwigger Web Security portswigger diff --git a/src/postmates/APPLE_STORE_APP_ID.txt b/src/postmates/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..6f6bc97 --- /dev/null +++ b/src/postmates/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +512393983 diff --git a/src/postmates/GOOGLE_PLAY_APP_ID.txt b/src/postmates/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..f34c5fe --- /dev/null +++ b/src/postmates/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.postmates.android diff --git a/src/postmates/OTHER.txt b/src/postmates/OTHER.txt new file mode 100644 index 0000000..b8f33e2 --- /dev/null +++ b/src/postmates/OTHER.txt @@ -0,0 +1 @@ +iOS/Android fleet apps diff --git a/src/postmates/URL.txt b/src/postmates/URL.txt new file mode 100644 index 0000000..2d34c30 --- /dev/null +++ b/src/postmates/URL.txt @@ -0,0 +1,7 @@ +postmates.com +fleet.postmates.com +partner.postmates.com +raster-static.postmates.com +buyer-prod.postmates.com +about.postmates.com +support.postmates.com diff --git a/src/postmates/note.txt b/src/postmates/note.txt new file mode 100644 index 0000000..665cf3a --- /dev/null +++ b/src/postmates/note.txt @@ -0,0 +1 @@ +2607 https://hackerone.com/postmates Postmates postmates diff --git a/src/priceline/AI_MODEL.txt b/src/priceline/AI_MODEL.txt new file mode 100644 index 0000000..346d4e8 --- /dev/null +++ b/src/priceline/AI_MODEL.txt @@ -0,0 +1 @@ +Penny diff --git a/src/priceline/APPLE_STORE_APP_ID.txt b/src/priceline/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..b14fd3d --- /dev/null +++ b/src/priceline/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +336381998 diff --git a/src/priceline/GOOGLE_PLAY_APP_ID.txt b/src/priceline/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..ba0bdbb --- /dev/null +++ b/src/priceline/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.priceline.android.negotiator diff --git a/src/priceline/OTHER.txt b/src/priceline/OTHER.txt new file mode 100644 index 0000000..90cfeb2 --- /dev/null +++ b/src/priceline/OTHER.txt @@ -0,0 +1 @@ +www.priceline.com/vp-web/* diff --git a/src/priceline/URL.txt b/src/priceline/URL.txt new file mode 100644 index 0000000..80042da --- /dev/null +++ b/src/priceline/URL.txt @@ -0,0 +1,12 @@ +www.priceline.com +secure.rezserver.com +reservations.rezserver.com +cruises.priceline.com +api.rezserver.com +admin.rezserver.com +www.bookingholdings.com +www.priceline.com* +www.getaroom.com +press.priceline.com +flyiin.com +priceline.com diff --git a/src/priceline/note.txt b/src/priceline/note.txt new file mode 100644 index 0000000..ca622b9 --- /dev/null +++ b/src/priceline/note.txt @@ -0,0 +1 @@ +59 https://hackerone.com/priceline Priceline priceline diff --git a/src/proctorio/URL.txt b/src/proctorio/URL.txt new file mode 100644 index 0000000..01d4937 --- /dev/null +++ b/src/proctorio/URL.txt @@ -0,0 +1,7 @@ +*.proctor.io +*.proctorauth.com +getproctorio.com +proctorio.com +cdn.proctorio.com +*.proctorcollect.com +*.proctordata.com diff --git a/src/proctorio/WILDCARD.txt b/src/proctorio/WILDCARD.txt new file mode 100644 index 0000000..2fc441b --- /dev/null +++ b/src/proctorio/WILDCARD.txt @@ -0,0 +1,8 @@ +http://*.proctor.io +http://*.proctorauth.com +http://*.proctorcollect.com +http://*.proctordata.com +*.proctor.io +*.proctorauth.com +*.proctorcollect.com +*.proctordata.com diff --git a/src/proctorio/note.txt b/src/proctorio/note.txt new file mode 100644 index 0000000..14aabea --- /dev/null +++ b/src/proctorio/note.txt @@ -0,0 +1 @@ +52489 https://hackerone.com/proctorio Proctorio proctorio diff --git a/src/prolinx-vdp/OTHER.txt b/src/prolinx-vdp/OTHER.txt new file mode 100644 index 0000000..f1d11d2 --- /dev/null +++ b/src/prolinx-vdp/OTHER.txt @@ -0,0 +1,5 @@ +IP range 81.128.180.193 - 81.128.180.254 +IP range 145.233.9.129 - 145.233.9.131 +IP range 217.33.241.33 - 217.33.241.62 +IP range 194.74.25.97 - 194.74.25.110 +IP range 81.128.176.2 - 81.128.176.62 diff --git a/src/prolinx-vdp/URL.txt b/src/prolinx-vdp/URL.txt new file mode 100644 index 0000000..8287dc5 --- /dev/null +++ b/src/prolinx-vdp/URL.txt @@ -0,0 +1,3 @@ +mail1.wspsecure.co.uk +skanska-secure-partner.co.uk +www.prolinx.co.uk diff --git a/src/prolinx-vdp/note.txt b/src/prolinx-vdp/note.txt new file mode 100644 index 0000000..2ad8335 --- /dev/null +++ b/src/prolinx-vdp/note.txt @@ -0,0 +1 @@ +60431 https://hackerone.com/prolinx-vdp Prolinx VDP prolinx-vdp diff --git a/src/pubg/URL.txt b/src/pubg/URL.txt new file mode 100644 index 0000000..f922b0a --- /dev/null +++ b/src/pubg/URL.txt @@ -0,0 +1,2 @@ +*.pubg.com +*.pubgesports.com diff --git a/src/pubg/WILDCARD.txt b/src/pubg/WILDCARD.txt new file mode 100644 index 0000000..0cc2180 --- /dev/null +++ b/src/pubg/WILDCARD.txt @@ -0,0 +1,4 @@ +http://*.pubg.com +http://*.pubgesports.com +*.pubg.com +*.pubgesports.com diff --git a/src/pubg/note.txt b/src/pubg/note.txt new file mode 100644 index 0000000..34dab7d --- /dev/null +++ b/src/pubg/note.txt @@ -0,0 +1 @@ +44491 https://hackerone.com/pubg PUBG pubg diff --git a/src/publitas/note.txt b/src/publitas/note.txt new file mode 100644 index 0000000..18604ec --- /dev/null +++ b/src/publitas/note.txt @@ -0,0 +1 @@ +103 https://hackerone.com/publitas Publitas publitas diff --git a/src/pushwoosh/note.txt b/src/pushwoosh/note.txt new file mode 100644 index 0000000..80777bc --- /dev/null +++ b/src/pushwoosh/note.txt @@ -0,0 +1 @@ +12946 https://hackerone.com/pushwoosh Pushwoosh pushwoosh diff --git a/src/puter_h1b/SOURCE_CODE.txt b/src/puter_h1b/SOURCE_CODE.txt new file mode 100644 index 0000000..478d2cf --- /dev/null +++ b/src/puter_h1b/SOURCE_CODE.txt @@ -0,0 +1 @@ +https://github.com/HeyPuter/puter/ diff --git a/src/puter_h1b/URL.txt b/src/puter_h1b/URL.txt new file mode 100644 index 0000000..f2f19e1 --- /dev/null +++ b/src/puter_h1b/URL.txt @@ -0,0 +1 @@ +puter.com diff --git a/src/puter_h1b/note.txt b/src/puter_h1b/note.txt new file mode 100644 index 0000000..2fc80c2 --- /dev/null +++ b/src/puter_h1b/note.txt @@ -0,0 +1 @@ +81001 https://hackerone.com/puter_h1b Puter puter_h1b diff --git a/src/putty_h1c/SOURCE_CODE.txt b/src/putty_h1c/SOURCE_CODE.txt new file mode 100644 index 0000000..4deac15 --- /dev/null +++ b/src/putty_h1c/SOURCE_CODE.txt @@ -0,0 +1 @@ +https://www.chiark.greenend.org.uk/~sgtatham/putty/ diff --git a/src/putty_h1c/note.txt b/src/putty_h1c/note.txt new file mode 100644 index 0000000..6ccec96 --- /dev/null +++ b/src/putty_h1c/note.txt @@ -0,0 +1 @@ +36864 https://hackerone.com/putty_h1c PuTTY (European Commission - DIGIT) putty_h1c diff --git a/src/pyca/SOURCE_CODE.txt b/src/pyca/SOURCE_CODE.txt new file mode 100644 index 0000000..6da95f6 --- /dev/null +++ b/src/pyca/SOURCE_CODE.txt @@ -0,0 +1,5 @@ +https://github.com/pyca/cryptography +https://github.com/pyca/pynacl +https://github.com/pyca/bcrypt +https://github.com/pyca/pyopenssl +https://github.com/pyca/infra diff --git a/src/pyca/URL.txt b/src/pyca/URL.txt new file mode 100644 index 0000000..152eda8 --- /dev/null +++ b/src/pyca/URL.txt @@ -0,0 +1,2 @@ +*.cryptography.io +*.pyopenssl.org diff --git a/src/pyca/WILDCARD.txt b/src/pyca/WILDCARD.txt new file mode 100644 index 0000000..f50447a --- /dev/null +++ b/src/pyca/WILDCARD.txt @@ -0,0 +1,4 @@ +http://*.cryptography.io +http://*.pyopenssl.org +*.cryptography.io +*.pyopenssl.org diff --git a/src/pyca/note.txt b/src/pyca/note.txt new file mode 100644 index 0000000..1b4cb8b --- /dev/null +++ b/src/pyca/note.txt @@ -0,0 +1 @@ +13323 https://hackerone.com/pyca Python Cryptographic Authority pyca diff --git a/src/qulture_rocks/URL.txt b/src/qulture_rocks/URL.txt new file mode 100644 index 0000000..34a7b67 --- /dev/null +++ b/src/qulture_rocks/URL.txt @@ -0,0 +1 @@ +https://hackerone.qulture.rocks/ diff --git a/src/qulture_rocks/note.txt b/src/qulture_rocks/note.txt new file mode 100644 index 0000000..f6e06e1 --- /dev/null +++ b/src/qulture_rocks/note.txt @@ -0,0 +1 @@ +41772 https://hackerone.com/qulture_rocks Qulture.Rocks qulture_rocks diff --git a/src/quora/APPLE_STORE_APP_ID.txt b/src/quora/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..48702e0 --- /dev/null +++ b/src/quora/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +com.quora.app.mobile diff --git a/src/quora/GOOGLE_PLAY_APP_ID.txt b/src/quora/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..2bac0aa --- /dev/null +++ b/src/quora/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.quora.android diff --git a/src/quora/URL.txt b/src/quora/URL.txt new file mode 100644 index 0000000..013824f --- /dev/null +++ b/src/quora/URL.txt @@ -0,0 +1 @@ +*.quora.com diff --git a/src/quora/WILDCARD.txt b/src/quora/WILDCARD.txt new file mode 100644 index 0000000..baa50e2 --- /dev/null +++ b/src/quora/WILDCARD.txt @@ -0,0 +1,2 @@ +http://*.quora.com +*.quora.com diff --git a/src/quora/note.txt b/src/quora/note.txt new file mode 100644 index 0000000..0f536e9 --- /dev/null +++ b/src/quora/note.txt @@ -0,0 +1 @@ +3152 https://hackerone.com/quora Quora quora diff --git a/src/r3/OTHER.txt b/src/r3/OTHER.txt new file mode 100644 index 0000000..663430f --- /dev/null +++ b/src/r3/OTHER.txt @@ -0,0 +1 @@ +R3 - everything in scope diff --git a/src/r3/note.txt b/src/r3/note.txt new file mode 100644 index 0000000..8ad48bd --- /dev/null +++ b/src/r3/note.txt @@ -0,0 +1 @@ +45701 https://hackerone.com/r3 R3 r3 diff --git a/src/radancy/URL.txt b/src/radancy/URL.txt new file mode 100644 index 0000000..2cee01b --- /dev/null +++ b/src/radancy/URL.txt @@ -0,0 +1,23 @@ +*.maximum.nl +werkenbijdefensie.nl +werkenbijderet.nl +www.werkenbijbakertilly.nl +mijnkombijdepolitie.nl +doorstromen.mijnkombijdepolitie.nl +acme-challenge.nl +no-reply.cloud +wp-mail.nl +maximum-status.com +preprod.nl +qatest.nl +rudderplatform.com +humanchemistry.evonik.com +www2.werkenbijdefensie.nl +nossl.nl +ruddercms.com +ruddercms.nl +dropr.nl +devmaximum.com +werkenbijdnb.nl +werken.belastingdienst.nl +maxcldapp.net diff --git a/src/radancy/WILDCARD.txt b/src/radancy/WILDCARD.txt new file mode 100644 index 0000000..d7c5c74 --- /dev/null +++ b/src/radancy/WILDCARD.txt @@ -0,0 +1,2 @@ +http://*.maximum.nl +*.maximum.nl diff --git a/src/radancy/note.txt b/src/radancy/note.txt new file mode 100644 index 0000000..b0cb256 --- /dev/null +++ b/src/radancy/note.txt @@ -0,0 +1 @@ +2450 https://hackerone.com/radancy Radancy radancy diff --git a/src/rails/SOURCE_CODE.txt b/src/rails/SOURCE_CODE.txt new file mode 100644 index 0000000..044c68f --- /dev/null +++ b/src/rails/SOURCE_CODE.txt @@ -0,0 +1 @@ +https://github.com/rails/rails diff --git a/src/rails/note.txt b/src/rails/note.txt new file mode 100644 index 0000000..0087237 --- /dev/null +++ b/src/rails/note.txt @@ -0,0 +1 @@ +22 https://hackerone.com/rails Ruby on Rails rails diff --git a/src/raivo/APPLE_STORE_APP_ID.txt b/src/raivo/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..47ab22c --- /dev/null +++ b/src/raivo/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +com.finnwea.Raivo diff --git a/src/raivo/OTHER.txt b/src/raivo/OTHER.txt new file mode 100644 index 0000000..b56784b --- /dev/null +++ b/src/raivo/OTHER.txt @@ -0,0 +1,2 @@ +MacOS App Store: https://apps.apple.com/us/app/raivo-otp/id1498497896 +MacOS App Store diff --git a/src/raivo/SOURCE_CODE.txt b/src/raivo/SOURCE_CODE.txt new file mode 100644 index 0000000..ee89783 --- /dev/null +++ b/src/raivo/SOURCE_CODE.txt @@ -0,0 +1,4 @@ +https://github.com/raivo-otp/ios-application +https://github.com/raivo-otp/issuer-icons +https://github.com/raivo-otp/apns-server +https://github.com/raivo-otp/macos-receiver diff --git a/src/raivo/TESTFLIGHT.txt b/src/raivo/TESTFLIGHT.txt new file mode 100644 index 0000000..47ab22c --- /dev/null +++ b/src/raivo/TESTFLIGHT.txt @@ -0,0 +1 @@ +com.finnwea.Raivo diff --git a/src/raivo/note.txt b/src/raivo/note.txt new file mode 100644 index 0000000..ffc1619 --- /dev/null +++ b/src/raivo/note.txt @@ -0,0 +1 @@ +40178 https://hackerone.com/raivo Raivo raivo diff --git a/src/ramp_vdp/note.txt b/src/ramp_vdp/note.txt new file mode 100644 index 0000000..fca2fdb --- /dev/null +++ b/src/ramp_vdp/note.txt @@ -0,0 +1 @@ +44336 https://hackerone.com/ramp_vdp Ramp VDP ramp_vdp diff --git a/src/ratelimited/OTHER.txt b/src/ratelimited/OTHER.txt new file mode 100644 index 0000000..c52e0ed --- /dev/null +++ b/src/ratelimited/OTHER.txt @@ -0,0 +1,2 @@ +Custom Webpages for Private Domains +Any other domain diff --git a/src/ratelimited/SOURCE_CODE.txt b/src/ratelimited/SOURCE_CODE.txt new file mode 100644 index 0000000..2bb02f4 --- /dev/null +++ b/src/ratelimited/SOURCE_CODE.txt @@ -0,0 +1 @@ +https://github.com/gtsatsis/RLAPI-v3-OOP diff --git a/src/ratelimited/URL.txt b/src/ratelimited/URL.txt new file mode 100644 index 0000000..20fd248 --- /dev/null +++ b/src/ratelimited/URL.txt @@ -0,0 +1,3 @@ +*.ratelimited.me +ratelimited.me +api.ratelimited.me diff --git a/src/ratelimited/note.txt b/src/ratelimited/note.txt new file mode 100644 index 0000000..98a2ace --- /dev/null +++ b/src/ratelimited/note.txt @@ -0,0 +1 @@ +26860 https://hackerone.com/ratelimited RATELIMITED ratelimited diff --git a/src/razorpay/URL.txt b/src/razorpay/URL.txt new file mode 100644 index 0000000..a429450 --- /dev/null +++ b/src/razorpay/URL.txt @@ -0,0 +1,12 @@ +https://dashboard.razorpay.com +https://api.razorpay.com +https://checkout.razorpay.com +https://invoices.razorpay.com +https://payroll.razorpay.com +https://x.razorpay.com/ +dashboard.razorpay.com +api.razorpay.com +checkout.razorpay.com +invoices.razorpay.com +payroll.razorpay.com +x.razorpay.com diff --git a/src/razorpay/note.txt b/src/razorpay/note.txt new file mode 100644 index 0000000..d3cf793 --- /dev/null +++ b/src/razorpay/note.txt @@ -0,0 +1 @@ +54299 https://hackerone.com/razorpay Razorpay razorpay diff --git a/src/rbkmoney/note.txt b/src/rbkmoney/note.txt new file mode 100644 index 0000000..e4a7fab --- /dev/null +++ b/src/rbkmoney/note.txt @@ -0,0 +1 @@ +18073 https://hackerone.com/rbkmoney RBKmoney rbkmoney diff --git a/src/realogy/URL.txt b/src/realogy/URL.txt new file mode 100644 index 0000000..b606a6a --- /dev/null +++ b/src/realogy/URL.txt @@ -0,0 +1,15 @@ +*.realogy.* +*.bhgre.* +*.century21.* +*.coldwellbanker.* +*.cbcworldwide.* +*.corcoran.* +*.era.* +*.sothebysrealty.* +*.nrtllc.* +*.trgc.com +*.leadrouter.com +*.cartus.* +*.mycbdesk.com +new.myzap.com +*.era.com diff --git a/src/realogy/note.txt b/src/realogy/note.txt new file mode 100644 index 0000000..fb5ea42 --- /dev/null +++ b/src/realogy/note.txt @@ -0,0 +1 @@ +50349 https://hackerone.com/realogy Realogy realogy diff --git a/src/rebellion-defense/URL.txt b/src/rebellion-defense/URL.txt new file mode 100644 index 0000000..9f27279 --- /dev/null +++ b/src/rebellion-defense/URL.txt @@ -0,0 +1,6 @@ +*.rebelliondefence.com +*.rebelliondefense.com +*.rebellion.dev +*.moochirp.io +*.mooch.rip +www.rebelliondefense.com diff --git a/src/rebellion-defense/WILDCARD.txt b/src/rebellion-defense/WILDCARD.txt new file mode 100644 index 0000000..13486d8 --- /dev/null +++ b/src/rebellion-defense/WILDCARD.txt @@ -0,0 +1,10 @@ +http://*.rebelliondefence.com +http://*.rebelliondefense.com +http://*.rebellion.dev +http://*.moochirp.io +http://*.mooch.rip +*.rebelliondefence.com +*.rebelliondefense.com +*.rebellion.dev +*.moochirp.io +*.mooch.rip diff --git a/src/rebellion-defense/note.txt b/src/rebellion-defense/note.txt new file mode 100644 index 0000000..b8dea0b --- /dev/null +++ b/src/rebellion-defense/note.txt @@ -0,0 +1 @@ +49254 https://hackerone.com/rebellion-defense Rebellion Defense rebellion-defense diff --git a/src/recargapay/APPLE_STORE_APP_ID.txt b/src/recargapay/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..52d91a8 --- /dev/null +++ b/src/recargapay/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +com.Fnbox.Recarga diff --git a/src/recargapay/GOOGLE_PLAY_APP_ID.txt b/src/recargapay/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..65e08fe --- /dev/null +++ b/src/recargapay/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.recarga.recarga diff --git a/src/recargapay/URL.txt b/src/recargapay/URL.txt new file mode 100644 index 0000000..c0dd909 --- /dev/null +++ b/src/recargapay/URL.txt @@ -0,0 +1,3 @@ +api.recarga.com +www.recargapay.com.br/* +secure.recarga.com/* diff --git a/src/recargapay/WILDCARD.txt b/src/recargapay/WILDCARD.txt new file mode 100644 index 0000000..845ffd6 --- /dev/null +++ b/src/recargapay/WILDCARD.txt @@ -0,0 +1,4 @@ +http://www.recargapay.com.br/* +http://secure.recarga.com/* +www.recargapay.com.br/* +secure.recarga.com/* diff --git a/src/recargapay/note.txt b/src/recargapay/note.txt new file mode 100644 index 0000000..8600383 --- /dev/null +++ b/src/recargapay/note.txt @@ -0,0 +1 @@ +23501 https://hackerone.com/recargapay RecargaPay recargapay diff --git a/src/recorded-future/OTHER_APK.txt b/src/recorded-future/OTHER_APK.txt new file mode 100644 index 0000000..8951f1e --- /dev/null +++ b/src/recorded-future/OTHER_APK.txt @@ -0,0 +1 @@ +com.recordedfuture.mobile diff --git a/src/recorded-future/OTHER_IPA.txt b/src/recorded-future/OTHER_IPA.txt new file mode 100644 index 0000000..8951f1e --- /dev/null +++ b/src/recorded-future/OTHER_IPA.txt @@ -0,0 +1 @@ +com.recordedfuture.mobile diff --git a/src/recorded-future/URL.txt b/src/recorded-future/URL.txt new file mode 100644 index 0000000..163ae5e --- /dev/null +++ b/src/recorded-future/URL.txt @@ -0,0 +1,9 @@ +www.recordedfuture.com +api.recordedfuture.com +app.recordedfuture.com +id.recordedfuture.com +therecord.media +securitytrails.com +geminiadvisory.io +hatching.io +tria.ge diff --git a/src/recorded-future/note.txt b/src/recorded-future/note.txt new file mode 100644 index 0000000..e999fcc --- /dev/null +++ b/src/recorded-future/note.txt @@ -0,0 +1 @@ +51940 https://hackerone.com/recorded-future Recorded Future recorded-future diff --git a/src/reddit/APPLE_STORE_APP_ID.txt b/src/reddit/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..4c57fd3 --- /dev/null +++ b/src/reddit/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +1064216828 diff --git a/src/reddit/GOOGLE_PLAY_APP_ID.txt b/src/reddit/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..05bdb70 --- /dev/null +++ b/src/reddit/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.reddit.frontpage diff --git a/src/reddit/URL.txt b/src/reddit/URL.txt new file mode 100644 index 0000000..0ddf354 --- /dev/null +++ b/src/reddit/URL.txt @@ -0,0 +1,30 @@ +www.reddit.com +old.reddit.com +new.reddit.com +api.reddit.com +mod.reddit.com +oauth.reddit.com +ads.reddit.com +gql.reddit.com +accounts.reddit.com +gateway.reddit.com +strapi.reddit.com +m.reddit.com +amp.reddit.com +meta-api.reddit.com +*.snooguts.net +ads-api.reddit.com +reddit.secure.force.com +s.reddit.com +*.redditmedia.com +sh.reddit.com +*.reddit.com +*.redditblog.com +*.reddithelp.com +*.redditinc.com +redditforbusiness.com +https://app.spiketrap.io +https://www.spiketrap.io +app.spiketrap.io +www.spiketrap.io +matrix.redditspace.com diff --git a/src/reddit/WILDCARD.txt b/src/reddit/WILDCARD.txt new file mode 100644 index 0000000..ca4774c --- /dev/null +++ b/src/reddit/WILDCARD.txt @@ -0,0 +1,12 @@ +http://*.snooguts.net +http://*.redditmedia.com +http://*.reddit.com +http://*.redditblog.com +http://*.reddithelp.com +http://*.redditinc.com +*.snooguts.net +*.redditmedia.com +*.reddit.com +*.redditblog.com +*.reddithelp.com +*.redditinc.com diff --git a/src/reddit/note.txt b/src/reddit/note.txt new file mode 100644 index 0000000..2740f70 --- /dev/null +++ b/src/reddit/note.txt @@ -0,0 +1 @@ +35710 https://hackerone.com/reddit Reddit reddit diff --git a/src/redis-vdp/URL.txt b/src/redis-vdp/URL.txt new file mode 100644 index 0000000..49fb0af --- /dev/null +++ b/src/redis-vdp/URL.txt @@ -0,0 +1,5 @@ +app.redislabs.com +www.redis.com +www.redislabs.com +api.redislabs.com +redis.io diff --git a/src/redis-vdp/note.txt b/src/redis-vdp/note.txt new file mode 100644 index 0000000..d3b2760 --- /dev/null +++ b/src/redis-vdp/note.txt @@ -0,0 +1 @@ +54608 https://hackerone.com/redis-vdp Redis redis-vdp diff --git a/src/redox_bbp/URL.txt b/src/redox_bbp/URL.txt new file mode 100644 index 0000000..f8d523d --- /dev/null +++ b/src/redox_bbp/URL.txt @@ -0,0 +1,20 @@ +10x.redoxengine.com +testapp.redoxengine.com +testapi.redoxengine.com +docs.redoxengine.com +fhir.redoxengine.com +explore.redoxengine.com +www.redoxengine.com +help.redoxengine.com +api.gamma.redoxstage.com +app.gamma.redoxstage.com +blob.gamma.redoxstage.com +clientcert.gamma.redoxstage.com +dashboard.gamma.redoxstage.com +eets-sftp-listener.gamma.redoxstage.com +eets.gamma.redoxstage.com +evening-earth.gamma.redoxstage.com +gamma.redoxstage.com +launch.gamma.redoxstage.com +sftp.gamma.redoxstage.com +webhooks.gamma.redoxstage.com diff --git a/src/redox_bbp/WILDCARD.txt b/src/redox_bbp/WILDCARD.txt new file mode 100644 index 0000000..db614a9 --- /dev/null +++ b/src/redox_bbp/WILDCARD.txt @@ -0,0 +1 @@ +test*.redoxengine.com diff --git a/src/redox_bbp/note.txt b/src/redox_bbp/note.txt new file mode 100644 index 0000000..5fa0bdd --- /dev/null +++ b/src/redox_bbp/note.txt @@ -0,0 +1 @@ +61055 https://hackerone.com/redox_bbp Redox redox_bbp diff --git a/src/redtube/URL.txt b/src/redtube/URL.txt new file mode 100644 index 0000000..a4c4dea --- /dev/null +++ b/src/redtube/URL.txt @@ -0,0 +1,2 @@ +www.redtube.com +www.redtubepremium.com diff --git a/src/redtube/note.txt b/src/redtube/note.txt new file mode 100644 index 0000000..fa3bf86 --- /dev/null +++ b/src/redtube/note.txt @@ -0,0 +1 @@ +21831 https://hackerone.com/redtube Redtube redtube diff --git a/src/rei_bbp/OTHER.txt b/src/rei_bbp/OTHER.txt new file mode 100644 index 0000000..076f250 --- /dev/null +++ b/src/rei_bbp/OTHER.txt @@ -0,0 +1,2 @@ +Any public cloud resource or infrastructure operated and managed by REI. +Android & iOS App for REI Customers diff --git a/src/rei_bbp/URL.txt b/src/rei_bbp/URL.txt new file mode 100644 index 0000000..495c6c4 --- /dev/null +++ b/src/rei_bbp/URL.txt @@ -0,0 +1,7 @@ +rei.com +http://rei.com/rei-garage +http://rei.com/adventures +http://rei.com/learn/expert-advice +http://rei.com/events +http://www.rei.com/learn/expert-advice +http://collaboration.rei.com diff --git a/src/rei_bbp/note.txt b/src/rei_bbp/note.txt new file mode 100644 index 0000000..590e11b --- /dev/null +++ b/src/rei_bbp/note.txt @@ -0,0 +1 @@ +58678 https://hackerone.com/rei_bbp REI BBP rei_bbp diff --git a/src/rei_vdp/OTHER.txt b/src/rei_vdp/OTHER.txt new file mode 100644 index 0000000..ef76ba1 --- /dev/null +++ b/src/rei_vdp/OTHER.txt @@ -0,0 +1,2 @@ +Any public cloud resource or infrastructure operated and managed by REI +Android & iOS App for REI Customers diff --git a/src/rei_vdp/URL.txt b/src/rei_vdp/URL.txt new file mode 100644 index 0000000..cd5eeb4 --- /dev/null +++ b/src/rei_vdp/URL.txt @@ -0,0 +1,10 @@ +rei.com +reiadventures.force.com +engineering.rei.com +foryourbenefit-rei.com/ +login.rei.com +test-login.rei.com +http://rei.com/adventures +http://rei.com/events +http://www.rei.com/learn/expert-advice +http://collaboration.rei.com diff --git a/src/rei_vdp/note.txt b/src/rei_vdp/note.txt new file mode 100644 index 0000000..e6e6120 --- /dev/null +++ b/src/rei_vdp/note.txt @@ -0,0 +1 @@ +58679 https://hackerone.com/rei_vdp REI VDP rei_vdp diff --git a/src/remitano/APPLE_STORE_APP_ID.txt b/src/remitano/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..698f553 --- /dev/null +++ b/src/remitano/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +1116327021 diff --git a/src/remitano/GOOGLE_PLAY_APP_ID.txt b/src/remitano/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..bca063d --- /dev/null +++ b/src/remitano/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.remitano.remitano diff --git a/src/remitano/URL.txt b/src/remitano/URL.txt new file mode 100644 index 0000000..f1d728e --- /dev/null +++ b/src/remitano/URL.txt @@ -0,0 +1,3 @@ +www.remitano.com +api.remitano.com +socket.remitano.com diff --git a/src/remitano/note.txt b/src/remitano/note.txt new file mode 100644 index 0000000..64e4f51 --- /dev/null +++ b/src/remitano/note.txt @@ -0,0 +1 @@ +35549 https://hackerone.com/remitano Remitano remitano diff --git a/src/remitly/API.txt b/src/remitly/API.txt new file mode 100644 index 0000000..73b42bd --- /dev/null +++ b/src/remitly/API.txt @@ -0,0 +1,2 @@ +funding-webhooks.remitly.io +hub-api-sandbox.remitly.io diff --git a/src/remitly/APPLE_STORE_APP_ID.txt b/src/remitly/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..717f3a5 --- /dev/null +++ b/src/remitly/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +674258465 diff --git a/src/remitly/GOOGLE_PLAY_APP_ID.txt b/src/remitly/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..4a5a63e --- /dev/null +++ b/src/remitly/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.remitly.androidapp diff --git a/src/remitly/URL.txt b/src/remitly/URL.txt new file mode 100644 index 0000000..9921958 --- /dev/null +++ b/src/remitly/URL.txt @@ -0,0 +1,11 @@ +remitly.com +api.remitly.io +cards.remitly.io +rewire.com +app.rewire.to +rates.rewire.com +app3.rewire.to +cardpayments.remitly.io +media.remitly.io +partner-webhook.remitly.io +ablink.info.remitly.com diff --git a/src/remitly/WILDCARD.txt b/src/remitly/WILDCARD.txt new file mode 100644 index 0000000..7e8cdb3 --- /dev/null +++ b/src/remitly/WILDCARD.txt @@ -0,0 +1,2 @@ +*.int.remitly.com +*.dev.remitly.com diff --git a/src/remitly/note.txt b/src/remitly/note.txt new file mode 100644 index 0000000..19ae161 --- /dev/null +++ b/src/remitly/note.txt @@ -0,0 +1 @@ +32674 https://hackerone.com/remitly Remitly remitly diff --git a/src/replyify/URL.txt b/src/replyify/URL.txt new file mode 100644 index 0000000..3894236 --- /dev/null +++ b/src/replyify/URL.txt @@ -0,0 +1,5 @@ +app.replyify.com +api.replyify.com +replyify.com +track.replyify.com +blog.replyify.com diff --git a/src/replyify/note.txt b/src/replyify/note.txt new file mode 100644 index 0000000..b4f7916 --- /dev/null +++ b/src/replyify/note.txt @@ -0,0 +1 @@ +40469 https://hackerone.com/replyify Replyify replyify diff --git a/src/resmed/APPLE_STORE_APP_ID.txt b/src/resmed/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..599cedc --- /dev/null +++ b/src/resmed/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +https://apps.apple.com/us/app/nightowl-companion/id1397382074 diff --git a/src/resmed/GOOGLE_PLAY_APP_ID.txt b/src/resmed/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..0578483 --- /dev/null +++ b/src/resmed/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +https://play.google.com/store/apps/details?id=com.ectosense.nightowl&hl=en&gl=US diff --git a/src/resmed/URL.txt b/src/resmed/URL.txt new file mode 100644 index 0000000..bf59f6a --- /dev/null +++ b/src/resmed/URL.txt @@ -0,0 +1,69 @@ +resmed.com +resupply.resmed.com +myair.resmed.com +airview.resmed.com +onlinestore.resmed.com +account.resmed.com +u-sleep.umbian.com +Narval-easy.resmed.eu +careers.resmed.com +shop.resmed.com +resmed.co.uk +resmed.mx +resmed.com.br +resmed.lat +resmed.com.au +resmed.co.in +resmed.co.id +resmed.sg +resmed.hk +resmed.ph +resmed.vn +resmed.de +resmed.fr +resmed.nl +resmed.no +resmed.pt +resmed.dk +resmed.ch +resmed.la +resmed.com.cn +myair.resmed.eu +airview.resmed.eu +onlinestore.resmedchina.cn +resmedshop.de +resmed.es +resmed.jp +resmed-healthcare.de +http://provider.propellerhealth.biz +http://patient.propellerhealth.biz +https://propellerhealth.com +sigmacare.com +mealtracker.com +soneto.net +careanyware.com +narval-easy.resmed.eu +provider.propellerhealth.biz +patient.propellerhealth.biz +propellerhealth.com +alpha.api.praxispad.de +apple.api.praxispad.de +kundenservice.api.praxispad.de +produktion.api.praxispad.de/ +referenzkunden.api.praxispad.de +teststellung.api.praxispad.de +vertrieb.api.praxispad.de +app.medifox-therapie.de/ +brightree.net/ +app.citushealth.com/ +www.citushealth.com +app.citushealth.ca +https://snftest02.matrixcare.com/ +https://dashboard.ectosense.com/login +https://resmed.ectosense.com/login +https://admin.ectosense.com/login +https://nightowl-admin.resmed.com/signin +https://nightowl.resmed.com/signin +https://survey.ectosense.com/assessment/home +https://stgcef2r.somnoware.com/ +https://myapp.somnoware.com/login diff --git a/src/resmed/note.txt b/src/resmed/note.txt new file mode 100644 index 0000000..410907b --- /dev/null +++ b/src/resmed/note.txt @@ -0,0 +1 @@ +57666 https://hackerone.com/resmed ResMed resmed diff --git a/src/revive_adserver/SOURCE_CODE.txt b/src/revive_adserver/SOURCE_CODE.txt new file mode 100644 index 0000000..54d7083 --- /dev/null +++ b/src/revive_adserver/SOURCE_CODE.txt @@ -0,0 +1 @@ +https://github.com/revive-adserver/revive-adserver diff --git a/src/revive_adserver/note.txt b/src/revive_adserver/note.txt new file mode 100644 index 0000000..5be0ae1 --- /dev/null +++ b/src/revive_adserver/note.txt @@ -0,0 +1 @@ +2367 https://hackerone.com/revive_adserver Revive Adserver revive_adserver diff --git a/src/rghost/URL.txt b/src/rghost/URL.txt new file mode 100644 index 0000000..66e0214 --- /dev/null +++ b/src/rghost/URL.txt @@ -0,0 +1 @@ +rghost.net diff --git a/src/rghost/note.txt b/src/rghost/note.txt new file mode 100644 index 0000000..4e040b3 --- /dev/null +++ b/src/rghost/note.txt @@ -0,0 +1 @@ +44956 https://hackerone.com/rghost RGhost rghost diff --git a/src/ridewithvia/APPLE_STORE_APP_ID.txt b/src/ridewithvia/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..878fa16 --- /dev/null +++ b/src/ridewithvia/APPLE_STORE_APP_ID.txt @@ -0,0 +1,3 @@ +657777015 +1515005951 +469463298 diff --git a/src/ridewithvia/GOOGLE_PLAY_APP_ID.txt b/src/ridewithvia/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..cee59a3 --- /dev/null +++ b/src/ridewithvia/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1,3 @@ +via.rider +com.ridewithvia.zuzu + com.citymapper.app.release diff --git a/src/ridewithvia/URL.txt b/src/ridewithvia/URL.txt new file mode 100644 index 0000000..badb5a2 --- /dev/null +++ b/src/ridewithvia/URL.txt @@ -0,0 +1,4 @@ +global-api.citymapper.com +remix.com +eu.remix.com +platform.remix.com diff --git a/src/ridewithvia/note.txt b/src/ridewithvia/note.txt new file mode 100644 index 0000000..a8befbf --- /dev/null +++ b/src/ridewithvia/note.txt @@ -0,0 +1 @@ +36980 https://hackerone.com/ridewithvia Via ridewithvia diff --git a/src/ring/APPLE_STORE_APP_ID.txt b/src/ring/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..d854047 --- /dev/null +++ b/src/ring/APPLE_STORE_APP_ID.txt @@ -0,0 +1,3 @@ +1013961111 +1218902777 +926252661 diff --git a/src/ring/GOOGLE_PLAY_APP_ID.txt b/src/ring/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..1eebb2a --- /dev/null +++ b/src/ring/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1,3 @@ +com.immediasemi.android.blink +com.ring.neighborhoods +com.ringapp diff --git a/src/ring/HARDWARE.txt b/src/ring/HARDWARE.txt new file mode 100644 index 0000000..2b11ef3 --- /dev/null +++ b/src/ring/HARDWARE.txt @@ -0,0 +1,12 @@ +Video Doorbell +Peephole Cam +Indoor Cam +Stickup Cam +Chime +Ring Alarm +Ring Smart Lighting Bridge +Blink Outdoor +Blink Indoor +Blink Sync Module 2 +Blink Mini +Blink Video Doorbell diff --git a/src/ring/OTHER.txt b/src/ring/OTHER.txt new file mode 100644 index 0000000..accc9f9 --- /dev/null +++ b/src/ring/OTHER.txt @@ -0,0 +1,8 @@ +https://ring.com/* +https://api.ring.com/* +https://fw.ring.com/* +https://app.ring.com/* +https://admin.ring.com/* +https://nw.ring.com/* +https://oauth.ring.com/* +https://billing.ring.com/* diff --git a/src/ring/URL.txt b/src/ring/URL.txt new file mode 100644 index 0000000..e629e68 --- /dev/null +++ b/src/ring/URL.txt @@ -0,0 +1,11 @@ +ring.com/* +api.ring.com/* +fw.ring.com/* +app.ring.com/* +admin.ring.com/* +nw.ring.com/* +oauth.ring.com/* +billing.ring.com/* +prd-ring-web-us.prd.rings.solutions +*.immedia-semi.com/* +*.blinkforhome.com/* diff --git a/src/ring/WILDCARD.txt b/src/ring/WILDCARD.txt new file mode 100644 index 0000000..c7d89d4 --- /dev/null +++ b/src/ring/WILDCARD.txt @@ -0,0 +1,2 @@ +https://*.immedia-semi.com/* +https://*.blinkforhome.com/* diff --git a/src/ring/note.txt b/src/ring/note.txt new file mode 100644 index 0000000..3a1e883 --- /dev/null +++ b/src/ring/note.txt @@ -0,0 +1 @@ +63606 https://hackerone.com/ring Ring ring diff --git a/src/rivian_automotive/APPLE_STORE_APP_ID.txt b/src/rivian_automotive/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..279f1f9 --- /dev/null +++ b/src/rivian_automotive/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +com.rivian.ios diff --git a/src/rivian_automotive/GOOGLE_PLAY_APP_ID.txt b/src/rivian_automotive/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..92562cf --- /dev/null +++ b/src/rivian_automotive/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.rivian.android diff --git a/src/rivian_automotive/HARDWARE.txt b/src/rivian_automotive/HARDWARE.txt new file mode 100644 index 0000000..686ca4d --- /dev/null +++ b/src/rivian_automotive/HARDWARE.txt @@ -0,0 +1,2 @@ +R1T Vehicle +R1S Vehicle diff --git a/src/rivian_automotive/URL.txt b/src/rivian_automotive/URL.txt new file mode 100644 index 0000000..0ea296f --- /dev/null +++ b/src/rivian_automotive/URL.txt @@ -0,0 +1,2 @@ +*.rivian.com +*.rivianservices.com diff --git a/src/rivian_automotive/WILDCARD.txt b/src/rivian_automotive/WILDCARD.txt new file mode 100644 index 0000000..1154c56 --- /dev/null +++ b/src/rivian_automotive/WILDCARD.txt @@ -0,0 +1,4 @@ +http://*.rivian.com +http://*.rivianservices.com +*.rivian.com +*.rivianservices.com diff --git a/src/rivian_automotive/note.txt b/src/rivian_automotive/note.txt new file mode 100644 index 0000000..41edb76 --- /dev/null +++ b/src/rivian_automotive/note.txt @@ -0,0 +1 @@ +58143 https://hackerone.com/rivian_automotive Rivian Automotive rivian_automotive diff --git a/src/ro/APPLE_STORE_APP_ID.txt b/src/ro/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..5f6ffc7 --- /dev/null +++ b/src/ro/APPLE_STORE_APP_ID.txt @@ -0,0 +1,2 @@ +1514854156 +1585858911 diff --git a/src/ro/URL.txt b/src/ro/URL.txt new file mode 100644 index 0000000..0c7e819 --- /dev/null +++ b/src/ro/URL.txt @@ -0,0 +1,17 @@ +my.ro.co +login.ro.co +start.ro.co +*.ro.co +ro.co/pharmacy +ro.co/mind +ro.co/derm +ro.co/spermkit +*.getroman.com +*.ropharmacy.com +*.hellorory.com +*.modernfertility.com +*.myplenity.com +http://ro.co/pharmacy +http://ro.co/mind +http://ro.co/derm +http://ro.co/spermkit diff --git a/src/ro/WILDCARD.txt b/src/ro/WILDCARD.txt new file mode 100644 index 0000000..0595359 --- /dev/null +++ b/src/ro/WILDCARD.txt @@ -0,0 +1,14 @@ +http://*.ro.co +http://*.getroman.com +http://*.ropharmacy.com +http://*.hellorory.com +http://*.modernfertility.com +http://*.myplenity.com +*.ro.co +*.getroman.com +*.ropharmacy.com +*.hellorory.com +*.modernfertility.com +*.myplenity.com +https://*.kit.com +*.kit.ro.co diff --git a/src/ro/note.txt b/src/ro/note.txt new file mode 100644 index 0000000..39901e2 --- /dev/null +++ b/src/ro/note.txt @@ -0,0 +1 @@ +56104 https://hackerone.com/ro Ro ro diff --git a/src/robinhood/APPLE_STORE_APP_ID.txt b/src/robinhood/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..f7008b1 --- /dev/null +++ b/src/robinhood/APPLE_STORE_APP_ID.txt @@ -0,0 +1,2 @@ +com.robinhood.release.Robinhood +com.robinhood.release.Gateway diff --git a/src/robinhood/GOOGLE_PLAY_APP_ID.txt b/src/robinhood/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..beb8d4e --- /dev/null +++ b/src/robinhood/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.robinhood.android diff --git a/src/robinhood/URL.txt b/src/robinhood/URL.txt new file mode 100644 index 0000000..0bdf240 --- /dev/null +++ b/src/robinhood/URL.txt @@ -0,0 +1,3 @@ +*.robinhood.com +*.robinhood.net +*.rhinternal.net diff --git a/src/robinhood/note.txt b/src/robinhood/note.txt new file mode 100644 index 0000000..7ca1bff --- /dev/null +++ b/src/robinhood/note.txt @@ -0,0 +1 @@ +254 https://hackerone.com/robinhood Robinhood robinhood diff --git a/src/roblox/DOWNLOADABLE_EXECUTABLES.txt b/src/roblox/DOWNLOADABLE_EXECUTABLES.txt new file mode 100644 index 0000000..1ec4f1a --- /dev/null +++ b/src/roblox/DOWNLOADABLE_EXECUTABLES.txt @@ -0,0 +1,3 @@ +Roblox Client +Roblox Studio +Guilded diff --git a/src/roblox/URL.txt b/src/roblox/URL.txt new file mode 100644 index 0000000..2fae440 --- /dev/null +++ b/src/roblox/URL.txt @@ -0,0 +1,4 @@ +*.roblox.com +*.rbx.com +*.ra.roblox.com +*.guilded.gg diff --git a/src/roblox/WILDCARD.txt b/src/roblox/WILDCARD.txt new file mode 100644 index 0000000..f6ce90c --- /dev/null +++ b/src/roblox/WILDCARD.txt @@ -0,0 +1,8 @@ +http://*.roblox.com +http://*.rbx.com +http://*.guilded.gg +http://*.ra.roblox.com +*.roblox.com +*.rbx.com +*.guilded.gg +*.ra.roblox.com diff --git a/src/roblox/note.txt b/src/roblox/note.txt new file mode 100644 index 0000000..ec7ad70 --- /dev/null +++ b/src/roblox/note.txt @@ -0,0 +1 @@ +19491 https://hackerone.com/roblox Roblox roblox diff --git a/src/rocket_chat/SOURCE_CODE.txt b/src/rocket_chat/SOURCE_CODE.txt new file mode 100644 index 0000000..bb28cc0 --- /dev/null +++ b/src/rocket_chat/SOURCE_CODE.txt @@ -0,0 +1,3 @@ +https://github.com/RocketChat/Rocket.Chat +https://github.com/RocketChat/Rocket.Chat.ReactNative +https://github.com/RocketChat/Rocket.Chat.Electron diff --git a/src/rocket_chat/URL.txt b/src/rocket_chat/URL.txt new file mode 100644 index 0000000..ece8474 --- /dev/null +++ b/src/rocket_chat/URL.txt @@ -0,0 +1,4 @@ +https://rocket.chat/ +https://cloud.rocket.chat/ +rocket.chat +cloud.rocket.chat diff --git a/src/rocket_chat/note.txt b/src/rocket_chat/note.txt new file mode 100644 index 0000000..3a04e2d --- /dev/null +++ b/src/rocket_chat/note.txt @@ -0,0 +1 @@ +19858 https://hackerone.com/rocket_chat Rocket.Chat rocket_chat diff --git a/src/rockset/URL.txt b/src/rockset/URL.txt new file mode 100644 index 0000000..1cadf9f --- /dev/null +++ b/src/rockset/URL.txt @@ -0,0 +1,4 @@ +console.rockset.com +docs.rockset.com +api.*.rockset.com +rockset.com diff --git a/src/rockset/note.txt b/src/rockset/note.txt new file mode 100644 index 0000000..c70bf72 --- /dev/null +++ b/src/rockset/note.txt @@ -0,0 +1 @@ +49532 https://hackerone.com/rockset Rockset rockset diff --git a/src/rockstargames/DOWNLOADABLE_EXECUTABLES.txt b/src/rockstargames/DOWNLOADABLE_EXECUTABLES.txt new file mode 100644 index 0000000..c2b50e1 --- /dev/null +++ b/src/rockstargames/DOWNLOADABLE_EXECUTABLES.txt @@ -0,0 +1 @@ +Rockstar Games Launcher diff --git a/src/rockstargames/URL.txt b/src/rockstargames/URL.txt new file mode 100644 index 0000000..8a625ed --- /dev/null +++ b/src/rockstargames/URL.txt @@ -0,0 +1,8 @@ +socialclub.rockstargames.com +prod.ros.rockstargames.com +support.rockstargames.com +*.rockstargames.com +lifeinvader.com +rockstarnorth.com +store.rockstargames.com +circolocorecords.com/ diff --git a/src/rockstargames/note.txt b/src/rockstargames/note.txt new file mode 100644 index 0000000..6925616 --- /dev/null +++ b/src/rockstargames/note.txt @@ -0,0 +1 @@ +2143 https://hackerone.com/rockstargames Rockstar Games rockstargames diff --git a/src/rootstocklabs/SOURCE_CODE.txt b/src/rootstocklabs/SOURCE_CODE.txt new file mode 100644 index 0000000..ac468c3 --- /dev/null +++ b/src/rootstocklabs/SOURCE_CODE.txt @@ -0,0 +1,6 @@ +https://github.com/rsksmart/rskj +https://github.com/rsksmart/tokenbridge +https://github.com/rsksmart/powpeg-node +https://github.com/rsksmart/rif-wallet +https://github.com/rsksmart/rif-wallet-services +https://github.com/rsksmart/rif-wallet-libs diff --git a/src/rootstocklabs/URL.txt b/src/rootstocklabs/URL.txt new file mode 100644 index 0000000..4141d06 --- /dev/null +++ b/src/rootstocklabs/URL.txt @@ -0,0 +1,2 @@ +https://github.com/rsksmart/rsk-powhsm/ +bounty-node.rsk.co diff --git a/src/rootstocklabs/note.txt b/src/rootstocklabs/note.txt new file mode 100644 index 0000000..838d01e --- /dev/null +++ b/src/rootstocklabs/note.txt @@ -0,0 +1 @@ +25854 https://hackerone.com/rootstocklabs Rootstock Labs rootstocklabs diff --git a/src/ruby/SOURCE_CODE.txt b/src/ruby/SOURCE_CODE.txt new file mode 100644 index 0000000..d30c3f3 --- /dev/null +++ b/src/ruby/SOURCE_CODE.txt @@ -0,0 +1 @@ +https://github.com/ruby/ruby diff --git a/src/ruby/note.txt b/src/ruby/note.txt new file mode 100644 index 0000000..a90b929 --- /dev/null +++ b/src/ruby/note.txt @@ -0,0 +1 @@ +7724 https://hackerone.com/ruby Ruby ruby diff --git a/src/rubygems/OTHER.txt b/src/rubygems/OTHER.txt new file mode 100644 index 0000000..64205b0 --- /dev/null +++ b/src/rubygems/OTHER.txt @@ -0,0 +1 @@ +Malicious or compromised gem diff --git a/src/rubygems/SOURCE_CODE.txt b/src/rubygems/SOURCE_CODE.txt new file mode 100644 index 0000000..39614fa --- /dev/null +++ b/src/rubygems/SOURCE_CODE.txt @@ -0,0 +1 @@ +https://github.com/rubygems/rubygems diff --git a/src/rubygems/URL.txt b/src/rubygems/URL.txt new file mode 100644 index 0000000..f5a9d97 --- /dev/null +++ b/src/rubygems/URL.txt @@ -0,0 +1 @@ +rubygems.org diff --git a/src/rubygems/note.txt b/src/rubygems/note.txt new file mode 100644 index 0000000..0fc9c5a --- /dev/null +++ b/src/rubygems/note.txt @@ -0,0 +1 @@ +8212 https://hackerone.com/rubygems RubyGems rubygems diff --git a/src/s-pankki/APPLE_STORE_APP_ID.txt b/src/s-pankki/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..e9a813b --- /dev/null +++ b/src/s-pankki/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +740514933 diff --git a/src/s-pankki/GOOGLE_PLAY_APP_ID.txt b/src/s-pankki/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..5ecaef5 --- /dev/null +++ b/src/s-pankki/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +fi.spankki diff --git a/src/s-pankki/URL.txt b/src/s-pankki/URL.txt new file mode 100644 index 0000000..32a5c29 --- /dev/null +++ b/src/s-pankki/URL.txt @@ -0,0 +1,18 @@ +online.s-pankki.fi +https://www.s-pankki.fi +https://crosskey.io/stores/s-pankki/apis +mobile.s-pankki.fi +https://www.s-kaupat.fi/ +https://extranet.s-pankki.fi/ +https://tunnistus.s-ryhma.fi +https://digili.s-cloud.fi/ +https://www.prisma.fi +www.s-pankki.fi +www.s-kaupat.fi +extranet.s-pankki.fi +tunnistus.s-ryhma.fi +digili.s-cloud.fi +www.prisma.fi +www.sokos.fi +api.sokos.fi +cfapi.voikukka.fi diff --git a/src/s-pankki/note.txt b/src/s-pankki/note.txt new file mode 100644 index 0000000..2e01d4f --- /dev/null +++ b/src/s-pankki/note.txt @@ -0,0 +1 @@ +29970 https://hackerone.com/s-pankki S-Pankki s-pankki diff --git a/src/saytechnologies/OTHER.txt b/src/saytechnologies/OTHER.txt new file mode 100644 index 0000000..3eeaeda --- /dev/null +++ b/src/saytechnologies/OTHER.txt @@ -0,0 +1,2 @@ +*.saytechnologies.com +*.say.rocks diff --git a/src/saytechnologies/WILDCARD.txt b/src/saytechnologies/WILDCARD.txt new file mode 100644 index 0000000..d727b72 --- /dev/null +++ b/src/saytechnologies/WILDCARD.txt @@ -0,0 +1,2 @@ +https://*.saytechnologies.com +https://*.say.rocks diff --git a/src/saytechnologies/note.txt b/src/saytechnologies/note.txt new file mode 100644 index 0000000..7d435d2 --- /dev/null +++ b/src/saytechnologies/note.txt @@ -0,0 +1 @@ +62251 https://hackerone.com/saytechnologies Say Technologies saytechnologies diff --git a/src/scopely/APPLE_STORE_APP_ID.txt b/src/scopely/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..cf414ee --- /dev/null +++ b/src/scopely/APPLE_STORE_APP_ID.txt @@ -0,0 +1,8 @@ +com.aqupepgames.projectpepe +com.pieyel.scrabble +com.withbuddies.dice.free +com.scopely.yux +com.foxnextgames.m3 +com.gww.km +id1427744264 +id1541153375 diff --git a/src/scopely/GOOGLE_PLAY_APP_ID.txt b/src/scopely/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..629314b --- /dev/null +++ b/src/scopely/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1,9 @@ +com.aqupepgames.projectpepe +com.pieyel.scrabble +com.withbuddies.dice.free +com.scopely.yux +com.foxnextgames.m3 +com.gww.km +com.scopely.monopolygo +com.scopely.startrek +com.kitkagames.fallbuddies diff --git a/src/scopely/OTHER.txt b/src/scopely/OTHER.txt new file mode 100644 index 0000000..b519d47 --- /dev/null +++ b/src/scopely/OTHER.txt @@ -0,0 +1,2 @@ +Games Tier 1 +Games Tier 2 diff --git a/src/scopely/URL.txt b/src/scopely/URL.txt new file mode 100644 index 0000000..cbe2488 --- /dev/null +++ b/src/scopely/URL.txt @@ -0,0 +1,3 @@ +*.scopely.io +*.scopely.com +*.withbuddies.com diff --git a/src/scopely/WILDCARD.txt b/src/scopely/WILDCARD.txt new file mode 100644 index 0000000..e8e119f --- /dev/null +++ b/src/scopely/WILDCARD.txt @@ -0,0 +1,6 @@ +http://*.scopely.io +http://*.scopely.com +http://*.withbuddies.com +*.scopely.io +*.scopely.com +*.withbuddies.com diff --git a/src/scopely/note.txt b/src/scopely/note.txt new file mode 100644 index 0000000..04b48b7 --- /dev/null +++ b/src/scopely/note.txt @@ -0,0 +1 @@ +567 https://hackerone.com/scopely Scopely scopely diff --git a/src/secnews/URL.txt b/src/secnews/URL.txt new file mode 100644 index 0000000..3145b90 --- /dev/null +++ b/src/secnews/URL.txt @@ -0,0 +1 @@ +*.secnews.gr diff --git a/src/secnews/WILDCARD.txt b/src/secnews/WILDCARD.txt new file mode 100644 index 0000000..29a28a2 --- /dev/null +++ b/src/secnews/WILDCARD.txt @@ -0,0 +1,2 @@ +http://*.secnews.gr +*.secnews.gr diff --git a/src/secnews/note.txt b/src/secnews/note.txt new file mode 100644 index 0000000..0b11774 --- /dev/null +++ b/src/secnews/note.txt @@ -0,0 +1 @@ +13417 https://hackerone.com/secnews SecNews secnews diff --git a/src/security/CIDR.txt b/src/security/CIDR.txt new file mode 100644 index 0000000..91cb27c --- /dev/null +++ b/src/security/CIDR.txt @@ -0,0 +1,2 @@ +66.232.20.0/23 +206.166.248.0/23 diff --git a/src/security/OTHER.txt b/src/security/OTHER.txt new file mode 100644 index 0000000..dd65077 --- /dev/null +++ b/src/security/OTHER.txt @@ -0,0 +1,3 @@ +*.vpn.hackerone.net +*.hackerone-ext-content.com +*.hackerone-user-content.com diff --git a/src/security/URL.txt b/src/security/URL.txt new file mode 100644 index 0000000..8b246cc --- /dev/null +++ b/src/security/URL.txt @@ -0,0 +1,32 @@ +https://hackerone.com +https://api.hackerone.com +https://www.hackerone.com +https://hackerone-us-west-2-production-attachments.s3-us-west-2.amazonaws.com/ +*.vpn.hackerone.net +https://app.pullrequest.com +https://reviewer.pullrequest.com +https://errors.hackerone.net +https://*.hackerone-ext-content.com +https://*.hackerone-user-content.com/ +https://ctf.hacker101.com +app.pullrequest.com +reviewer.pullrequest.com +ctf.hacker101.com +hackerone-us-west-2-production-attachments.s3-us-west-2.amazonaws.com +a5s.hackerone-ext-content.com +b5s.hackerone-ext-content.com +hackerone-ext-content.com +hackathon-photos.hackerone-user-content.com +cover-photos.hackerone-user-content.com +hackathon-photos-us-east-2.hackerone-user-content.com +profile-photos.hackerone-user-content.com +hackerone-user-content.com +profile-photos-us-east-2.hackerone-user-content.com +cover-photos-us-east-2.hackerone-user-content.com +hackerone.com +api.hackerone.com +www.hackerone.com +errors.hackerone.net +hackerone.live +www.wearehackerone.com +mta-sts.wearehackerone.com diff --git a/src/security/note.txt b/src/security/note.txt new file mode 100644 index 0000000..b027eea --- /dev/null +++ b/src/security/note.txt @@ -0,0 +1 @@ +13 https://hackerone.com/security HackerOne security diff --git a/src/securityscorecard/URL.txt b/src/securityscorecard/URL.txt new file mode 100644 index 0000000..04b586f --- /dev/null +++ b/src/securityscorecard/URL.txt @@ -0,0 +1,2 @@ +*.securityscorecard.io +*.securityscorecard.com diff --git a/src/securityscorecard/WILDCARD.txt b/src/securityscorecard/WILDCARD.txt new file mode 100644 index 0000000..4b331c7 --- /dev/null +++ b/src/securityscorecard/WILDCARD.txt @@ -0,0 +1,5 @@ +http://*.securityscorecard.io +http://*.securityscorecard.com +*.securityscorecard.io +*.securityscorecard.com +*.cvedetails.com diff --git a/src/securityscorecard/note.txt b/src/securityscorecard/note.txt new file mode 100644 index 0000000..8c1500f --- /dev/null +++ b/src/securityscorecard/note.txt @@ -0,0 +1 @@ +55215 https://hackerone.com/securityscorecard SecurityScorecard securityscorecard diff --git a/src/sega/OTHER.txt b/src/sega/OTHER.txt new file mode 100644 index 0000000..401c91a --- /dev/null +++ b/src/sega/OTHER.txt @@ -0,0 +1,9 @@ +SEGA Europe +Creative Assembly +Sports Interactive +Two Point Studios +Amplitude Studios +Hardlight Studios +Relic Entertainment +SEGA Japan +Rovio Entertainment diff --git a/src/sega/URL.txt b/src/sega/URL.txt new file mode 100644 index 0000000..3db4fca --- /dev/null +++ b/src/sega/URL.txt @@ -0,0 +1,6 @@ +www.games2gether.com +games2gether.com +community.twopointcounty.com +community.companyofheroes.com +redeem.footballmanager.com +playhyenas.com diff --git a/src/sega/note.txt b/src/sega/note.txt new file mode 100644 index 0000000..d6ac06f --- /dev/null +++ b/src/sega/note.txt @@ -0,0 +1 @@ +53545 https://hackerone.com/sega SEGA sega diff --git a/src/semrush/URL.txt b/src/semrush/URL.txt new file mode 100644 index 0000000..386c303 --- /dev/null +++ b/src/semrush/URL.txt @@ -0,0 +1,17 @@ +*.semrush.com +*.semrush.net +*.sellzone.com +*.berush.com +secure.semrushchina.cn +*.semrushchina.cn +*.seoquake.com +*.hr-semrush.com +*.sellerly.com +*.seoab.io +*.scatec.io +*.prowly.com +events.semrush.com +workflows.semrush.com +investors.semrush.com +engage.semrush.com +*.myinsights.io diff --git a/src/semrush/WILDCARD.txt b/src/semrush/WILDCARD.txt new file mode 100644 index 0000000..a3e78c7 --- /dev/null +++ b/src/semrush/WILDCARD.txt @@ -0,0 +1,18 @@ +http://*.semrush.com +http://*.semrush.net +http://*.seoquake.com +http://*.seoab.io +http://*.scatec.io +http://*.myinsights.io +http://*.sellzone.com +http://*.prowly.com +http://*.berush.com +*.semrush.com +*.semrush.net +*.seoquake.com +*.seoab.io +*.scatec.io +*.myinsights.io +*.sellzone.com +*.prowly.com +*.berush.com diff --git a/src/semrush/note.txt b/src/semrush/note.txt new file mode 100644 index 0000000..28e629b --- /dev/null +++ b/src/semrush/note.txt @@ -0,0 +1 @@ +15966 https://hackerone.com/semrush Semrush semrush diff --git a/src/servicenow-disclosure/URL.txt b/src/servicenow-disclosure/URL.txt new file mode 100644 index 0000000..787c7ea --- /dev/null +++ b/src/servicenow-disclosure/URL.txt @@ -0,0 +1,2 @@ +*.servicenow.com +*.service-now.com diff --git a/src/servicenow-disclosure/note.txt b/src/servicenow-disclosure/note.txt new file mode 100644 index 0000000..0b1d35c --- /dev/null +++ b/src/servicenow-disclosure/note.txt @@ -0,0 +1 @@ +53129 https://hackerone.com/servicenow-disclosure ServiceNow Disclosure servicenow-disclosure diff --git a/src/sheer_bbp/URL.txt b/src/sheer_bbp/URL.txt new file mode 100644 index 0000000..17d5a18 --- /dev/null +++ b/src/sheer_bbp/URL.txt @@ -0,0 +1,2 @@ +www.sheer.com +my.sheer.com diff --git a/src/sheer_bbp/note.txt b/src/sheer_bbp/note.txt new file mode 100644 index 0000000..7ba217a --- /dev/null +++ b/src/sheer_bbp/note.txt @@ -0,0 +1 @@ +58697 https://hackerone.com/sheer_bbp Sheer sheer_bbp diff --git a/src/shein/APPLE_STORE_APP_ID.txt b/src/shein/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..6dea207 --- /dev/null +++ b/src/shein/APPLE_STORE_APP_ID.txt @@ -0,0 +1,2 @@ +878577184 +1080248000 diff --git a/src/shein/GOOGLE_PLAY_APP_ID.txt b/src/shein/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..3ccb420 --- /dev/null +++ b/src/shein/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1,2 @@ +com.zzkko +com.romwe diff --git a/src/shein/URL.txt b/src/shein/URL.txt new file mode 100644 index 0000000..1982032 --- /dev/null +++ b/src/shein/URL.txt @@ -0,0 +1,3 @@ +*.shein.com +*.romwe.com +*.sheingsp.com diff --git a/src/shein/WILDCARD.txt b/src/shein/WILDCARD.txt new file mode 100644 index 0000000..23b643e --- /dev/null +++ b/src/shein/WILDCARD.txt @@ -0,0 +1,6 @@ +http://*.shein.com +http://*.romwe.com +http://*.sheingsp.com +*.shein.com +*.romwe.com +*.sheingsp.com diff --git a/src/shein/note.txt b/src/shein/note.txt new file mode 100644 index 0000000..27cf79c --- /dev/null +++ b/src/shein/note.txt @@ -0,0 +1 @@ +46469 https://hackerone.com/shein SHEIN shein diff --git a/src/shi_vdp/URL.txt b/src/shi_vdp/URL.txt new file mode 100644 index 0000000..17a82d1 --- /dev/null +++ b/src/shi_vdp/URL.txt @@ -0,0 +1,10 @@ +accounts.shi.com +api.shi.com +apiconsole.shi.com +assetinsights.shi.com +durango.shi.com +renewalreminder.shi.com +servicepro.shi.com +www.content.shi.com +www.shi.com +https://www.cxmlorderservice.shi.com/cxmlorderreceiptservice/cxmlorderreceiptservice.svc diff --git a/src/shi_vdp/note.txt b/src/shi_vdp/note.txt new file mode 100644 index 0000000..6da438e --- /dev/null +++ b/src/shi_vdp/note.txt @@ -0,0 +1 @@ +58335 https://hackerone.com/shi_vdp SHI shi_vdp diff --git a/src/shipt/APPLE_STORE_APP_ID.txt b/src/shipt/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..bd7270d --- /dev/null +++ b/src/shipt/APPLE_STORE_APP_ID.txt @@ -0,0 +1,2 @@ +971888874 +976353472 diff --git a/src/shipt/GOOGLE_PLAY_APP_ID.txt b/src/shipt/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..f50e726 --- /dev/null +++ b/src/shipt/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1,2 @@ +com.shipt.groceries +com.shipt.shopper diff --git a/src/shipt/URL.txt b/src/shipt/URL.txt new file mode 100644 index 0000000..7d6428c --- /dev/null +++ b/src/shipt/URL.txt @@ -0,0 +1,12 @@ +app.shipt.com +api.shipt.com +admin.shipt.com +shop.shipt.com +staging-api.shipt.com +staging-shop.shipt.com +staging-app.shipt.com +staging-admin.shipt.com +staging-shoppingcart.shipt.com +shoppingcart.shipt.com +www.shipt.com +*.shipt.com diff --git a/src/shipt/WILDCARD.txt b/src/shipt/WILDCARD.txt new file mode 100644 index 0000000..2d55f10 --- /dev/null +++ b/src/shipt/WILDCARD.txt @@ -0,0 +1,2 @@ +http://*.shipt.com +*.shipt.com diff --git a/src/shipt/note.txt b/src/shipt/note.txt new file mode 100644 index 0000000..e23dac1 --- /dev/null +++ b/src/shipt/note.txt @@ -0,0 +1 @@ +19264 https://hackerone.com/shipt Shipt shipt diff --git a/src/shopify-scripts/note.txt b/src/shopify-scripts/note.txt new file mode 100644 index 0000000..a84735e --- /dev/null +++ b/src/shopify-scripts/note.txt @@ -0,0 +1 @@ +15668 https://hackerone.com/shopify-scripts shopify-scripts shopify-scripts diff --git a/src/shopify/OTHER.txt b/src/shopify/OTHER.txt new file mode 100644 index 0000000..8557bf9 --- /dev/null +++ b/src/shopify/OTHER.txt @@ -0,0 +1,5 @@ +Shopify Developed Apps +Shopify Mobile Applications +Shopify Scripts Platform +Shopify Third Party Apps +Shopify Third Party Store diff --git a/src/shopify/SOURCE_CODE.txt b/src/shopify/SOURCE_CODE.txt new file mode 100644 index 0000000..147e880 --- /dev/null +++ b/src/shopify/SOURCE_CODE.txt @@ -0,0 +1 @@ +https://github.com/Shopify/* diff --git a/src/shopify/URL.txt b/src/shopify/URL.txt new file mode 100644 index 0000000..9e20724 --- /dev/null +++ b/src/shopify/URL.txt @@ -0,0 +1,13 @@ +your-store.myshopify.com +partners.shopify.com +accounts.shopify.com +shop.app +shopify.plus +arrive-server.shopifycloud.com +*.shopify.com +exchangemarketplace.com +*.shopifykloud.com +*.shopifycloud.com +linkpop.com +shopifyinbox.com +admin.shopify.com diff --git a/src/shopify/WILDCARD.txt b/src/shopify/WILDCARD.txt new file mode 100644 index 0000000..1053296 --- /dev/null +++ b/src/shopify/WILDCARD.txt @@ -0,0 +1,8 @@ +http://*.shopify.com +http://*.shopifykloud.com +http://*.shopifycloud.com +*.shopify.com +*.shopifykloud.com +*.shopifycloud.com +*.shopifycs.com +*.shopify.io diff --git a/src/shopify/note.txt b/src/shopify/note.txt new file mode 100644 index 0000000..423d75b --- /dev/null +++ b/src/shopify/note.txt @@ -0,0 +1 @@ +1382 https://hackerone.com/shopify Shopify shopify diff --git a/src/shoplazza/URL.txt b/src/shoplazza/URL.txt new file mode 100644 index 0000000..c194c16 --- /dev/null +++ b/src/shoplazza/URL.txt @@ -0,0 +1,5 @@ +sso.shoplazza.com +myaccount.shoplazza.com +*.myshoplaza.com/openapi +*.myshoplaza.com/admin +partners.shoplazza.com diff --git a/src/shoplazza/note.txt b/src/shoplazza/note.txt new file mode 100644 index 0000000..c02b967 --- /dev/null +++ b/src/shoplazza/note.txt @@ -0,0 +1 @@ +56908 https://hackerone.com/shoplazza SHOPLAZZA shoplazza diff --git a/src/showmax/APPLE_STORE_APP_ID.txt b/src/showmax/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..031be30 --- /dev/null +++ b/src/showmax/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +1014875256 diff --git a/src/showmax/GOOGLE_PLAY_APP_ID.txt b/src/showmax/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..f0bde71 --- /dev/null +++ b/src/showmax/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +showmax.app diff --git a/src/showmax/OTHER.txt b/src/showmax/OTHER.txt new file mode 100644 index 0000000..abd01cb --- /dev/null +++ b/src/showmax/OTHER.txt @@ -0,0 +1,3 @@ +Showmax tvOS Application for AppleTV +NLB (Network Load Balancer) for Showmax forwarding to HAproxies +NLB (Network Load Balancer) forwarding to NGINX Ingress Controller (Kubernetes), requiring SSO/Vouch Proxy to login diff --git a/src/showmax/URL.txt b/src/showmax/URL.txt new file mode 100644 index 0000000..6ae55d8 --- /dev/null +++ b/src/showmax/URL.txt @@ -0,0 +1,6 @@ +https://www.showmax.com +https://secure.showmax.com +https://api.showmax.com +vpn.*.platfoo.com +bastion.*.platfoo.com +https://stories.showmax.com diff --git a/src/showmax/WILDCARD.txt b/src/showmax/WILDCARD.txt new file mode 100644 index 0000000..a8f5597 --- /dev/null +++ b/src/showmax/WILDCARD.txt @@ -0,0 +1,2 @@ +http://vpn.*.platfoo.com +http://bastion.*.platfoo.com diff --git a/src/showmax/note.txt b/src/showmax/note.txt new file mode 100644 index 0000000..bcb9b72 --- /dev/null +++ b/src/showmax/note.txt @@ -0,0 +1 @@ +16159 https://hackerone.com/showmax Showmax showmax diff --git a/src/shutterfly_vdp/APPLE_STORE_APP_ID.txt b/src/shutterfly_vdp/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..4bf4169 --- /dev/null +++ b/src/shutterfly_vdp/APPLE_STORE_APP_ID.txt @@ -0,0 +1,3 @@ +com.shutterfly.ShutterflyUploader +Snapfish: Photos Cards & Books / com.hp.Snapfish +Snapfish Photo Tile Wall Decor / com.snapfish-llc.SnapfishExpress diff --git a/src/shutterfly_vdp/GOOGLE_PLAY_APP_ID.txt b/src/shutterfly_vdp/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..9e8cfdd --- /dev/null +++ b/src/shutterfly_vdp/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1,3 @@ +com.shutterfly +com.photoupload +Snapfish: Prints + Photo Books / com.snapfish.mobile diff --git a/src/shutterfly_vdp/URL.txt b/src/shutterfly_vdp/URL.txt new file mode 100644 index 0000000..2aefe76 --- /dev/null +++ b/src/shutterfly_vdp/URL.txt @@ -0,0 +1,23 @@ +lifetouch.com +jcpportraits.com +prestigeportraits.com +preschoolsmiles.com +shutterfly.com +www.borrowlenses.com +tinyprints.com +snapfish.com +snapfish.de +snapfish.fr +snapfish.ie +snapfish.it +snapfish.co.uk +snapfish.com.au +snapfish.co.nz +photo.walgreens.com +http://www.cvs.com/photo/ +www.spoonflower.com +admin.spoonflower.com +staging.spoonflower.com +blog.spoonflower.com +wgwebservices.snapfish.com +https://www.cvs.com/photo/ diff --git a/src/shutterfly_vdp/WILDCARD.txt b/src/shutterfly_vdp/WILDCARD.txt new file mode 100644 index 0000000..77c744d --- /dev/null +++ b/src/shutterfly_vdp/WILDCARD.txt @@ -0,0 +1,9 @@ +http://*.sbs.shutterfly.com +http://*.photoccino.com +http://*.lifetouch.com +*.shutterfly.com +*.snapfish.com +*.sf-cdn.com +*.lifetouch.com +*.photoccino.com +*.sbs.shutterfly.com diff --git a/src/shutterfly_vdp/note.txt b/src/shutterfly_vdp/note.txt new file mode 100644 index 0000000..655309d --- /dev/null +++ b/src/shutterfly_vdp/note.txt @@ -0,0 +1 @@ +47225 https://hackerone.com/shutterfly_vdp Shutterfly VDP shutterfly_vdp diff --git a/src/sidefx/URL.txt b/src/sidefx/URL.txt new file mode 100644 index 0000000..d6ef5f4 --- /dev/null +++ b/src/sidefx/URL.txt @@ -0,0 +1 @@ +*.sidefx.com diff --git a/src/sidefx/WILDCARD.txt b/src/sidefx/WILDCARD.txt new file mode 100644 index 0000000..2e6d3e8 --- /dev/null +++ b/src/sidefx/WILDCARD.txt @@ -0,0 +1,2 @@ +http://*.sidefx.com +*.sidefx.com diff --git a/src/sidefx/note.txt b/src/sidefx/note.txt new file mode 100644 index 0000000..b8ef703 --- /dev/null +++ b/src/sidefx/note.txt @@ -0,0 +1 @@ +55552 https://hackerone.com/sidefx SideFX sidefx diff --git a/src/sifchain/SOURCE_CODE.txt b/src/sifchain/SOURCE_CODE.txt new file mode 100644 index 0000000..d6a5d87 --- /dev/null +++ b/src/sifchain/SOURCE_CODE.txt @@ -0,0 +1 @@ +https://github.com/sifchain/sifnode diff --git a/src/sifchain/note.txt b/src/sifchain/note.txt new file mode 100644 index 0000000..1b6002e --- /dev/null +++ b/src/sifchain/note.txt @@ -0,0 +1 @@ +51877 https://hackerone.com/sifchain Sifchain sifchain diff --git a/src/simple_poll/OTHER.txt b/src/simple_poll/OTHER.txt new file mode 100644 index 0000000..dc5c848 --- /dev/null +++ b/src/simple_poll/OTHER.txt @@ -0,0 +1,2 @@ +Simple Poll Slack app +Simple Goals slack app diff --git a/src/simple_poll/URL.txt b/src/simple_poll/URL.txt new file mode 100644 index 0000000..9c702a0 --- /dev/null +++ b/src/simple_poll/URL.txt @@ -0,0 +1,3 @@ +https://simplepoll.rocks +simplegoals.app +simplepoll.rocks diff --git a/src/simple_poll/note.txt b/src/simple_poll/note.txt new file mode 100644 index 0000000..1be27f4 --- /dev/null +++ b/src/simple_poll/note.txt @@ -0,0 +1 @@ +45395 https://hackerone.com/simple_poll Simple Poll simple_poll diff --git a/src/six-group/URL.txt b/src/six-group/URL.txt new file mode 100644 index 0000000..e24a205 --- /dev/null +++ b/src/six-group/URL.txt @@ -0,0 +1 @@ +www.six-group.com diff --git a/src/six-group/note.txt b/src/six-group/note.txt new file mode 100644 index 0000000..f6aa70c --- /dev/null +++ b/src/six-group/note.txt @@ -0,0 +1 @@ +63415 https://hackerone.com/six-group SIX Group six-group diff --git a/src/skale_network/SOURCE_CODE.txt b/src/skale_network/SOURCE_CODE.txt new file mode 100644 index 0000000..b8663df --- /dev/null +++ b/src/skale_network/SOURCE_CODE.txt @@ -0,0 +1,4 @@ +https://github.com/skalenetwork/skale-consensus +https://github.com/skalenetwork/libBLS +https://github.com/skalenetwork/sgxwallet +https://github.com/skalenetwork/skale-manager/tree/develop/contracts diff --git a/src/skale_network/note.txt b/src/skale_network/note.txt new file mode 100644 index 0000000..fe9861d --- /dev/null +++ b/src/skale_network/note.txt @@ -0,0 +1 @@ +45152 https://hackerone.com/skale_network SKALE Network skale_network diff --git a/src/skinport/URL.txt b/src/skinport/URL.txt new file mode 100644 index 0000000..d6b35cb --- /dev/null +++ b/src/skinport/URL.txt @@ -0,0 +1,5 @@ +skinport.com +app.skinport.com +api.skinport.com +skinport.com/blog/ +http://skinport.com/blog/ diff --git a/src/skinport/note.txt b/src/skinport/note.txt new file mode 100644 index 0000000..e474684 --- /dev/null +++ b/src/skinport/note.txt @@ -0,0 +1 @@ +56661 https://hackerone.com/skinport Skinport skinport diff --git a/src/slack/APPLE_STORE_APP_ID.txt b/src/slack/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..9484fbc --- /dev/null +++ b/src/slack/APPLE_STORE_APP_ID.txt @@ -0,0 +1,3 @@ +com.tinyspeck.chatlyio +com.slack.slackmdm +647922896 diff --git a/src/slack/DOWNLOADABLE_EXECUTABLES.txt b/src/slack/DOWNLOADABLE_EXECUTABLES.txt new file mode 100644 index 0000000..2863249 --- /dev/null +++ b/src/slack/DOWNLOADABLE_EXECUTABLES.txt @@ -0,0 +1 @@ +https://salesforce.quip.com/blog/desktop diff --git a/src/slack/GOOGLE_PLAY_APP_ID.txt b/src/slack/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..d50df33 --- /dev/null +++ b/src/slack/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1,2 @@ +com.Slack +com.quip.quip diff --git a/src/slack/SOURCE_CODE.txt b/src/slack/SOURCE_CODE.txt new file mode 100644 index 0000000..ea0eb04 --- /dev/null +++ b/src/slack/SOURCE_CODE.txt @@ -0,0 +1 @@ +https://github.com/slackhq/nebula diff --git a/src/slack/URL.txt b/src/slack/URL.txt new file mode 100644 index 0000000..95860c2 --- /dev/null +++ b/src/slack/URL.txt @@ -0,0 +1,13 @@ +slack.com +api.slack.com +status.slack.com +slackb.com +app.slack.com +edgeapi.slack.com +slackatwork.com +slack-redir.net +slack-imgs.com +spaces.pm +www.quip.com +*.quip.com +slack-status.com diff --git a/src/slack/note.txt b/src/slack/note.txt new file mode 100644 index 0000000..acfaf4e --- /dev/null +++ b/src/slack/note.txt @@ -0,0 +1 @@ +69 https://hackerone.com/slack Slack slack diff --git a/src/smartsheet/APPLE_STORE_APP_ID.txt b/src/smartsheet/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..4f6a464 --- /dev/null +++ b/src/smartsheet/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +com.smartsheet.smartsheet diff --git a/src/smartsheet/GOOGLE_PLAY_APP_ID.txt b/src/smartsheet/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..c00dcc3 --- /dev/null +++ b/src/smartsheet/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.smartsheet.android diff --git a/src/smartsheet/URL.txt b/src/smartsheet/URL.txt new file mode 100644 index 0000000..c9602b9 --- /dev/null +++ b/src/smartsheet/URL.txt @@ -0,0 +1,7 @@ +app.smartsheet.com +api.smartsheet.com/2.0 +admin.smartsheet.com +help.smartsheet.com +developers.smartsheet.com +http://api.smartsheet.com/2.0 +www.smartsheet.com diff --git a/src/smartsheet/note.txt b/src/smartsheet/note.txt new file mode 100644 index 0000000..fbff2e9 --- /dev/null +++ b/src/smartsheet/note.txt @@ -0,0 +1 @@ +38470 https://hackerone.com/smartsheet Smartsheet smartsheet diff --git a/src/smtp2go/URL.txt b/src/smtp2go/URL.txt new file mode 100644 index 0000000..370cf88 --- /dev/null +++ b/src/smtp2go/URL.txt @@ -0,0 +1,3 @@ +smtp2go.com +app.smtp2go.com +api.smtp2go.com diff --git a/src/smtp2go/note.txt b/src/smtp2go/note.txt new file mode 100644 index 0000000..6999b63 --- /dev/null +++ b/src/smtp2go/note.txt @@ -0,0 +1 @@ +52553 https://hackerone.com/smtp2go SMTP2GO BBP smtp2go diff --git a/src/smule/APPLE_STORE_APP_ID.txt b/src/smule/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..eae433e --- /dev/null +++ b/src/smule/APPLE_STORE_APP_ID.txt @@ -0,0 +1,3 @@ +com.smule.sing.* +com.smule.magicpiano.* +com.smule.autorap.* diff --git a/src/smule/GOOGLE_PLAY_APP_ID.txt b/src/smule/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..f2fe372 --- /dev/null +++ b/src/smule/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1,3 @@ +com.smule.singandroid.* +com.smule.magicpiano.* +com.smule.autorap.* diff --git a/src/smule/URL.txt b/src/smule/URL.txt new file mode 100644 index 0000000..9e17193 --- /dev/null +++ b/src/smule/URL.txt @@ -0,0 +1 @@ +*.smule.com diff --git a/src/smule/WILDCARD.txt b/src/smule/WILDCARD.txt new file mode 100644 index 0000000..08869ca --- /dev/null +++ b/src/smule/WILDCARD.txt @@ -0,0 +1,2 @@ +http://*.smule.com +*.smule.com diff --git a/src/smule/note.txt b/src/smule/note.txt new file mode 100644 index 0000000..427a1b2 --- /dev/null +++ b/src/smule/note.txt @@ -0,0 +1 @@ +23970 https://hackerone.com/smule Smule smule diff --git a/src/snapchat/APPLE_STORE_APP_ID.txt b/src/snapchat/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..81ced33 --- /dev/null +++ b/src/snapchat/APPLE_STORE_APP_ID.txt @@ -0,0 +1,2 @@ +com.toyopagroup.picaboo +com.bitstrips.imoji diff --git a/src/snapchat/DOWNLOADABLE_EXECUTABLES.txt b/src/snapchat/DOWNLOADABLE_EXECUTABLES.txt new file mode 100644 index 0000000..66d1c23 --- /dev/null +++ b/src/snapchat/DOWNLOADABLE_EXECUTABLES.txt @@ -0,0 +1,2 @@ +Snap Camera +Lens Studio diff --git a/src/snapchat/GOOGLE_PLAY_APP_ID.txt b/src/snapchat/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..184c4eb --- /dev/null +++ b/src/snapchat/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1,2 @@ +com.snapchat.android +com.bitstrips.imoji diff --git a/src/snapchat/HARDWARE.txt b/src/snapchat/HARDWARE.txt new file mode 100644 index 0000000..53dc1df --- /dev/null +++ b/src/snapchat/HARDWARE.txt @@ -0,0 +1 @@ +Spectacles diff --git a/src/snapchat/OTHER.txt b/src/snapchat/OTHER.txt new file mode 100644 index 0000000..a1fbb6c --- /dev/null +++ b/src/snapchat/OTHER.txt @@ -0,0 +1,4 @@ +*.sc-corp.net +Tier A - Core Assets +Tier B - Non Core (Bitmoji, Playcanvas) +Tier B - Non Core (Bitmoji, Playcanvas, Lens Studio) diff --git a/src/snapchat/SOURCE_CODE.txt b/src/snapchat/SOURCE_CODE.txt new file mode 100644 index 0000000..f96d967 --- /dev/null +++ b/src/snapchat/SOURCE_CODE.txt @@ -0,0 +1 @@ +https://lensstudio.snapchat.com/api/ diff --git a/src/snapchat/URL.txt b/src/snapchat/URL.txt new file mode 100644 index 0000000..8dcfe26 --- /dev/null +++ b/src/snapchat/URL.txt @@ -0,0 +1,31 @@ +accounts.snapchat.com +app.snapchat.com +*.sc-core.net +business.snapchat.com +store.snapchat.com +kit.snapchat.com +snappublisher.snapchat.com +geofilters.snapchat.com +ads.snapchat.com +create.snapchat.com +my.snapchat.com +businesshelp.snapchat.com +www.bitmoji.com +www.bitstrips.com +scan.snapchat.com +spectacles.com +map.snapchat.com +story.snapchat.com +web.snapchat.com +blog.playcanvas.com +code.playcanvas.com +developer.playcanvas.com +forum.playcanvas.com +launch.playcanvas.com +login.playcanvas.com +msg.playcanvas.com +playcanvas.com +relay.playcanvas.com +rt.playcanvas.com +store.playcanvas.com +playcanv.as diff --git a/src/snapchat/note.txt b/src/snapchat/note.txt new file mode 100644 index 0000000..e85ffa8 --- /dev/null +++ b/src/snapchat/note.txt @@ -0,0 +1 @@ +513 https://hackerone.com/snapchat Snapchat snapchat diff --git a/src/snowplow/SOURCE_CODE.txt b/src/snowplow/SOURCE_CODE.txt new file mode 100644 index 0000000..a7575f1 --- /dev/null +++ b/src/snowplow/SOURCE_CODE.txt @@ -0,0 +1,6 @@ +github.com/snowplow/ +github.com/snowplow-incubator +https://github.com/snowplow-devops +https://github.com/snowplow-product +https://github.com/poplindata +https://github.com/snowplow-referer-parser diff --git a/src/snowplow/URL.txt b/src/snowplow/URL.txt new file mode 100644 index 0000000..f567af1 --- /dev/null +++ b/src/snowplow/URL.txt @@ -0,0 +1,8 @@ +snowplowanalytics.com +next.snowplowanalytics.com +console.snowplowanalytics.com +try.snowplowanalytics.com +docs.snowplow.io +snowplow.io +iglucentral.com +poplindata.com diff --git a/src/snowplow/note.txt b/src/snowplow/note.txt new file mode 100644 index 0000000..17bdfc5 --- /dev/null +++ b/src/snowplow/note.txt @@ -0,0 +1 @@ +53867 https://hackerone.com/snowplow Snowplow snowplow diff --git a/src/solidus/SOURCE_CODE.txt b/src/solidus/SOURCE_CODE.txt new file mode 100644 index 0000000..94582b9 --- /dev/null +++ b/src/solidus/SOURCE_CODE.txt @@ -0,0 +1,2 @@ +https://github.com/solidusio/solidus +https://github.com/solidusio/solidus_auth_devise diff --git a/src/solidus/note.txt b/src/solidus/note.txt new file mode 100644 index 0000000..e807e6e --- /dev/null +++ b/src/solidus/note.txt @@ -0,0 +1 @@ +40756 https://hackerone.com/solidus Solidus solidus diff --git a/src/sony/OTHER.txt b/src/sony/OTHER.txt new file mode 100644 index 0000000..3cffdfd --- /dev/null +++ b/src/sony/OTHER.txt @@ -0,0 +1 @@ +Security vulnerabilities that are identified in Sony products or in website domains owned, operated, or controlled by Sony are in scope. diff --git a/src/sony/note.txt b/src/sony/note.txt new file mode 100644 index 0000000..a429e2f --- /dev/null +++ b/src/sony/note.txt @@ -0,0 +1 @@ +16427 https://hackerone.com/sony Sony sony diff --git a/src/sorare/URL.txt b/src/sorare/URL.txt new file mode 100644 index 0000000..5ce6e4c --- /dev/null +++ b/src/sorare/URL.txt @@ -0,0 +1,3 @@ +sorare.com +api.sorare.com +ws.sorare.com diff --git a/src/sorare/note.txt b/src/sorare/note.txt new file mode 100644 index 0000000..f7a23e2 --- /dev/null +++ b/src/sorare/note.txt @@ -0,0 +1 @@ +55988 https://hackerone.com/sorare Sorare sorare diff --git a/src/soroban/SMART_CONTRACT.txt b/src/soroban/SMART_CONTRACT.txt new file mode 100644 index 0000000..2c96498 --- /dev/null +++ b/src/soroban/SMART_CONTRACT.txt @@ -0,0 +1 @@ +https://github.com/stellar/soroban-examples diff --git a/src/soroban/SOURCE_CODE.txt b/src/soroban/SOURCE_CODE.txt new file mode 100644 index 0000000..6de976f --- /dev/null +++ b/src/soroban/SOURCE_CODE.txt @@ -0,0 +1,11 @@ +https://github.com/stellar/rs-soroban-env +https://github.com/stellar/rs-soroban-sdk + https://github.com/stellar/stellar-core/tree/master/src/rust +https://github.com/stellar/bytes-lit +https://github.com/stellar/crate-git-revision +https://github.com/stellar/js-soroban-client +https://github.com/stellar/rs-stellar-strkey +https://github.com/stellar/rs-stellar-xdr +https://github.com/stellar/soroban-examples +https://github.com/stellar/soroban-tools +https://github.com/stellar/wasmi diff --git a/src/soroban/note.txt b/src/soroban/note.txt new file mode 100644 index 0000000..b33cb0f --- /dev/null +++ b/src/soroban/note.txt @@ -0,0 +1 @@ +63603 https://hackerone.com/soroban Soroban soroban diff --git a/src/spell/URL.txt b/src/spell/URL.txt new file mode 100644 index 0000000..d9cc2e6 --- /dev/null +++ b/src/spell/URL.txt @@ -0,0 +1 @@ +*.spell.run diff --git a/src/spell/WILDCARD.txt b/src/spell/WILDCARD.txt new file mode 100644 index 0000000..00b4c2e --- /dev/null +++ b/src/spell/WILDCARD.txt @@ -0,0 +1,2 @@ +http://*.spell.run +*.spell.run diff --git a/src/spell/note.txt b/src/spell/note.txt new file mode 100644 index 0000000..80f2a2e --- /dev/null +++ b/src/spell/note.txt @@ -0,0 +1 @@ +37632 https://hackerone.com/spell Spell spell diff --git a/src/spotify/APPLE_STORE_APP_ID.txt b/src/spotify/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..fd7e4b2 --- /dev/null +++ b/src/spotify/APPLE_STORE_APP_ID.txt @@ -0,0 +1,8 @@ +com.soundtrap.studioapp +com.spotify.client +com.spotify.s4a +com.spotify.stations +com.spotify.kids +com.spotify.soundtrap.dreamcatcher +com.anchorfminc.Anchor +io.bettylabs.Disco diff --git a/src/spotify/DOWNLOADABLE_EXECUTABLES.txt b/src/spotify/DOWNLOADABLE_EXECUTABLES.txt new file mode 100644 index 0000000..594b674 --- /dev/null +++ b/src/spotify/DOWNLOADABLE_EXECUTABLES.txt @@ -0,0 +1 @@ +Spotify desktop application (Windows and Mac) diff --git a/src/spotify/GOOGLE_PLAY_APP_ID.txt b/src/spotify/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..0432796 --- /dev/null +++ b/src/spotify/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1,9 @@ +com.spotify.tv.android +com.spotify.s4a +com.soundtrap.studioapp +com.spotify.music +com.spotify.zerotap +com.spotify.lite +com.spotify.kids +fm.anchor.android +io.bettylabs.disco diff --git a/src/spotify/OTHER.txt b/src/spotify/OTHER.txt new file mode 100644 index 0000000..f6452f7 --- /dev/null +++ b/src/spotify/OTHER.txt @@ -0,0 +1,14 @@ +Other Spotify websites +Gimlet +Anchor +Loudr +Niland +Parcast +Preact +Soundtrap +Greenroom Endpoints +Megaphone +Whooshkaa +Podsights +Chartable +Sonantic diff --git a/src/spotify/SOURCE_CODE.txt b/src/spotify/SOURCE_CODE.txt new file mode 100644 index 0000000..2bbb41e --- /dev/null +++ b/src/spotify/SOURCE_CODE.txt @@ -0,0 +1,5 @@ +Spotify SDKs +iOS SDK +Android SDK +Web Playback SDK +Backstage source code diff --git a/src/spotify/URL.txt b/src/spotify/URL.txt new file mode 100644 index 0000000..3d90155 --- /dev/null +++ b/src/spotify/URL.txt @@ -0,0 +1,11 @@ +assets.spotify.com +*.spotify.com +api.spotify.com +*.spotify.net +*.spotifyforbrands.com +backstage.io +api.sonantic.io +app.sonantic.io +label-studio-public.sonantic.io +heardle.app +everynoise.com diff --git a/src/spotify/WILDCARD.txt b/src/spotify/WILDCARD.txt new file mode 100644 index 0000000..b4e4b0d --- /dev/null +++ b/src/spotify/WILDCARD.txt @@ -0,0 +1,11 @@ +http://*.spotify.com +http://*.spotify.net +http://*.spotifyforbrands.com +*.withspotify.com +*.byspotify.com +*.atspotify.com +*.avecspotify.com +*.enspotify.com +*.forspotify.com +*.fromspotify.com +*.tospotify.com diff --git a/src/spotify/note.txt b/src/spotify/note.txt new file mode 100644 index 0000000..168e1dc --- /dev/null +++ b/src/spotify/note.txt @@ -0,0 +1 @@ +2010 https://hackerone.com/spotify Spotify spotify diff --git a/src/square-open-source/note.txt b/src/square-open-source/note.txt new file mode 100644 index 0000000..3f97a38 --- /dev/null +++ b/src/square-open-source/note.txt @@ -0,0 +1 @@ +1644 https://hackerone.com/square-open-source Square Open Source square-open-source diff --git a/src/stagingdoteverydotorg/URL.txt b/src/stagingdoteverydotorg/URL.txt new file mode 100644 index 0000000..5cfb6b2 --- /dev/null +++ b/src/stagingdoteverydotorg/URL.txt @@ -0,0 +1 @@ +staging.every.org diff --git a/src/stagingdoteverydotorg/note.txt b/src/stagingdoteverydotorg/note.txt new file mode 100644 index 0000000..150cb71 --- /dev/null +++ b/src/stagingdoteverydotorg/note.txt @@ -0,0 +1 @@ +45900 https://hackerone.com/stagingdoteverydotorg Staging.every.org stagingdoteverydotorg diff --git a/src/standard_notes/note.txt b/src/standard_notes/note.txt new file mode 100644 index 0000000..f8797d1 --- /dev/null +++ b/src/standard_notes/note.txt @@ -0,0 +1 @@ +45444 https://hackerone.com/standard_notes Standard Notes standard_notes diff --git a/src/stanford-university/URL.txt b/src/stanford-university/URL.txt new file mode 100644 index 0000000..795564d --- /dev/null +++ b/src/stanford-university/URL.txt @@ -0,0 +1,28 @@ +www.stanford.edu +bi.stanford.edu +accessories.stanford.edu +win.stanford.edu +cardinalprintcenter.stanford.edu +*.sahr.stanford.edu +ecm.stanford.edu +fasa.stanford.edu +secureportal.stanford.edu +regadmin.stanford.edu +ice.stanford.edu +iron.stanford.edu +campusmap.stanford.edu +code.stanford.edu +accounts.stanford.edu +authority.stanford.edu +idp.stanford.edu +login.stanford.edu +mydevices.stanford.edu +spdb.stanford.edu +sponsorship.stanford.edu +stanfordwho.stanford.edu +stanfordyou.stanford.edu +vault.stanford.edu +who.stanford.edu +workgroup.stanford.edu +netdb.stanford.edu +mailman.stanford.edu diff --git a/src/stanford-university/WILDCARD.txt b/src/stanford-university/WILDCARD.txt new file mode 100644 index 0000000..99a5bf0 --- /dev/null +++ b/src/stanford-university/WILDCARD.txt @@ -0,0 +1,3 @@ +http://*.sahr.stanford.edu +*.sahr.stanford.edu +https://*.stanford.edu diff --git a/src/stanford-university/note.txt b/src/stanford-university/note.txt new file mode 100644 index 0000000..a5a82bc --- /dev/null +++ b/src/stanford-university/note.txt @@ -0,0 +1 @@ +55704 https://hackerone.com/stanford-university Stanford University stanford-university diff --git a/src/starbucks/APPLE_STORE_APP_ID.txt b/src/starbucks/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..aaa5029 --- /dev/null +++ b/src/starbucks/APPLE_STORE_APP_ID.txt @@ -0,0 +1,8 @@ +com.starbucks.jp +com.starbuckschina.mystarbucksmoments +com.starbucks.fr +com.starbucks.de +com.starbucks.br +com.starbucks.mystarbucks +com.starbucks.mystarbucks.kr +com.starbucks.sbuxsingapore diff --git a/src/starbucks/GOOGLE_PLAY_APP_ID.txt b/src/starbucks/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..e33ed8b --- /dev/null +++ b/src/starbucks/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1,7 @@ +com.starbucks.jp +com.starbucks.cn +com.starbucks.fr +com.starbucks.de +com.starbucks.br +com.starbucks.mobilecard +com.starbucks.singapore diff --git a/src/starbucks/OTHER.txt b/src/starbucks/OTHER.txt new file mode 100644 index 0000000..9596d2e --- /dev/null +++ b/src/starbucks/OTHER.txt @@ -0,0 +1,3 @@ +Subdomain Takeover (SDTO) +Information Disclosures +Other assets diff --git a/src/starbucks/URL.txt b/src/starbucks/URL.txt new file mode 100644 index 0000000..4627e08 --- /dev/null +++ b/src/starbucks/URL.txt @@ -0,0 +1,18 @@ +www.starbucksreserve.com +gift.starbucks.co.jp +login.starbucks.co.jp +www.starbucks.co.jp +www.starbucks.com.cn +www.starbucks.de +www.starbucks.fr +www.starbucks.co.uk +www.starbucks.com.br +www.starbucks.ca +www.starbucks.com +app.starbucks.com +www.starbucks.co.kr +card.starbucks.com.sg +www.starbucks.com.sg +cart.starbucks.co.jp +openapi.starbucks.com +secureui.starbucks.com diff --git a/src/starbucks/note.txt b/src/starbucks/note.txt new file mode 100644 index 0000000..350b07f --- /dev/null +++ b/src/starbucks/note.txt @@ -0,0 +1 @@ +1989 https://hackerone.com/starbucks Starbucks starbucks diff --git a/src/starling_bank/APPLE_STORE_APP_ID.txt b/src/starling_bank/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..7190300 --- /dev/null +++ b/src/starling_bank/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +uk.co.starlingbank.Starling diff --git a/src/starling_bank/GOOGLE_PLAY_APP_ID.txt b/src/starling_bank/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..614e642 --- /dev/null +++ b/src/starling_bank/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.starlingbank.android diff --git a/src/starling_bank/URL.txt b/src/starling_bank/URL.txt new file mode 100644 index 0000000..849f4e7 --- /dev/null +++ b/src/starling_bank/URL.txt @@ -0,0 +1,3 @@ +app.starlingbank.com +oauth.starlingbank.com +www.starlingbank.com diff --git a/src/starling_bank/note.txt b/src/starling_bank/note.txt new file mode 100644 index 0000000..8053220 --- /dev/null +++ b/src/starling_bank/note.txt @@ -0,0 +1 @@ +37774 https://hackerone.com/starling_bank Starling Bank Limited starling_bank diff --git a/src/status_im/APPLE_STORE_APP_ID.txt b/src/status_im/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..48052f9 --- /dev/null +++ b/src/status_im/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +im.status.ethereum diff --git a/src/status_im/DOWNLOADABLE_EXECUTABLES.txt b/src/status_im/DOWNLOADABLE_EXECUTABLES.txt new file mode 100644 index 0000000..fcec019 --- /dev/null +++ b/src/status_im/DOWNLOADABLE_EXECUTABLES.txt @@ -0,0 +1 @@ +Status Desktop diff --git a/src/status_im/OTHER_APK.txt b/src/status_im/OTHER_APK.txt new file mode 100644 index 0000000..48052f9 --- /dev/null +++ b/src/status_im/OTHER_APK.txt @@ -0,0 +1 @@ +im.status.ethereum diff --git a/src/status_im/SOURCE_CODE.txt b/src/status_im/SOURCE_CODE.txt new file mode 100644 index 0000000..fa21ee2 --- /dev/null +++ b/src/status_im/SOURCE_CODE.txt @@ -0,0 +1,3 @@ +https://github.com/status-im/status-react +https://github.com/status-im/status-go +Desktop Wallet diff --git a/src/status_im/note.txt b/src/status_im/note.txt new file mode 100644 index 0000000..217297f --- /dev/null +++ b/src/status_im/note.txt @@ -0,0 +1 @@ +35929 https://hackerone.com/status_im Status.im status_im diff --git a/src/stellar/note.txt b/src/stellar/note.txt new file mode 100644 index 0000000..231c584 --- /dev/null +++ b/src/stellar/note.txt @@ -0,0 +1 @@ +20287 https://hackerone.com/stellar Stellar.org stellar diff --git a/src/stopthehacker/note.txt b/src/stopthehacker/note.txt new file mode 100644 index 0000000..dac07f3 --- /dev/null +++ b/src/stopthehacker/note.txt @@ -0,0 +1 @@ +165 https://hackerone.com/stopthehacker StopTheHacker stopthehacker diff --git a/src/streak_com/URL.txt b/src/streak_com/URL.txt new file mode 100644 index 0000000..c07d266 --- /dev/null +++ b/src/streak_com/URL.txt @@ -0,0 +1,4 @@ +www.streak.com +api.streak.com +mailfoogae.appspot.com +streaklinks.com diff --git a/src/streak_com/note.txt b/src/streak_com/note.txt new file mode 100644 index 0000000..3f2809c --- /dev/null +++ b/src/streak_com/note.txt @@ -0,0 +1 @@ +22763 https://hackerone.com/streak_com Streak streak_com diff --git a/src/stripe/APPLE_STORE_APP_ID.txt b/src/stripe/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..2b55a01 --- /dev/null +++ b/src/stripe/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +978516833 diff --git a/src/stripe/GOOGLE_PLAY_APP_ID.txt b/src/stripe/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..a775c90 --- /dev/null +++ b/src/stripe/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.stripe.android.dashboard diff --git a/src/stripe/OTHER.txt b/src/stripe/OTHER.txt new file mode 100644 index 0000000..d19b802 --- /dev/null +++ b/src/stripe/OTHER.txt @@ -0,0 +1,24 @@ +Stripe Payments +Stripe Checkout +Stripe Connect +Stripe Terminal +Stripe Billing +Stripe Elements +Stripe Dashboard +Stripe Issuing +Stripe Radar +Stripe Sigma +Stripe Atlas +Stripe SDKs +Stripe Open Source +Stripe Apps +Stripe Payment Links +Stripe Invoicing +Stripe Financial Connections +Stripe Revenue Recognition +Stripe Identity +Stripe Climate +Stripe Data Pipeline +Stripe Tax +Stripe Capital +Stripe Treasury diff --git a/src/stripe/URL.txt b/src/stripe/URL.txt new file mode 100644 index 0000000..d7d9a81 --- /dev/null +++ b/src/stripe/URL.txt @@ -0,0 +1,15 @@ +api.stripe.com +*.stripe.com +*.payable.com +*.touchtechpayments.com +*.indiehackers.com +js.stripe.com +api.taxjar.com +app.taxjar.com +*.getbouncer.com +*.recko.io +*.reckoproduction.com +*.reckostaging.com +*.recko.ai +*.link.co +www.stripe.partners diff --git a/src/stripe/WILDCARD.txt b/src/stripe/WILDCARD.txt new file mode 100644 index 0000000..3035ded --- /dev/null +++ b/src/stripe/WILDCARD.txt @@ -0,0 +1 @@ +http://*.billflow.io diff --git a/src/stripe/note.txt b/src/stripe/note.txt new file mode 100644 index 0000000..e3678a0 --- /dev/null +++ b/src/stripe/note.txt @@ -0,0 +1 @@ +50933 https://hackerone.com/stripe Stripe stripe diff --git a/src/stripo/URL.txt b/src/stripo/URL.txt new file mode 100644 index 0000000..184a6ae --- /dev/null +++ b/src/stripo/URL.txt @@ -0,0 +1,2 @@ +my.stripo.email +stripo.email diff --git a/src/stripo/note.txt b/src/stripo/note.txt new file mode 100644 index 0000000..3afc387 --- /dev/null +++ b/src/stripo/note.txt @@ -0,0 +1 @@ +42368 https://hackerone.com/stripo Stripo Inc stripo diff --git a/src/strongdm/DOWNLOADABLE_EXECUTABLES.txt b/src/strongdm/DOWNLOADABLE_EXECUTABLES.txt new file mode 100644 index 0000000..b0b2be4 --- /dev/null +++ b/src/strongdm/DOWNLOADABLE_EXECUTABLES.txt @@ -0,0 +1,3 @@ +SDM Client - Windows (sdm.exe) +SDM Client - macOS (sdm.app) +SDM Gateway - *nix diff --git a/src/strongdm/OTHER.txt b/src/strongdm/OTHER.txt new file mode 100644 index 0000000..a599431 --- /dev/null +++ b/src/strongdm/OTHER.txt @@ -0,0 +1,2 @@ +strongDM Gateway Docker/Kuberneters/Fargate Relay Container Image +Other Not Listed diff --git a/src/strongdm/SOURCE_CODE.txt b/src/strongdm/SOURCE_CODE.txt new file mode 100644 index 0000000..ef41e7d --- /dev/null +++ b/src/strongdm/SOURCE_CODE.txt @@ -0,0 +1,4 @@ +StrongDM Go SDK +StrongDM Python SDK +StrongDM Java SDK +StrongDM Ruby SDK diff --git a/src/strongdm/URL.txt b/src/strongdm/URL.txt new file mode 100644 index 0000000..0cb0e91 --- /dev/null +++ b/src/strongdm/URL.txt @@ -0,0 +1,4 @@ +app.strongdm.com +api.strongdm.com +*.sdm.network +www.strongdm.com diff --git a/src/strongdm/WILDCARD.txt b/src/strongdm/WILDCARD.txt new file mode 100644 index 0000000..60883b4 --- /dev/null +++ b/src/strongdm/WILDCARD.txt @@ -0,0 +1,2 @@ +http://*.sdm.network +*.sdm.network diff --git a/src/strongdm/note.txt b/src/strongdm/note.txt new file mode 100644 index 0000000..62e6c74 --- /dev/null +++ b/src/strongdm/note.txt @@ -0,0 +1,2 @@ +55550 https://hackerone.com/strongdm strongDM strongdm +55550 https://hackerone.com/strongdm StrongDM strongdm diff --git a/src/superbet/GOOGLE_PLAY_APP_ID.txt b/src/superbet/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..552d412 --- /dev/null +++ b/src/superbet/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1,2 @@ +ro.superbet.sport +ro.superbet.games diff --git a/src/superbet/URL.txt b/src/superbet/URL.txt new file mode 100644 index 0000000..1875478 --- /dev/null +++ b/src/superbet/URL.txt @@ -0,0 +1,3 @@ +*.superbet.ro +*.superbet.rs +*.superbet.com diff --git a/src/superbet/WILDCARD.txt b/src/superbet/WILDCARD.txt new file mode 100644 index 0000000..e3dce39 --- /dev/null +++ b/src/superbet/WILDCARD.txt @@ -0,0 +1,15 @@ +http://*.superbet.ro +http://*.superbet.rs +http://*.superbet.com +*.superbet.ro +*.superbet.rs +*.superbet.com +*.magicjackpot.ro +*.spinaway.com +*.luckydays.com +*.luckydays.ca +*.napoleoncasino.be +*.napoleondice.be +*.napoleongames.be +*.napoleonsports.be +*.superbet.pl diff --git a/src/superbet/note.txt b/src/superbet/note.txt new file mode 100644 index 0000000..8a17246 --- /dev/null +++ b/src/superbet/note.txt @@ -0,0 +1 @@ +60591 https://hackerone.com/superbet Superbet superbet diff --git a/src/superbet_romania/note.txt b/src/superbet_romania/note.txt new file mode 100644 index 0000000..9b16375 --- /dev/null +++ b/src/superbet_romania/note.txt @@ -0,0 +1 @@ +60591 https://hackerone.com/superbet_romania Superbet Romania superbet_romania diff --git a/src/svb-financial/URL.txt b/src/svb-financial/URL.txt new file mode 100644 index 0000000..7663112 --- /dev/null +++ b/src/svb-financial/URL.txt @@ -0,0 +1,16 @@ +www.svb.com +www.svbconnect.com +https://connect.svb.com/ +https://lendx.svb.com/ +https://sandbox.api.svb.com/v1/fx/deals +https://svbbpm.svbconnect.com/suite/sites/GCO-Dashboard +https://svbbpm.svbconnect.com/suite/sites/portico-client-onboarding +https://api.svb.com/ +https://openbanking.svb.com/open-banking/v3.1/ +developer.svb.com +https://www.cipherbio.com/ +connect.svb.com +lendx.svb.com +https://svbbpm.svbconnect.com/suite/sites/gco-dashboard +api.svb.com +www.cipherbio.com diff --git a/src/svb-financial/note.txt b/src/svb-financial/note.txt new file mode 100644 index 0000000..6b4885e --- /dev/null +++ b/src/svb-financial/note.txt @@ -0,0 +1 @@ +56159 https://hackerone.com/svb-financial SVB Financial svb-financial diff --git a/src/sweatco_ltd/GOOGLE_PLAY_APP_ID.txt b/src/sweatco_ltd/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..f731b24 --- /dev/null +++ b/src/sweatco_ltd/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +in.sweatco.app diff --git a/src/sweatco_ltd/note.txt b/src/sweatco_ltd/note.txt new file mode 100644 index 0000000..468bbaf --- /dev/null +++ b/src/sweatco_ltd/note.txt @@ -0,0 +1 @@ +34401 https://hackerone.com/sweatco_ltd Sweatco Ltd sweatco_ltd diff --git a/src/synapxe_cvip_vdp/OTHER.txt b/src/synapxe_cvip_vdp/OTHER.txt new file mode 100644 index 0000000..94e7245 --- /dev/null +++ b/src/synapxe_cvip_vdp/OTHER.txt @@ -0,0 +1,9 @@ +Singapore Health Services (SingHealth) +National University Health System (NUHS) +National Healthcare Group (NHG) +1 Finance Shared Services (1FSS) +Agency for Integrated Care (AIC) / Intermediate & Long Term Care (ILTC) services +ALPS Healthcare (ALPS) +Synapxe +Consortium for Clinical Research and Innovation (CRIS) +MOH Holdings (MOHH) diff --git a/src/synapxe_cvip_vdp/note.txt b/src/synapxe_cvip_vdp/note.txt new file mode 100644 index 0000000..2580d59 --- /dev/null +++ b/src/synapxe_cvip_vdp/note.txt @@ -0,0 +1 @@ +63839 https://hackerone.com/synapxe_cvip_vdp Synapxe CVIP VDP synapxe_cvip_vdp diff --git a/src/tari_labs/APPLE_STORE_APP_ID.txt b/src/tari_labs/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..b31d7de --- /dev/null +++ b/src/tari_labs/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +https://apps.apple.com/pt/app/tari-aurora/id1503654828 diff --git a/src/tari_labs/GOOGLE_PLAY_APP_ID.txt b/src/tari_labs/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..891655e --- /dev/null +++ b/src/tari_labs/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +https://play.google.com/store/apps/details?id=com.tari.android.wallet diff --git a/src/tari_labs/SOURCE_CODE.txt b/src/tari_labs/SOURCE_CODE.txt new file mode 100644 index 0000000..216e858 --- /dev/null +++ b/src/tari_labs/SOURCE_CODE.txt @@ -0,0 +1 @@ +https://github.com/tari-project/ diff --git a/src/tari_labs/URL.txt b/src/tari_labs/URL.txt new file mode 100644 index 0000000..f5c55a2 --- /dev/null +++ b/src/tari_labs/URL.txt @@ -0,0 +1,6 @@ +explore.tari.com +rfc.tari.com +textexplore.tari.com +www.tari.com +www.tarilabs.com +tlu.tarilabs.com diff --git a/src/tari_labs/note.txt b/src/tari_labs/note.txt new file mode 100644 index 0000000..4f8c20c --- /dev/null +++ b/src/tari_labs/note.txt @@ -0,0 +1 @@ +72779 https://hackerone.com/tari_labs Tari tari_labs diff --git a/src/td-bank/note.txt b/src/td-bank/note.txt new file mode 100644 index 0000000..92c3370 --- /dev/null +++ b/src/td-bank/note.txt @@ -0,0 +1,2 @@ +45660 https://hackerone.com/td-bank TD Bank td-bank +45660 https://hackerone.com/td-bank TD Bank Group td-bank diff --git a/src/tecno/HARDWARE.txt b/src/tecno/HARDWARE.txt new file mode 100644 index 0000000..bff050c --- /dev/null +++ b/src/tecno/HARDWARE.txt @@ -0,0 +1,5 @@ +CAMON Phone Series +PHANTOM Phone Series +SPARK Phone Series +POVA Phone Series +POP Phone Series diff --git a/src/tecno/OTHER_APK.txt b/src/tecno/OTHER_APK.txt new file mode 100644 index 0000000..826fb67 --- /dev/null +++ b/src/tecno/OTHER_APK.txt @@ -0,0 +1,37 @@ +com.transsion.hilauncher +com.transsion.faceid +com.transsion.calendar +com.talpa.hibrowser +com.transsion.notebook +com.rlk.weathers +com.transsion.fmradio +com.transsion.camera +net.bat.store +com.hoffnung +com.transsion.tecnospot +com.transsnet.store +com.transsion.letswitch +com.transsion.applock +com.transsion.phonemaster +tech.palm.id +com.afmobi.boomplayer +com.sh.smart.caller +com.transsion.scanningrecharger +com.scorpio.securitycom +com.transsion.aivoiceassistant +com.xui.xhide +com.transsion.compass +com.transsion.healthlife +com.transsion.plat.appupdate +com.transsion.trancare +com.zaz.translate +com.transsion.deskclock +com.transsion.screenrecord +com.transsion.systemupdate +com.transsion.screencapture +com.transsion.batterylab +com.transsion.datatransfer +com.transsion.magazineservice +com.transsion.soundrecorder +com.transsion.magicshow +com.talpa.share diff --git a/src/tecno/URL.txt b/src/tecno/URL.txt new file mode 100644 index 0000000..2d2340a --- /dev/null +++ b/src/tecno/URL.txt @@ -0,0 +1,4 @@ +www.tecno-mobile.com +www.boomplay.com +security.tecno.com +www.mobile-phantom.com diff --git a/src/tecno/WILDCARD.txt b/src/tecno/WILDCARD.txt new file mode 100644 index 0000000..a8f5808 --- /dev/null +++ b/src/tecno/WILDCARD.txt @@ -0,0 +1 @@ +*.palm.tech diff --git a/src/tecno/note.txt b/src/tecno/note.txt new file mode 100644 index 0000000..5ac30a5 --- /dev/null +++ b/src/tecno/note.txt @@ -0,0 +1 @@ +55728 https://hackerone.com/tecno TECNO tecno diff --git a/src/teleport/SOURCE_CODE.txt b/src/teleport/SOURCE_CODE.txt new file mode 100644 index 0000000..6d96264 --- /dev/null +++ b/src/teleport/SOURCE_CODE.txt @@ -0,0 +1,3 @@ +https://github.com/gravitational/teleport +https://github.com/gravitational/teleport-plugins +https://github.com/gravitational/gravity diff --git a/src/teleport/URL.txt b/src/teleport/URL.txt new file mode 100644 index 0000000..f85bf6e --- /dev/null +++ b/src/teleport/URL.txt @@ -0,0 +1,12 @@ +*.goteleport.com +*.gravitational.com +*.teleport.dev +teleport.sh +*.teleportinfra.sh +get.gravitational.io +h1-your-domain.teleport.sh +platform.teleport.sh +cloud.gravitational.io +*.gravitational.co +*.gravitational.io +askpam.ai diff --git a/src/teleport/WILDCARD.txt b/src/teleport/WILDCARD.txt new file mode 100644 index 0000000..69aa996 --- /dev/null +++ b/src/teleport/WILDCARD.txt @@ -0,0 +1,12 @@ +http://*.goteleport.com +http://*.gravitational.com +http://*.teleport.dev +http://*.teleportinfra.sh +http://*.gravitational.co +http://*.gravitational.io +*.goteleport.com +*.gravitational.com +*.teleport.dev +*.teleportinfra.sh +*.gravitational.co +*.gravitational.io diff --git a/src/teleport/note.txt b/src/teleport/note.txt new file mode 100644 index 0000000..f286260 --- /dev/null +++ b/src/teleport/note.txt @@ -0,0 +1 @@ +57187 https://hackerone.com/teleport Teleport teleport diff --git a/src/temu/APPLE_STORE_APP_ID.txt b/src/temu/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..2b97557 --- /dev/null +++ b/src/temu/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +1641486558 diff --git a/src/temu/GOOGLE_PLAY_APP_ID.txt b/src/temu/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..b9255e4 --- /dev/null +++ b/src/temu/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.einnovation.temu diff --git a/src/temu/URL.txt b/src/temu/URL.txt new file mode 100644 index 0000000..e0b886c --- /dev/null +++ b/src/temu/URL.txt @@ -0,0 +1 @@ +www.temu.com diff --git a/src/temu/note.txt b/src/temu/note.txt new file mode 100644 index 0000000..65bccb8 --- /dev/null +++ b/src/temu/note.txt @@ -0,0 +1 @@ +73681 https://hackerone.com/temu Temu temu diff --git a/src/tenable/DOWNLOADABLE_EXECUTABLES.txt b/src/tenable/DOWNLOADABLE_EXECUTABLES.txt new file mode 100644 index 0000000..e6035dd --- /dev/null +++ b/src/tenable/DOWNLOADABLE_EXECUTABLES.txt @@ -0,0 +1 @@ +Tenable Sensor Proxy diff --git a/src/tenable/OTHER.txt b/src/tenable/OTHER.txt new file mode 100644 index 0000000..ea525ba --- /dev/null +++ b/src/tenable/OTHER.txt @@ -0,0 +1,20 @@ +Tenable.sc +Nessus Professional +Log Correlation Engine +Tenable.ad +Tenable.ot +Nessus Agent +Tenable Core + Nessus/Tenable.sc/NNM/Tenable.ot +Web Application Scanner +Nessus Network Monitor +Tenable Security Center +Nessus +Tenable Identity Exposure +Tenable OT Security +Tenable Core +Tenable Web Application Scanning +Tenable Attack Surface Management +Tenable Lumin +Tenable One Exposure Management Platform +Tenable Vulnerability Management +Tenable Cloud Security diff --git a/src/tenable/URL.txt b/src/tenable/URL.txt new file mode 100644 index 0000000..32b457c --- /dev/null +++ b/src/tenable/URL.txt @@ -0,0 +1,4 @@ +Tenable.cs +Tenable.asm +tenable.cs +tenable.asm diff --git a/src/tenable/note.txt b/src/tenable/note.txt new file mode 100644 index 0000000..f2f3554 --- /dev/null +++ b/src/tenable/note.txt @@ -0,0 +1 @@ +53638 https://hackerone.com/tenable Tenable tenable diff --git a/src/tencent/note.txt b/src/tencent/note.txt new file mode 100644 index 0000000..cf6d7e9 --- /dev/null +++ b/src/tencent/note.txt @@ -0,0 +1 @@ +47776 https://hackerone.com/tencent Tencent tencent diff --git a/src/tennessee-valley-authority/URL.txt b/src/tennessee-valley-authority/URL.txt new file mode 100644 index 0000000..4384091 --- /dev/null +++ b/src/tennessee-valley-authority/URL.txt @@ -0,0 +1,19 @@ +*.tva.gov +*.tva.com +http://admin.mytva.com +http://tvaloans.com +http://energyright.com +http://tvasites.com +http://tvadeposits.com +http://tvavirtual.com +http://green.mytva.com +mytva.com +tvars.com +tvastem.com +tvarenewables.com +tvawcm.com +tvawcma.com +myenergyrightadvisor.com +energyright.efficientchoice.com +http://tva.dynamics365portals.us +http://tvasd.dynamics365portals.us diff --git a/src/tennessee-valley-authority/WILDCARD.txt b/src/tennessee-valley-authority/WILDCARD.txt new file mode 100644 index 0000000..a6d0855 --- /dev/null +++ b/src/tennessee-valley-authority/WILDCARD.txt @@ -0,0 +1,7 @@ +http://*.tva.gov +http://*.tva.com +*.tva.gov +*.tva.com +*.mytva.com +*.tva-energyright.com +*.tvaenergyrightsolutions.com diff --git a/src/tennessee-valley-authority/note.txt b/src/tennessee-valley-authority/note.txt new file mode 100644 index 0000000..93a7820 --- /dev/null +++ b/src/tennessee-valley-authority/note.txt @@ -0,0 +1 @@ +50979 https://hackerone.com/tennessee-valley-authority Tennessee Valley Authority tennessee-valley-authority diff --git a/src/teradici/note.txt b/src/teradici/note.txt new file mode 100644 index 0000000..393b490 --- /dev/null +++ b/src/teradici/note.txt @@ -0,0 +1 @@ +20051 https://hackerone.com/teradici Teradici teradici diff --git a/src/tesco/OTHER.txt b/src/tesco/OTHER.txt new file mode 100644 index 0000000..917fdfc --- /dev/null +++ b/src/tesco/OTHER.txt @@ -0,0 +1,3 @@ +Tesco +Booker +One Stop diff --git a/src/tesco/note.txt b/src/tesco/note.txt new file mode 100644 index 0000000..4b4822f --- /dev/null +++ b/src/tesco/note.txt @@ -0,0 +1 @@ +53169 https://hackerone.com/tesco Tesco tesco diff --git a/src/thisdata/note.txt b/src/thisdata/note.txt new file mode 100644 index 0000000..d58d40b --- /dev/null +++ b/src/thisdata/note.txt @@ -0,0 +1 @@ +557 https://hackerone.com/thisdata ThisData thisdata diff --git a/src/thnks/APPLE_STORE_APP_ID.txt b/src/thnks/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..f42d4f6 --- /dev/null +++ b/src/thnks/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +com.thnks.appstore diff --git a/src/thnks/GOOGLE_PLAY_APP_ID.txt b/src/thnks/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..c09b909 --- /dev/null +++ b/src/thnks/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.thnks diff --git a/src/thnks/URL.txt b/src/thnks/URL.txt new file mode 100644 index 0000000..84b0ac8 --- /dev/null +++ b/src/thnks/URL.txt @@ -0,0 +1,2 @@ +api.thnks.com +app.thnks.com diff --git a/src/thnks/note.txt b/src/thnks/note.txt new file mode 100644 index 0000000..fa629c4 --- /dev/null +++ b/src/thnks/note.txt @@ -0,0 +1 @@ +43232 https://hackerone.com/thnks Thnks thnks diff --git a/src/thomsonreuters-public/URL.txt b/src/thomsonreuters-public/URL.txt new file mode 100644 index 0000000..052eaef --- /dev/null +++ b/src/thomsonreuters-public/URL.txt @@ -0,0 +1 @@ +*.thomsonreuters.com diff --git a/src/thomsonreuters-public/WILDCARD.txt b/src/thomsonreuters-public/WILDCARD.txt new file mode 100644 index 0000000..bcdf6c8 --- /dev/null +++ b/src/thomsonreuters-public/WILDCARD.txt @@ -0,0 +1,3 @@ +http://*.thomsonreuters.com +*.thomsonreuters.com +*.reuters.com diff --git a/src/thomsonreuters-public/note.txt b/src/thomsonreuters-public/note.txt new file mode 100644 index 0000000..b6898b8 --- /dev/null +++ b/src/thomsonreuters-public/note.txt @@ -0,0 +1 @@ +43923 https://hackerone.com/thomsonreuters-public Thomson Reuters thomsonreuters-public diff --git a/src/tide/APPLE_STORE_APP_ID.txt b/src/tide/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..801314d --- /dev/null +++ b/src/tide/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +co.tide diff --git a/src/tide/GOOGLE_PLAY_APP_ID.txt b/src/tide/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..6fb4d81 --- /dev/null +++ b/src/tide/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1,2 @@ +com.tideplatform.banking +co.tide.tideplatform.in diff --git a/src/tide/URL.txt b/src/tide/URL.txt new file mode 100644 index 0000000..da09f32 --- /dev/null +++ b/src/tide/URL.txt @@ -0,0 +1,6 @@ +web.tide.co +api.tide.co +login.tide.co +app.tide.co +api.tideplatform.in +www.tide.co diff --git a/src/tide/WILDCARD.txt b/src/tide/WILDCARD.txt new file mode 100644 index 0000000..af59ce9 --- /dev/null +++ b/src/tide/WILDCARD.txt @@ -0,0 +1 @@ +*.tide.co diff --git a/src/tide/note.txt b/src/tide/note.txt new file mode 100644 index 0000000..d6cb404 --- /dev/null +++ b/src/tide/note.txt @@ -0,0 +1 @@ +51971 https://hackerone.com/tide Tide tide diff --git a/src/tiktok/APPLE_STORE_APP_ID.txt b/src/tiktok/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..cf1b331 --- /dev/null +++ b/src/tiktok/APPLE_STORE_APP_ID.txt @@ -0,0 +1,4 @@ +835599320 +1235601864 +641062073 +1591003012 diff --git a/src/tiktok/GOOGLE_PLAY_APP_ID.txt b/src/tiktok/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..8d03094 --- /dev/null +++ b/src/tiktok/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1,6 @@ +com.zhiliaoapp.musically +com.ss.android.ugc.trill +com.ss.android.ugc.now +com.tiktok.tv +com.zhiliao.musically.livewallpaper +com.tiktokshop.seller diff --git a/src/tiktok/URL.txt b/src/tiktok/URL.txt new file mode 100644 index 0000000..09bf6aa --- /dev/null +++ b/src/tiktok/URL.txt @@ -0,0 +1,19 @@ +*.tiktok.com +business.tiktok.com +ads.tiktok.com +tiktok.com +careers.tiktok.com +creatormarketplace.tiktok.com +*.tiktokv.com +developers.tiktok.com +effecthouse.tiktok.com +partner.tiktokshop.com +shop.tiktok.com +live-backstage.tiktok.com +academy-outbound-ads.tiktok.com +www.pangleglobal.com +fp-sg.tiktokv.com +affiliate-id.tokopedia.com +seller-id.tokopedia.com +shop-id.tokopedia.com +pay.tokopediax.com diff --git a/src/tiktok/note.txt b/src/tiktok/note.txt new file mode 100644 index 0000000..a63a2e6 --- /dev/null +++ b/src/tiktok/note.txt @@ -0,0 +1 @@ +49708 https://hackerone.com/tiktok TikTok tiktok diff --git a/src/tinder/APPLE_STORE_APP_ID.txt b/src/tinder/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..ddb0702 --- /dev/null +++ b/src/tinder/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +547702041 diff --git a/src/tinder/GOOGLE_PLAY_APP_ID.txt b/src/tinder/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..df5cf55 --- /dev/null +++ b/src/tinder/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.tinder diff --git a/src/tinder/URL.txt b/src/tinder/URL.txt new file mode 100644 index 0000000..59f2f27 --- /dev/null +++ b/src/tinder/URL.txt @@ -0,0 +1,6 @@ +*.tinder.com +*.gotinder.com +*.tinderops.net +*.tstaging.com +*.tstaging.tools +*.tinderwebstaging.com diff --git a/src/tinder/WILDCARD.txt b/src/tinder/WILDCARD.txt new file mode 100644 index 0000000..51342ce --- /dev/null +++ b/src/tinder/WILDCARD.txt @@ -0,0 +1,12 @@ +http://*.tinder.com +http://*.gotinder.com +http://*.tinderops.net +http://*.tstaging.com +http://*.tstaging.tools +http://*.tinderwebstaging.com +*.tinder.com +*.gotinder.com +*.tinderops.net +*.tstaging.com +*.tstaging.tools +*.tinderwebstaging.com diff --git a/src/tinder/note.txt b/src/tinder/note.txt new file mode 100644 index 0000000..460d8bb --- /dev/null +++ b/src/tinder/note.txt @@ -0,0 +1 @@ +102 https://hackerone.com/tinder Tinder tinder diff --git a/src/tokenweb3/APPLE_STORE_APP_ID.txt b/src/tokenweb3/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..be35009 --- /dev/null +++ b/src/tokenweb3/APPLE_STORE_APP_ID.txt @@ -0,0 +1,3 @@ +com.token.ios +io.tokencard.app.ios +lt.tokencard.monolith-ios diff --git a/src/tokenweb3/GOOGLE_PLAY_APP_ID.txt b/src/tokenweb3/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..c3b06c9 --- /dev/null +++ b/src/tokenweb3/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1,2 @@ +com.token.android +io.tokencard.app.android diff --git a/src/tokenweb3/SOURCE_CODE.txt b/src/tokenweb3/SOURCE_CODE.txt new file mode 100644 index 0000000..4a04139 --- /dev/null +++ b/src/tokenweb3/SOURCE_CODE.txt @@ -0,0 +1 @@ +https://github.com/tokencard/contracts/tree/master/contracts diff --git a/src/tokenweb3/URL.txt b/src/tokenweb3/URL.txt new file mode 100644 index 0000000..b073e1e --- /dev/null +++ b/src/tokenweb3/URL.txt @@ -0,0 +1,6 @@ +*.prod.brazil.tkn.zone +*.production.tkn.zone +token.com +monolith.xyz +*.tokensvc.com +blog.token.com diff --git a/src/tokenweb3/WILDCARD.txt b/src/tokenweb3/WILDCARD.txt new file mode 100644 index 0000000..aa80afa --- /dev/null +++ b/src/tokenweb3/WILDCARD.txt @@ -0,0 +1,4 @@ +http://*.tokensvc.com +http://*.production.tkn.zone +*.tokensvc.com +*.production.tkn.zone diff --git a/src/tokenweb3/note.txt b/src/tokenweb3/note.txt new file mode 100644 index 0000000..d6dd575 --- /dev/null +++ b/src/tokenweb3/note.txt @@ -0,0 +1 @@ +58251 https://hackerone.com/tokenweb3 token.com tokenweb3 diff --git a/src/toolsforhumanity/APPLE_STORE_APP_ID.txt b/src/toolsforhumanity/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..69d4e2b --- /dev/null +++ b/src/toolsforhumanity/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +https://apps.apple.com/no/app/world-app-worldcoin-wallet/id1560859847 diff --git a/src/toolsforhumanity/GOOGLE_PLAY_APP_ID.txt b/src/toolsforhumanity/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..195c136 --- /dev/null +++ b/src/toolsforhumanity/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +https://play.google.com/store/apps/details?id=com.worldcoin diff --git a/src/toolsforhumanity/SMART_CONTRACT.txt b/src/toolsforhumanity/SMART_CONTRACT.txt new file mode 100644 index 0000000..70be1df --- /dev/null +++ b/src/toolsforhumanity/SMART_CONTRACT.txt @@ -0,0 +1,2 @@ +https://github.com/worldcoin/world-id-contracts +https://github.com/worldcoin/world-id-state-bridge diff --git a/src/toolsforhumanity/SOURCE_CODE.txt b/src/toolsforhumanity/SOURCE_CODE.txt new file mode 100644 index 0000000..52e4e8b --- /dev/null +++ b/src/toolsforhumanity/SOURCE_CODE.txt @@ -0,0 +1 @@ +https://github.com/worldcoin diff --git a/src/toolsforhumanity/URL.txt b/src/toolsforhumanity/URL.txt new file mode 100644 index 0000000..47d2b99 --- /dev/null +++ b/src/toolsforhumanity/URL.txt @@ -0,0 +1,4 @@ +toolsforhumanity.com +getworldcoin.com +bioid-management.app +worldcoin.org diff --git a/src/toolsforhumanity/WILDCARD.txt b/src/toolsforhumanity/WILDCARD.txt new file mode 100644 index 0000000..62c1eea --- /dev/null +++ b/src/toolsforhumanity/WILDCARD.txt @@ -0,0 +1,5 @@ +*.worldcoin.org +*.consumer.worldcoin.org +*.worldcoin-distributors.com +*.worldcoin.dev +*.toolsforhumanity.com diff --git a/src/toolsforhumanity/note.txt b/src/toolsforhumanity/note.txt new file mode 100644 index 0000000..bd7da01 --- /dev/null +++ b/src/toolsforhumanity/note.txt @@ -0,0 +1 @@ +63660 https://hackerone.com/toolsforhumanity Tools for Humanity toolsforhumanity diff --git a/src/top_echelon_software/URL.txt b/src/top_echelon_software/URL.txt new file mode 100644 index 0000000..fd48440 --- /dev/null +++ b/src/top_echelon_software/URL.txt @@ -0,0 +1,3 @@ +www.topechelon.com +bigbiller.topechelon.com +bb3api.topechelon.com diff --git a/src/top_echelon_software/note.txt b/src/top_echelon_software/note.txt new file mode 100644 index 0000000..abef3a2 --- /dev/null +++ b/src/top_echelon_software/note.txt @@ -0,0 +1 @@ +41357 https://hackerone.com/top_echelon_software Top Echelon Software top_echelon_software diff --git a/src/topcoder/URL.txt b/src/topcoder/URL.txt new file mode 100644 index 0000000..ecd570e --- /dev/null +++ b/src/topcoder/URL.txt @@ -0,0 +1,66 @@ +www.topcoder.com +api.topcoder.com +arena.topcoder.com +blockchain.topcoder.com +bugzilla.topcoder.com +cmap.topcoder.com +cognitive.topcoder.com +community.topcoder.com +community-app.topcoder.com +connect.topcoder.com +crowdsourcing.topcoder.com +dashboards.topcoder.com +demo.topcoder.com +dev1.topcoder.com +dna.topcoder.com +enterprise.topcoder.com +facedetection.topcoder.com +faceid.topcoder.com +feeds.topcoder.com +forums.topcoder.com +hfgeoloc.topcoder.com +idolondemand.topcoder.com +innovation.topcoder.com +ios.topcoder.com +lauscher.topcoder.com +leaderboards.topcoder.com +members.topcoder.com +morgoth.topcoder.com +namedentity.topcoder.com +pam-wind-dash.topcoder.com +pins-dash.topcoder.com +quantum.topcoder.com +radiological.topcoder.com +ragnar.topcoder.com +scavengerhunt.topcoder.com +software.topcoder.com +solutions.topcoder.com +spacenet.topcoder.com +spacenet2.topcoder.com +status.topcoder.com +studio.topcoder.com +submission-review.topcoder.com +submission-review-api.topcoder.com +success.topcoder.com +tco12.topcoder.com +tco15.topcoder.com +tco16.topcoder.com +tco17.topcoder.com +tco18.topcoder.com +tco19.topcoder.com +textsummarization.topcoder.com +veterans.topcoder.com +vpn.topcoder.com +webhooks.topcoder.com +wordpress.topcoder.com +wordpress-move.topcoder.com +x.topcoder.com +zurich.topcoder.com +accounts.topcoder.com +app.topcoder.com +apps.topcoder.com +challenges.topcoder.com +accounts-auth0.topcoder.com +vanilla.topcoder-dev.com +go.topcoder.com +discussions.topcoder.com diff --git a/src/topcoder/note.txt b/src/topcoder/note.txt new file mode 100644 index 0000000..05a265d --- /dev/null +++ b/src/topcoder/note.txt @@ -0,0 +1 @@ +43330 https://hackerone.com/topcoder Topcoder topcoder diff --git a/src/torproject/OTHER.txt b/src/torproject/OTHER.txt new file mode 100644 index 0000000..62d5836 --- /dev/null +++ b/src/torproject/OTHER.txt @@ -0,0 +1,4 @@ +Tor +Tor Browser +Services (like the website, bug tracker, and server infrastructure) +Orbot diff --git a/src/torproject/note.txt b/src/torproject/note.txt new file mode 100644 index 0000000..d5aa632 --- /dev/null +++ b/src/torproject/note.txt @@ -0,0 +1 @@ +1800 https://hackerone.com/torproject Tor torproject diff --git a/src/toyota/URL.txt b/src/toyota/URL.txt new file mode 100644 index 0000000..c3ff8b7 --- /dev/null +++ b/src/toyota/URL.txt @@ -0,0 +1,19 @@ +www.dashboard.gatekeepers.co.in +www.toyotaconnected.co.in +www.toyota.com +www.lexus.com +www.toyotaconnected.com +www.toyotafinancialpr.com +www.lexusfinancial.com +www.global.toyota +www.lexus.jp +www.toyota.jp +www.utility.gac.toyota.com +www.link.gac.toyota.com +www.tddsprogram.com +www.toyotamobility.com +www.trdusa.com +www.toyotacertificados.com +www.toyotacertified.com +www.toyotafinancial.com +www.login.gac.toyota.com diff --git a/src/toyota/note.txt b/src/toyota/note.txt new file mode 100644 index 0000000..7a05447 --- /dev/null +++ b/src/toyota/note.txt @@ -0,0 +1 @@ +14743 https://hackerone.com/toyota Toyota toyota diff --git a/src/trade-republic-bbp/APPLE_STORE_APP_ID.txt b/src/trade-republic-bbp/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..7783557 --- /dev/null +++ b/src/trade-republic-bbp/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +de.traderepublic.app diff --git a/src/trade-republic-bbp/GOOGLE_PLAY_APP_ID.txt b/src/trade-republic-bbp/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..7783557 --- /dev/null +++ b/src/trade-republic-bbp/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +de.traderepublic.app diff --git a/src/trade-republic-bbp/URL.txt b/src/trade-republic-bbp/URL.txt new file mode 100644 index 0000000..008981f --- /dev/null +++ b/src/trade-republic-bbp/URL.txt @@ -0,0 +1,3 @@ +app.traderepublic.com +api.traderepublic.com +traderepublic.com diff --git a/src/trade-republic-bbp/note.txt b/src/trade-republic-bbp/note.txt new file mode 100644 index 0000000..a9eafe6 --- /dev/null +++ b/src/trade-republic-bbp/note.txt @@ -0,0 +1 @@ +53042 https://hackerone.com/trade-republic-bbp Trade Republic Bounty trade-republic-bbp diff --git a/src/trafficfactory/URL.txt b/src/trafficfactory/URL.txt new file mode 100644 index 0000000..7827325 --- /dev/null +++ b/src/trafficfactory/URL.txt @@ -0,0 +1,5 @@ +https://www.trafficfactory.com/ +https://main.trafficfactory.biz/ +*.trafficfactory.biz +www.trafficfactory.com +main.trafficfactory.biz diff --git a/src/trafficfactory/WILDCARD.txt b/src/trafficfactory/WILDCARD.txt new file mode 100644 index 0000000..9dd2da5 --- /dev/null +++ b/src/trafficfactory/WILDCARD.txt @@ -0,0 +1,2 @@ +http://*.trafficfactory.biz +*.trafficfactory.biz diff --git a/src/trafficfactory/note.txt b/src/trafficfactory/note.txt new file mode 100644 index 0000000..625bcec --- /dev/null +++ b/src/trafficfactory/note.txt @@ -0,0 +1 @@ +50466 https://hackerone.com/trafficfactory Traffic Factory trafficfactory diff --git a/src/transunion/URL.txt b/src/transunion/URL.txt new file mode 100644 index 0000000..e9fc705 --- /dev/null +++ b/src/transunion/URL.txt @@ -0,0 +1,7 @@ +service.transunion.com +freeze.transunion.com +disclosure.transunion.com +dispute.transunion.com +fraud.transunion.com +checkmyscore.transunion.com +personalsolution.transunion.hk diff --git a/src/transunion/WILDCARD.txt b/src/transunion/WILDCARD.txt new file mode 100644 index 0000000..9151238 --- /dev/null +++ b/src/transunion/WILDCARD.txt @@ -0,0 +1,22 @@ +*.transunion.com +*.tui.transunion.com +*.transunion.co.za +*.transunionafrica.com +*.transunioncibil.com +*.transunion.hk +*.transunion.ph +*.transunion.co.uk +*.transunion.co.br +*.transunion.do +*.chile.transunion.com +*.transunioncentralamerica.com +*.transunion.mx +*.transunion.ca +*.neustar +*.neustar.biz +*.neustarcare.com +*.npac.com +*.cibil.com +*.cibilcreditreport.in +*.transuniondecisioncentre.co.in +*.transunionsolutions.co.in diff --git a/src/transunion/note.txt b/src/transunion/note.txt new file mode 100644 index 0000000..d38c872 --- /dev/null +++ b/src/transunion/note.txt @@ -0,0 +1 @@ +71332 https://hackerone.com/transunion TransUnion LLC transunion diff --git a/src/trellix/OTHER.txt b/src/trellix/OTHER.txt new file mode 100644 index 0000000..f25543d --- /dev/null +++ b/src/trellix/OTHER.txt @@ -0,0 +1,4 @@ +Trellix Products +Other Trellix Websites +Other Skyhigh Security Websites +Skyhigh Security products diff --git a/src/trellix/URL.txt b/src/trellix/URL.txt new file mode 100644 index 0000000..fc09887 --- /dev/null +++ b/src/trellix/URL.txt @@ -0,0 +1,2 @@ +*.trellix.com +*.skyhighsecurity.com diff --git a/src/trellix/WILDCARD.txt b/src/trellix/WILDCARD.txt new file mode 100644 index 0000000..6827caf --- /dev/null +++ b/src/trellix/WILDCARD.txt @@ -0,0 +1,4 @@ +http://*.trellix.com +http://*.skyhighsecurity.com +*.trellix.com +*.skyhighsecurity.com diff --git a/src/trellix/note.txt b/src/trellix/note.txt new file mode 100644 index 0000000..9937450 --- /dev/null +++ b/src/trellix/note.txt @@ -0,0 +1 @@ +1930 https://hackerone.com/trellix Trellix trellix diff --git a/src/trendyol/APPLE_STORE_APP_ID.txt b/src/trendyol/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..512eb94 --- /dev/null +++ b/src/trendyol/APPLE_STORE_APP_ID.txt @@ -0,0 +1,3 @@ +524362642 +1127881507 +6467634418 diff --git a/src/trendyol/GOOGLE_PLAY_APP_ID.txt b/src/trendyol/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..454f3e7 --- /dev/null +++ b/src/trendyol/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1,3 @@ +trendyol.com +com.dolap.android +com.trendyol.milla.android diff --git a/src/trendyol/URL.txt b/src/trendyol/URL.txt new file mode 100644 index 0000000..55c1368 --- /dev/null +++ b/src/trendyol/URL.txt @@ -0,0 +1,4 @@ +www.trendyol.com +m.trendyol.com +www.dolap.com +www.trendyol-milla.com diff --git a/src/trendyol/note.txt b/src/trendyol/note.txt new file mode 100644 index 0000000..c4a5a13 --- /dev/null +++ b/src/trendyol/note.txt @@ -0,0 +1 @@ +52295 https://hackerone.com/trendyol Trendyol trendyol diff --git a/src/trip_com/APPLE_STORE_APP_ID.txt b/src/trip_com/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..5b79969 --- /dev/null +++ b/src/trip_com/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +com.trip.ios diff --git a/src/trip_com/GOOGLE_PLAY_APP_ID.txt b/src/trip_com/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..1195bc4 --- /dev/null +++ b/src/trip_com/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.trip.android diff --git a/src/trip_com/OTHER.txt b/src/trip_com/OTHER.txt new file mode 100644 index 0000000..5b4fc92 --- /dev/null +++ b/src/trip_com/OTHER.txt @@ -0,0 +1 @@ +.trip.com diff --git a/src/trip_com/WILDCARD.txt b/src/trip_com/WILDCARD.txt new file mode 100644 index 0000000..0108715 --- /dev/null +++ b/src/trip_com/WILDCARD.txt @@ -0,0 +1 @@ +*.trip.com diff --git a/src/trip_com/note.txt b/src/trip_com/note.txt new file mode 100644 index 0000000..4146b06 --- /dev/null +++ b/src/trip_com/note.txt @@ -0,0 +1 @@ +70847 https://hackerone.com/trip_com Trip.com trip_com diff --git a/src/tron_dao/SOURCE_CODE.txt b/src/tron_dao/SOURCE_CODE.txt new file mode 100644 index 0000000..387e7f2 --- /dev/null +++ b/src/tron_dao/SOURCE_CODE.txt @@ -0,0 +1 @@ +https://github.com/tronprotocol/java-tron diff --git a/src/tron_dao/note.txt b/src/tron_dao/note.txt new file mode 100644 index 0000000..10aaab9 --- /dev/null +++ b/src/tron_dao/note.txt @@ -0,0 +1 @@ +61129 https://hackerone.com/tron_dao TRON DAO tron_dao diff --git a/src/truecaller/APPLE_STORE_APP_ID.txt b/src/truecaller/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..b952736 --- /dev/null +++ b/src/truecaller/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +448142450 diff --git a/src/truecaller/GOOGLE_PLAY_APP_ID.txt b/src/truecaller/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..72ed58d --- /dev/null +++ b/src/truecaller/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.truecaller diff --git a/src/truecaller/URL.txt b/src/truecaller/URL.txt new file mode 100644 index 0000000..6395c92 --- /dev/null +++ b/src/truecaller/URL.txt @@ -0,0 +1,165 @@ +business.truecaller.com +account-noneu.truecaller.com +account-onboarding-noneu.truecaller.com +ads-audience-ingestion-noneu.truecaller.com +ads-audience-uploader.truecaller.com +ads-config-engine-noneu.truecaller.com +ads-partner-noneu.truecaller.com +ads-rules-asia-south1.truecaller.com +ads-rules-noneu.truecaller.com +ads5-asia-south1.truecaller.com +api4-asia-south1.truecaller.com +apigw-noneu.truecaller.com +assure-noneu.truecaller.com +audience-uploader-asia-south1.truecaller.com +audience-uploader-noneu.truecaller.com +audience-uploader.truecaller.com +auth4-asia-south1.truecaller.com +auth4-noneu.truecaller.com +backup.truecaller.com +batchlogging4.truecaller.com +callkit-asia-south1.truecaller.com +comments-asia-south1.truecaller.com +comments-noneu.truecaller.com +company-profile-asia-south1.truecaller.com +company-profile-noneu.truecaller.com +contact-lists-noneu.truecaller.com +contact-request-stateless-noneu.truecaller.com +contact-upload4-asia-south1.truecaller.com +contact-upload4.truecaller.com +device-safety-asia-south1.truecaller.com +duo-eu.truecaller.com +duo-invite-eu.truecaller.com +duo-invite-noneu.truecaller.com +duo-invite.truecaller.com +duo-noneu.truecaller.com +duo.truecaller.com +edge-locations5.truecaller.com +email-verification-noneu.truecaller.com +enterprise-account-management-noneu.truecaller.com +enterprise-accounts-noneu.truecaller.com +enterprise-auth-noneu.truecaller.com +enterprise-bizengage-noneu.truecaller.com +enterprise-biznumbers-noneu.truecaller.com +enterprise-feedback-noneu.truecaller.com +enterprise-portal-noneu.truecaller.com +enterprise-reports-noneu.truecaller.com +enterprise-service-management-noneu.truecaller.com +enterprise-survey-asia-south1.truecaller.com +enterprise-survey-noneu.truecaller.com +enterprise-userfeedback-noneu.truecaller.com +enterprise-webhooks-noneu.truecaller.com +feedback-asia-south1.truecaller.com +filter-store4-asia-south1.truecaller.com +filter-store4.truecaller.com +images-asia-south1.truecaller.com +images.truecaller.com +insights-categorizer-noneu.truecaller.com +leadgen-asia-south1.truecaller.com +messenger-previews-asia-south1.truecaller.com +messenger-previews-noneu.truecaller.com +messenger-previews.truecaller.com +messenger-web-relay-compat-noneu.truecaller.com +messenger-web-relay-noneu.truecaller.com +nationalidverification-noneu.truecaller.com +notifications5-asia-south1.truecaller.com +notifications5.truecaller.com +oauth-account-asia-south1.truecaller.com +oauth-portal-asia-south1.truecaller.com +oauth-portal-noneu.truecaller.com +openid-noneu.truecaller.com +opt-out-noneu.truecaller.com +otp-callback-noneu.truecaller.com +outline-asia-south1.truecaller.com +outline-noneu.truecaller.com +partner-account-asia-south1.truecaller.com +partner-account-noneu.truecaller.com +partners-search.truecaller.com +phone-gateway-noneu.truecaller.com +phonebook5-asia-south1.truecaller.com +phonebook5.truecaller.com +pixel-noneu.truecaller.com +pixel.truecaller.com +placement-rules-noneu.truecaller.com +premium-noneu.truecaller.com +presence-grpc-noneu.truecaller.com +presence-grpc.truecaller.com +profile-view-asia-south1.truecaller.com +profile-view.truecaller.com +profile4-asia-south1.truecaller.com +profile4.truecaller.com +push-callerid-noneu.truecaller.com +pushid-asia-south1.truecaller.com +recommended-contacts-noneu.truecaller.com +referrals-asia-south1.truecaller.com +request3-asia-south1.truecaller.com +request3-noneu.truecaller.com +sdk-apps-noneu.truecaller.com +sdk-otp-verification-noneu.truecaller.com +search-external-features-asia-south1.truecaller.com +search-external-features-noneu.truecaller.com +search-warnings-asia-south1.truecaller.com +search-warnings-noneu.truecaller.com +search5-asia-south1.truecaller.com +search5.truecaller.com +stores-api-noneu.truecaller.com +survey-asia-south1.truecaller.com +survey-noneu.truecaller.com +tagging5-asia-south1.truecaller.com +telecom-operator-data-asia-south1.truecaller.com +telecom-operator-data-noneu.truecaller.com +telecom-operator-data.truecaller.com +topspammers-asia-south1.truecaller.com +truehelper-noneu.truecaller.com +unlist5-asia-south1.truecaller.com +unlist5-noneu.truecaller.com +unlist5.truecaller.com +unwanted-communication-extension-noneu.truecaller.com +upload3-asia-south1.truecaller.com +upload3-noneu.truecaller.com +url-metadata-noneu.truecaller.com +user-archive-asia-south1.truecaller.com +valid-names-noneu.truecaller.com +verification-noneu.truecaller.com +video-callerid-noneu.truecaller.com +voip-asia-south1.truecaller.com +web-consent-noneu.truecaller.com +web.truecaller.com +webdirectory-noneu.truecaller.com +webonboarding-noneu.truecaller.com +www.truecaller.com +account-onboarding-eu.truecaller.com +ads-segment-profile-eu.truecaller.com +apple-subscription-monitor-eu.truecaller.com +comments-eu.truecaller.com +company-profile-eu.truecaller.com +contact-lists-eu.truecaller.com +contact-request-stateless-eu.truecaller.com +email-verification-eu.truecaller.com +enterprise-auth-eu.truecaller.com +insights-categorizer-eu.truecaller.com +insights-registry-eu.truecaller.com +messenger-eu.truecaller.com +messenger-previews-eu.truecaller.com +messenger-web-eu.truecaller.com +messenger-web-relay-compat-eu.truecaller.com +messenger-web-relay-eu.truecaller.com +messenger-web-relay-europe-west4.truecaller.com +otp-callback-eu.truecaller.com +partner-account-eu.truecaller.com +phone-gateway-eu.truecaller.com +premium-eu.truecaller.com +presence-grpc-eu.truecaller.com +push-callerid-eu.truecaller.com +request3-eu.truecaller.com +search-warnings-eu.truecaller.com +subscription-monitor-eu.truecaller.com +survey-eu.truecaller.com +truehelper-eu.truecaller.com +unlist5-eu.truecaller.com +unwanted-communication-extension-eu.truecaller.com +valid-names-eu.truecaller.com +verification-eu.truecaller.com +video-callerid-eu.truecaller.com +webdirectory-eu.truecaller.com +webonboarding-eu.truecaller.com diff --git a/src/truecaller/note.txt b/src/truecaller/note.txt new file mode 100644 index 0000000..4d02806 --- /dev/null +++ b/src/truecaller/note.txt @@ -0,0 +1,2 @@ +44135 https://hackerone.com/truecaller Truecaller BBP truecaller +44135 https://hackerone.com/truecaller Truecaller truecaller diff --git a/src/truecaller_bbp/APPLE_STORE_APP_ID.txt b/src/truecaller_bbp/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..b952736 --- /dev/null +++ b/src/truecaller_bbp/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +448142450 diff --git a/src/truecaller_bbp/GOOGLE_PLAY_APP_ID.txt b/src/truecaller_bbp/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..72ed58d --- /dev/null +++ b/src/truecaller_bbp/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.truecaller diff --git a/src/truecaller_bbp/URL.txt b/src/truecaller_bbp/URL.txt new file mode 100644 index 0000000..6395c92 --- /dev/null +++ b/src/truecaller_bbp/URL.txt @@ -0,0 +1,165 @@ +business.truecaller.com +account-noneu.truecaller.com +account-onboarding-noneu.truecaller.com +ads-audience-ingestion-noneu.truecaller.com +ads-audience-uploader.truecaller.com +ads-config-engine-noneu.truecaller.com +ads-partner-noneu.truecaller.com +ads-rules-asia-south1.truecaller.com +ads-rules-noneu.truecaller.com +ads5-asia-south1.truecaller.com +api4-asia-south1.truecaller.com +apigw-noneu.truecaller.com +assure-noneu.truecaller.com +audience-uploader-asia-south1.truecaller.com +audience-uploader-noneu.truecaller.com +audience-uploader.truecaller.com +auth4-asia-south1.truecaller.com +auth4-noneu.truecaller.com +backup.truecaller.com +batchlogging4.truecaller.com +callkit-asia-south1.truecaller.com +comments-asia-south1.truecaller.com +comments-noneu.truecaller.com +company-profile-asia-south1.truecaller.com +company-profile-noneu.truecaller.com +contact-lists-noneu.truecaller.com +contact-request-stateless-noneu.truecaller.com +contact-upload4-asia-south1.truecaller.com +contact-upload4.truecaller.com +device-safety-asia-south1.truecaller.com +duo-eu.truecaller.com +duo-invite-eu.truecaller.com +duo-invite-noneu.truecaller.com +duo-invite.truecaller.com +duo-noneu.truecaller.com +duo.truecaller.com +edge-locations5.truecaller.com +email-verification-noneu.truecaller.com +enterprise-account-management-noneu.truecaller.com +enterprise-accounts-noneu.truecaller.com +enterprise-auth-noneu.truecaller.com +enterprise-bizengage-noneu.truecaller.com +enterprise-biznumbers-noneu.truecaller.com +enterprise-feedback-noneu.truecaller.com +enterprise-portal-noneu.truecaller.com +enterprise-reports-noneu.truecaller.com +enterprise-service-management-noneu.truecaller.com +enterprise-survey-asia-south1.truecaller.com +enterprise-survey-noneu.truecaller.com +enterprise-userfeedback-noneu.truecaller.com +enterprise-webhooks-noneu.truecaller.com +feedback-asia-south1.truecaller.com +filter-store4-asia-south1.truecaller.com +filter-store4.truecaller.com +images-asia-south1.truecaller.com +images.truecaller.com +insights-categorizer-noneu.truecaller.com +leadgen-asia-south1.truecaller.com +messenger-previews-asia-south1.truecaller.com +messenger-previews-noneu.truecaller.com +messenger-previews.truecaller.com +messenger-web-relay-compat-noneu.truecaller.com +messenger-web-relay-noneu.truecaller.com +nationalidverification-noneu.truecaller.com +notifications5-asia-south1.truecaller.com +notifications5.truecaller.com +oauth-account-asia-south1.truecaller.com +oauth-portal-asia-south1.truecaller.com +oauth-portal-noneu.truecaller.com +openid-noneu.truecaller.com +opt-out-noneu.truecaller.com +otp-callback-noneu.truecaller.com +outline-asia-south1.truecaller.com +outline-noneu.truecaller.com +partner-account-asia-south1.truecaller.com +partner-account-noneu.truecaller.com +partners-search.truecaller.com +phone-gateway-noneu.truecaller.com +phonebook5-asia-south1.truecaller.com +phonebook5.truecaller.com +pixel-noneu.truecaller.com +pixel.truecaller.com +placement-rules-noneu.truecaller.com +premium-noneu.truecaller.com +presence-grpc-noneu.truecaller.com +presence-grpc.truecaller.com +profile-view-asia-south1.truecaller.com +profile-view.truecaller.com +profile4-asia-south1.truecaller.com +profile4.truecaller.com +push-callerid-noneu.truecaller.com +pushid-asia-south1.truecaller.com +recommended-contacts-noneu.truecaller.com +referrals-asia-south1.truecaller.com +request3-asia-south1.truecaller.com +request3-noneu.truecaller.com +sdk-apps-noneu.truecaller.com +sdk-otp-verification-noneu.truecaller.com +search-external-features-asia-south1.truecaller.com +search-external-features-noneu.truecaller.com +search-warnings-asia-south1.truecaller.com +search-warnings-noneu.truecaller.com +search5-asia-south1.truecaller.com +search5.truecaller.com +stores-api-noneu.truecaller.com +survey-asia-south1.truecaller.com +survey-noneu.truecaller.com +tagging5-asia-south1.truecaller.com +telecom-operator-data-asia-south1.truecaller.com +telecom-operator-data-noneu.truecaller.com +telecom-operator-data.truecaller.com +topspammers-asia-south1.truecaller.com +truehelper-noneu.truecaller.com +unlist5-asia-south1.truecaller.com +unlist5-noneu.truecaller.com +unlist5.truecaller.com +unwanted-communication-extension-noneu.truecaller.com +upload3-asia-south1.truecaller.com +upload3-noneu.truecaller.com +url-metadata-noneu.truecaller.com +user-archive-asia-south1.truecaller.com +valid-names-noneu.truecaller.com +verification-noneu.truecaller.com +video-callerid-noneu.truecaller.com +voip-asia-south1.truecaller.com +web-consent-noneu.truecaller.com +web.truecaller.com +webdirectory-noneu.truecaller.com +webonboarding-noneu.truecaller.com +www.truecaller.com +account-onboarding-eu.truecaller.com +ads-segment-profile-eu.truecaller.com +apple-subscription-monitor-eu.truecaller.com +comments-eu.truecaller.com +company-profile-eu.truecaller.com +contact-lists-eu.truecaller.com +contact-request-stateless-eu.truecaller.com +email-verification-eu.truecaller.com +enterprise-auth-eu.truecaller.com +insights-categorizer-eu.truecaller.com +insights-registry-eu.truecaller.com +messenger-eu.truecaller.com +messenger-previews-eu.truecaller.com +messenger-web-eu.truecaller.com +messenger-web-relay-compat-eu.truecaller.com +messenger-web-relay-eu.truecaller.com +messenger-web-relay-europe-west4.truecaller.com +otp-callback-eu.truecaller.com +partner-account-eu.truecaller.com +phone-gateway-eu.truecaller.com +premium-eu.truecaller.com +presence-grpc-eu.truecaller.com +push-callerid-eu.truecaller.com +request3-eu.truecaller.com +search-warnings-eu.truecaller.com +subscription-monitor-eu.truecaller.com +survey-eu.truecaller.com +truehelper-eu.truecaller.com +unlist5-eu.truecaller.com +unwanted-communication-extension-eu.truecaller.com +valid-names-eu.truecaller.com +verification-eu.truecaller.com +video-callerid-eu.truecaller.com +webdirectory-eu.truecaller.com +webonboarding-eu.truecaller.com diff --git a/src/truecaller_bbp/note.txt b/src/truecaller_bbp/note.txt new file mode 100644 index 0000000..9f61322 --- /dev/null +++ b/src/truecaller_bbp/note.txt @@ -0,0 +1 @@ +44135 https://hackerone.com/truecaller_bbp Truecaller BBP truecaller_bbp diff --git a/src/truist_financial/URL.txt b/src/truist_financial/URL.txt new file mode 100644 index 0000000..639ee34 --- /dev/null +++ b/src/truist_financial/URL.txt @@ -0,0 +1,15 @@ +https://www.mcgriff.com +https://www.gotapco.com +https://secure.gotapco.com +https://www.truist.com +https://developer.truist.com/ +https://dias.oneview.truist.com/ +https://dias.bank.truist.com/ +https://deposits.digitalcommerce.truist.com/ +https://creditcard.digitalcommerce.truist.com/ +https://businessdeposits.digitalcommerce.truist.com +https://lending.digitalcommerce.truist.com/ +https://trade.digitalcommerce.truist.com/ +https://teammate.digitalcommerce.truist.com/ +https://oneview.truist.com +investments.truist.com diff --git a/src/truist_financial/note.txt b/src/truist_financial/note.txt new file mode 100644 index 0000000..d42b6f6 --- /dev/null +++ b/src/truist_financial/note.txt @@ -0,0 +1 @@ +61909 https://hackerone.com/truist_financial Truist Financial truist_financial diff --git a/src/trustpilot/APPLE_STORE_APP_ID.txt b/src/trustpilot/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..c5444ec --- /dev/null +++ b/src/trustpilot/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +1608392803 diff --git a/src/trustpilot/URL.txt b/src/trustpilot/URL.txt new file mode 100644 index 0000000..baf2612 --- /dev/null +++ b/src/trustpilot/URL.txt @@ -0,0 +1,16 @@ +*api.trustpilot.com +*authenticate.trustpilot.com +*consumer-auth.trustpilot.com +*invitations-api.trustpilot.com +*b2b.trustpilot.com +*www.trustpilot.com +*locale.trustpilot.com +*widget.trustpilot.com +*jobs.trustpilot.com +*blog.trustpilot.com +*signup.business.trustpilot.com +*emailsignature.trustpilot.com +*share.trustpilot.com +*business.trustpilot.com +*legal.trustpilot.com +*ipo.trustpilot.com diff --git a/src/trustpilot/WILDCARD.txt b/src/trustpilot/WILDCARD.txt new file mode 100644 index 0000000..a805764 --- /dev/null +++ b/src/trustpilot/WILDCARD.txt @@ -0,0 +1,22 @@ +http://*api.trustpilot.com +http://*authenticate.trustpilot.com +http://*invitations-api.trustpilot.com +http://*b2b.trustpilot.com +http://*www.trustpilot.com +http://*widget.trustpilot.com +http://*signup.business.trustpilot.com +http://*emailsignature.trustpilot.com +http://*share.trustpilot.com +http://*business.trustpilot.com +http://*legal.trustpilot.com +*api.trustpilot.com +*authenticate.trustpilot.com +*invitations-api.trustpilot.com +*b2b.trustpilot.com +*www.trustpilot.com +*widget.trustpilot.com +*signup.business.trustpilot.com +*emailsignature.trustpilot.com +*share.trustpilot.com +*business.trustpilot.com +*legal.trustpilot.com diff --git a/src/trustpilot/note.txt b/src/trustpilot/note.txt new file mode 100644 index 0000000..f56ae08 --- /dev/null +++ b/src/trustpilot/note.txt @@ -0,0 +1 @@ +17716 https://hackerone.com/trustpilot Trustpilot trustpilot diff --git a/src/trycourier/URL.txt b/src/trycourier/URL.txt new file mode 100644 index 0000000..d99091a --- /dev/null +++ b/src/trycourier/URL.txt @@ -0,0 +1,5 @@ +www.trycourier.app +api.trycourier.app +*.ct0.app +api.courier.com +www.courier.com diff --git a/src/trycourier/WILDCARD.txt b/src/trycourier/WILDCARD.txt new file mode 100644 index 0000000..5ed002a --- /dev/null +++ b/src/trycourier/WILDCARD.txt @@ -0,0 +1,2 @@ +http://*.ct0.app +*.ct0.app diff --git a/src/trycourier/note.txt b/src/trycourier/note.txt new file mode 100644 index 0000000..f9e5508 --- /dev/null +++ b/src/trycourier/note.txt @@ -0,0 +1 @@ +47876 https://hackerone.com/trycourier Courier trycourier diff --git a/src/tts/SOURCE_CODE.txt b/src/tts/SOURCE_CODE.txt new file mode 100644 index 0000000..ac40358 --- /dev/null +++ b/src/tts/SOURCE_CODE.txt @@ -0,0 +1,8 @@ +https://github.com/18F/federalist-proxy +https://github.com/18F/federalist +https://github.com/18F/federalist-builder +https://github.com/18F/docker-ruby-ubuntu +https://github.com/18F/federalist-docker-build + https://github.com/18F/identity-idp +https://github.com/18F/identity-saml-sinatra +https://github.com/18F/identity-saml-rails diff --git a/src/tts/URL.txt b/src/tts/URL.txt new file mode 100644 index 0000000..e4b0e12 --- /dev/null +++ b/src/tts/URL.txt @@ -0,0 +1,72 @@ +https://federalist-proxy.app.cloud.gov +https://account.fr.cloud.gov +https://ci.fr.cloud.gov +https://dashboard.fr.cloud.gov +https://login.fr.cloud.gov/ +https://logs.fr.cloud.gov +https://www.data.gov +https://federation.data.gov +https://sdg.data.gov +https://labs.data.gov +https://catalog.data.gov +https://inventory.data.gov +https://admin-catalog-bsp.data.gov +https://github.com/GSA/datagov-deploy +https://github.com/GSA/data.gov +https://idp.fr.cloud.gov +https://admin.fr.cloud.gov +https://alertmanager.fr.cloud.gov +https://diagrams.fr.cloud.gov +https://grafana.fr.cloud.gov +https://logs-platform.fr.cloud.gov +https://nessus.fr.cloud.gov +https://opslogin.fr.cloud.gov +https://prometheus.fr.cloud.gov +ssh.fr.cloud.gov +api.fr.cloud.gov +api.data.gov +*.login.gov +dashboard-beta.fr.cloud.gov +tock.18f.gov +*.code.gov +www.fedramp.gov +marketplace.fedramp.gov +*.search.gov +https://dashboard-beta.fr.cloud.gov/ +www.usa.gov +https://federalist.18f.gov +https://cloud.gov +https://federalist-docs.18f.gov +https://manage.data.gov +https://vote.gov +https://18f.gsa.gov +federalist-proxy.app.cloud.gov +account.fr.cloud.gov +ci.fr.cloud.gov +dashboard.fr.cloud.gov +login.fr.cloud.gov +logs.fr.cloud.gov +www.data.gov +federation.data.gov +sdg.data.gov +labs.data.gov +catalog.data.gov +inventory.data.gov +admin-catalog-bsp.data.gov +https://github.com/gsa/datagov-deploy +https://github.com/gsa/data.gov +idp.fr.cloud.gov +admin.fr.cloud.gov +alertmanager.fr.cloud.gov +diagrams.fr.cloud.gov +grafana.fr.cloud.gov +logs-platform.fr.cloud.gov +nessus.fr.cloud.gov +opslogin.fr.cloud.gov +prometheus.fr.cloud.gov +federalist.18f.gov +cloud.gov +federalist-docs.18f.gov +manage.data.gov +vote.gov +18f.gsa.gov diff --git a/src/tts/WILDCARD.txt b/src/tts/WILDCARD.txt new file mode 100644 index 0000000..ea6af32 --- /dev/null +++ b/src/tts/WILDCARD.txt @@ -0,0 +1,6 @@ +http://*.login.gov +http://*.code.gov +http://*.search.gov +*.login.gov +*.code.gov +*.search.gov diff --git a/src/tts/note.txt b/src/tts/note.txt new file mode 100644 index 0000000..58d3226 --- /dev/null +++ b/src/tts/note.txt @@ -0,0 +1 @@ +21499 https://hackerone.com/tts TTS Bug Bounty tts diff --git a/src/tube8/URL.txt b/src/tube8/URL.txt new file mode 100644 index 0000000..237b426 --- /dev/null +++ b/src/tube8/URL.txt @@ -0,0 +1 @@ +*.tube8.com diff --git a/src/tube8/note.txt b/src/tube8/note.txt new file mode 100644 index 0000000..167753f --- /dev/null +++ b/src/tube8/note.txt @@ -0,0 +1 @@ +24231 https://hackerone.com/tube8 Tube8 tube8 diff --git a/src/tumblr/APPLE_STORE_APP_ID.txt b/src/tumblr/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..23d4a72 --- /dev/null +++ b/src/tumblr/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +com.tumblr.tumblr diff --git a/src/tumblr/GOOGLE_PLAY_APP_ID.txt b/src/tumblr/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..c0aa355 --- /dev/null +++ b/src/tumblr/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.tumblr diff --git a/src/tumblr/URL.txt b/src/tumblr/URL.txt new file mode 100644 index 0000000..ca795b3 --- /dev/null +++ b/src/tumblr/URL.txt @@ -0,0 +1,10 @@ +api.tumblr.com +safe.tumblr.com +secure.tumblr.com +assets.tumblr.com +embed.tumblr.com +*.tumblr.com +www.tumblr.com +t.umblr.com +*.srvcs.tumblr.com +*.txmblr.com diff --git a/src/tumblr/WILDCARD.txt b/src/tumblr/WILDCARD.txt new file mode 100644 index 0000000..00d0aff --- /dev/null +++ b/src/tumblr/WILDCARD.txt @@ -0,0 +1,6 @@ +http://*.tumblr.com +http://*.srvcs.tumblr.com +http://*.txmblr.com +*.tumblr.com +*.srvcs.tumblr.com +*.txmblr.com diff --git a/src/tumblr/note.txt b/src/tumblr/note.txt new file mode 100644 index 0000000..7efaa97 --- /dev/null +++ b/src/tumblr/note.txt @@ -0,0 +1 @@ +26806 https://hackerone.com/tumblr Tumblr tumblr diff --git a/src/twitter-algorithmic-bias/note.txt b/src/twitter-algorithmic-bias/note.txt new file mode 100644 index 0000000..f7fe8ce --- /dev/null +++ b/src/twitter-algorithmic-bias/note.txt @@ -0,0 +1 @@ +53813 https://hackerone.com/twitter-algorithmic-bias Twitter Algorithmic Bias twitter-algorithmic-bias diff --git a/src/twitter/APPLE_STORE_APP_ID.txt b/src/twitter/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..1a4e825 --- /dev/null +++ b/src/twitter/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +com.atebits.Tweetie2 diff --git a/src/twitter/GOOGLE_PLAY_APP_ID.txt b/src/twitter/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..a802fc0 --- /dev/null +++ b/src/twitter/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.twitter.android diff --git a/src/twitter/URL.txt b/src/twitter/URL.txt new file mode 100644 index 0000000..e591bcb --- /dev/null +++ b/src/twitter/URL.txt @@ -0,0 +1,11 @@ +*.twitter.com +*.vine.co +*.periscope.tv +*.pscp.tv +*.twimg.com +gnip.com +niche.co +snappytv.com +twitterflightschool.com +t.co +x.com diff --git a/src/twitter/WILDCARD.txt b/src/twitter/WILDCARD.txt new file mode 100644 index 0000000..946d37d --- /dev/null +++ b/src/twitter/WILDCARD.txt @@ -0,0 +1,6 @@ +http://*.twitter.com +http://*.vine.co +http://*.twimg.com +*.twitter.com +*.vine.co +*.twimg.com diff --git a/src/twitter/note.txt b/src/twitter/note.txt new file mode 100644 index 0000000..e52a590 --- /dev/null +++ b/src/twitter/note.txt @@ -0,0 +1,2 @@ +61 https://hackerone.com/twitter Twitter twitter +61 https://hackerone.com/twitter X (Formerly Twitter) twitter diff --git a/src/uber/OTHER.txt b/src/uber/OTHER.txt new file mode 100644 index 0000000..ef80a10 --- /dev/null +++ b/src/uber/OTHER.txt @@ -0,0 +1,5 @@ +Uber Assets +Recon Data +uber.com +*.uberinternal.com +*ubereats.com diff --git a/src/uber/note.txt b/src/uber/note.txt new file mode 100644 index 0000000..c6fc29e --- /dev/null +++ b/src/uber/note.txt @@ -0,0 +1 @@ +314 https://hackerone.com/uber Uber uber diff --git a/src/udemy/URL.txt b/src/udemy/URL.txt new file mode 100644 index 0000000..7c20cae --- /dev/null +++ b/src/udemy/URL.txt @@ -0,0 +1,2 @@ +www.udemy.com +yourcompany.udemy.com diff --git a/src/udemy/note.txt b/src/udemy/note.txt new file mode 100644 index 0000000..539a9d2 --- /dev/null +++ b/src/udemy/note.txt @@ -0,0 +1 @@ +1566 https://hackerone.com/udemy Udemy udemy diff --git a/src/ui/DOWNLOADABLE_EXECUTABLES.txt b/src/ui/DOWNLOADABLE_EXECUTABLES.txt new file mode 100644 index 0000000..0802dd4 --- /dev/null +++ b/src/ui/DOWNLOADABLE_EXECUTABLES.txt @@ -0,0 +1,3 @@ +UniFi Network Application +UCRM +UNMS diff --git a/src/ui/GOOGLE_PLAY_APP_ID.txt b/src/ui/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..6981600 --- /dev/null +++ b/src/ui/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1,4 @@ +com.ubnt.easyunifi +com.ubnt.umobile +com.ubnt.discovery.app +com.ubnt.ucrm diff --git a/src/ui/HARDWARE.txt b/src/ui/HARDWARE.txt new file mode 100644 index 0000000..1ba0537 --- /dev/null +++ b/src/ui/HARDWARE.txt @@ -0,0 +1,14 @@ +airMAX +UniFi +EdgeMAX +airFiber +UFiber +AmpliFi +UniFi Talk +UniFi Protect +UniFi Switches +UniFi Wireless Access Points +UniFi Gateways (UDM, UXG, USG) +Cloudkey +UniFi LED +UniFi Access diff --git a/src/ui/OTHER.txt b/src/ui/OTHER.txt new file mode 100644 index 0000000..1a1ab3f --- /dev/null +++ b/src/ui/OTHER.txt @@ -0,0 +1,2 @@ +UniFi Cloud +UID diff --git a/src/ui/URL.txt b/src/ui/URL.txt new file mode 100644 index 0000000..ed1012b --- /dev/null +++ b/src/ui/URL.txt @@ -0,0 +1,22 @@ +*.ubnt.com +community.ui.com +*.ui.com +account.ui.com +fw-update.ubnt.com +rma.ui.com +design.ui.com +uisp.com +unifi.ui.com +careers.ui.com +ispdesign.ui.com +store.ui.com +ir.ui.com +help.ui.com +blog.ui.com +training.ui.com +dev-training.ui.com +ca.store.ui.com +me.store.ui.com +wiki.ui.com +https://ui.com/distributors/ +https://ui.com/training/partners/ diff --git a/src/ui/WILDCARD.txt b/src/ui/WILDCARD.txt new file mode 100644 index 0000000..c19f14d --- /dev/null +++ b/src/ui/WILDCARD.txt @@ -0,0 +1,6 @@ +http://*.ubnt.com +http://*.ui.com +*.ubnt.com +*.ui.com +https://*.ui.com/distributors/ +https://*.ui.com/training/partners/ diff --git a/src/ui/note.txt b/src/ui/note.txt new file mode 100644 index 0000000..e9bd439 --- /dev/null +++ b/src/ui/note.txt @@ -0,0 +1 @@ +800 https://hackerone.com/ui Ubiquiti Inc. ui diff --git a/src/unikrn/URL.txt b/src/unikrn/URL.txt new file mode 100644 index 0000000..12bbdbf --- /dev/null +++ b/src/unikrn/URL.txt @@ -0,0 +1,34 @@ +unikrn.com +auctionbot.unikrn.com +news.unikrn.com +crm.unikrn.com +jet-api.unikrn.com +connekt-api.unikrn.com +auth.unikrn.com +api-w.unikrnb2b.com +api.unikrn.com +affiliates.unikrn.com +api.ukrn.io +auth-adm.ukrn.io +auth.ukrn.io +c.ukrn.io +casino.ukrn.io +crm.ukrn.io +feed.ukrn.io +m.ukrn.io +noti.ukrn.io +quest.ukrn.io +socket.ukrn.io +sysops.ukrn.io +trader.ukrn.io +trans.ukrn.io +u.ukrn.io +utils.ukrn.io +virtual.ukrn.io +cashier-r.unikrn.com +cashier-w.unikrn.com +cashier.unikrn.com +help.unikrn.com +promotions.unikrn.com +unikrn.ly +static.unkrn.com diff --git a/src/unikrn/note.txt b/src/unikrn/note.txt new file mode 100644 index 0000000..f9b8b35 --- /dev/null +++ b/src/unikrn/note.txt @@ -0,0 +1 @@ +2672 https://hackerone.com/unikrn Unikrn unikrn diff --git a/src/upchieve/APPLE_STORE_APP_ID.txt b/src/upchieve/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..f094e1e --- /dev/null +++ b/src/upchieve/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +1506076042 diff --git a/src/upchieve/OTHER.txt b/src/upchieve/OTHER.txt new file mode 100644 index 0000000..1271248 --- /dev/null +++ b/src/upchieve/OTHER.txt @@ -0,0 +1 @@ +Our infrastructure hosted in Azure Cloud diff --git a/src/upchieve/SOURCE_CODE.txt b/src/upchieve/SOURCE_CODE.txt new file mode 100644 index 0000000..0dc7467 --- /dev/null +++ b/src/upchieve/SOURCE_CODE.txt @@ -0,0 +1 @@ +https://gitlab.com/upchieve/subway diff --git a/src/upchieve/URL.txt b/src/upchieve/URL.txt new file mode 100644 index 0000000..6e6e345 --- /dev/null +++ b/src/upchieve/URL.txt @@ -0,0 +1,2 @@ +argocd.upchieve.org +hackers.upchieve.org diff --git a/src/upchieve/note.txt b/src/upchieve/note.txt new file mode 100644 index 0000000..0011c54 --- /dev/null +++ b/src/upchieve/note.txt @@ -0,0 +1 @@ +52589 https://hackerone.com/upchieve UPchieve upchieve diff --git a/src/uphabit/APPLE_STORE_APP_ID.txt b/src/uphabit/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..102552c --- /dev/null +++ b/src/uphabit/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +1335632832 diff --git a/src/uphabit/GOOGLE_PLAY_APP_ID.txt b/src/uphabit/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..9e31dc0 --- /dev/null +++ b/src/uphabit/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.uphabit.android diff --git a/src/uphabit/URL.txt b/src/uphabit/URL.txt new file mode 100644 index 0000000..e94bff2 --- /dev/null +++ b/src/uphabit/URL.txt @@ -0,0 +1,2 @@ +api.uphabit.com +web.uphabit.com diff --git a/src/uphabit/note.txt b/src/uphabit/note.txt new file mode 100644 index 0000000..58b21d0 --- /dev/null +++ b/src/uphabit/note.txt @@ -0,0 +1 @@ +42023 https://hackerone.com/uphabit UpHabit uphabit diff --git a/src/ups/URL.txt b/src/ups/URL.txt new file mode 100644 index 0000000..7cf1d09 --- /dev/null +++ b/src/ups/URL.txt @@ -0,0 +1 @@ +*.ups.com diff --git a/src/ups/WILDCARD.txt b/src/ups/WILDCARD.txt new file mode 100644 index 0000000..62c4860 --- /dev/null +++ b/src/ups/WILDCARD.txt @@ -0,0 +1,2 @@ +http://*.ups.com +*.ups.com diff --git a/src/ups/note.txt b/src/ups/note.txt new file mode 100644 index 0000000..ac98656 --- /dev/null +++ b/src/ups/note.txt @@ -0,0 +1 @@ +46613 https://hackerone.com/ups UPS VDP ups diff --git a/src/upserve/URL.txt b/src/upserve/URL.txt new file mode 100644 index 0000000..6932498 --- /dev/null +++ b/src/upserve/URL.txt @@ -0,0 +1,19 @@ +app.upserve.com +hq.breadcrumb.com +cards.swipely.com +api.breadcrumb.com +mossy.breadcrumb.com +payments.breadcrumb.com +reports.breadcrumb.com +pos.swipely.com +payments.upserve.com +orders.upserve.com +d2evh2mef3r450.cloudfront.net +swipely-merchant-assets.s3.amazonaws.com +inventory.upserve.com +hq-api.upserve.com +hq.upserve.com +https://645892349820.vulnerbug.com +teamhelp.upserve.com +*.upserve.com +https://hq.upserve.com diff --git a/src/upserve/WILDCARD.txt b/src/upserve/WILDCARD.txt new file mode 100644 index 0000000..54ccc15 --- /dev/null +++ b/src/upserve/WILDCARD.txt @@ -0,0 +1,2 @@ +http://*.upserve.com +*.upserve.com diff --git a/src/upserve/note.txt b/src/upserve/note.txt new file mode 100644 index 0000000..c11b987 --- /dev/null +++ b/src/upserve/note.txt @@ -0,0 +1 @@ +21981 https://hackerone.com/upserve Upserve upserve diff --git a/src/urbancompany/APPLE_STORE_APP_ID.txt b/src/urbancompany/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..bb3d91f --- /dev/null +++ b/src/urbancompany/APPLE_STORE_APP_ID.txt @@ -0,0 +1,2 @@ +1032480595 +982922982 diff --git a/src/urbancompany/GOOGLE_PLAY_APP_ID.txt b/src/urbancompany/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..5b7f27e --- /dev/null +++ b/src/urbancompany/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1,2 @@ +com.urbanclap.provider +com.urbanclap.urbanclap diff --git a/src/urbancompany/URL.txt b/src/urbancompany/URL.txt new file mode 100644 index 0000000..795444c --- /dev/null +++ b/src/urbancompany/URL.txt @@ -0,0 +1,2 @@ +www.urbancompany.com +www.urbanclap.com diff --git a/src/urbancompany/note.txt b/src/urbancompany/note.txt new file mode 100644 index 0000000..f34fb23 --- /dev/null +++ b/src/urbancompany/note.txt @@ -0,0 +1 @@ +33640 https://hackerone.com/urbancompany Urban Company urbancompany diff --git a/src/urbandictionary/APPLE_STORE_APP_ID.txt b/src/urbandictionary/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..bcd91af --- /dev/null +++ b/src/urbandictionary/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +com.urbandictionary.iphone diff --git a/src/urbandictionary/GOOGLE_PLAY_APP_ID.txt b/src/urbandictionary/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..57f3e6c --- /dev/null +++ b/src/urbandictionary/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.urbandictionary.android diff --git a/src/urbandictionary/OTHER.txt b/src/urbandictionary/OTHER.txt new file mode 100644 index 0000000..a592443 --- /dev/null +++ b/src/urbandictionary/OTHER.txt @@ -0,0 +1 @@ +twitter.com/urbandictionary diff --git a/src/urbandictionary/SOURCE_CODE.txt b/src/urbandictionary/SOURCE_CODE.txt new file mode 100644 index 0000000..07503aa --- /dev/null +++ b/src/urbandictionary/SOURCE_CODE.txt @@ -0,0 +1 @@ +github.com/urbandictionary diff --git a/src/urbandictionary/URL.txt b/src/urbandictionary/URL.txt new file mode 100644 index 0000000..2ba64ba --- /dev/null +++ b/src/urbandictionary/URL.txt @@ -0,0 +1,12 @@ +*.urbandictionary.com +*.urbandictionary.net +*.urbandictionary.biz +urbandictionary.github.io +av.urbandictionary.biz +*.urbandictionary.org +*.ud.wtf +*.udimg.com +*.urbandictionary.blog +*.urbanup.com +help.urbandictionary.com +*.urbandictionary.store diff --git a/src/urbandictionary/WILDCARD.txt b/src/urbandictionary/WILDCARD.txt new file mode 100644 index 0000000..18c6111 --- /dev/null +++ b/src/urbandictionary/WILDCARD.txt @@ -0,0 +1,18 @@ +http://*.urbandictionary.com +http://*.urbandictionary.net +http://*.urbandictionary.biz +http://*.urbandictionary.org +http://*.ud.wtf +http://*.udimg.com +http://*.urbandictionary.blog +http://*.urbanup.com +http://*.urbandictionary.store +*.urbandictionary.com +*.urbandictionary.net +*.urbandictionary.biz +*.urbandictionary.org +*.ud.wtf +*.udimg.com +*.urbandictionary.blog +*.urbanup.com +*.urbandictionary.store diff --git a/src/urbandictionary/note.txt b/src/urbandictionary/note.txt new file mode 100644 index 0000000..b7d1a8c --- /dev/null +++ b/src/urbandictionary/note.txt @@ -0,0 +1 @@ +207 https://hackerone.com/urbandictionary Urban Dictionary urbandictionary diff --git a/src/us-department-of-state/SOURCE_CODE.txt b/src/us-department-of-state/SOURCE_CODE.txt new file mode 100644 index 0000000..a89f32a --- /dev/null +++ b/src/us-department-of-state/SOURCE_CODE.txt @@ -0,0 +1 @@ +https://github.com/USStateDept diff --git a/src/us-department-of-state/URL.txt b/src/us-department-of-state/URL.txt new file mode 100644 index 0000000..f459f9f --- /dev/null +++ b/src/us-department-of-state/URL.txt @@ -0,0 +1,18 @@ +*.AMERICA.GOV +*.DEVTESTFAN1.GOV +*.FAN.GOV +*.FSGB.GOV +*.IAWG.GOV +*.IBWC.GOV +*.OSAC.GOV +*.PEPFAR.GOV +*.PREPRODFAN.GOV +*.SECURITYTESTFAN.GOV +*.STATE.GOV +*.SUPPORTFAN.GOV +*.USCONSULATE.GOV +*.USDOSCLOUD.GOV +*.USEMBASSY.GOV +*.USMISSION.GOV +*.ELGUARDIA.NET +*.REWARDSFORJUSTICE.NET diff --git a/src/us-department-of-state/WILDCARD.txt b/src/us-department-of-state/WILDCARD.txt new file mode 100644 index 0000000..7e26dbc --- /dev/null +++ b/src/us-department-of-state/WILDCARD.txt @@ -0,0 +1,36 @@ +http://*.america.gov +http://*.devtestfan1.gov +http://*.fan.gov +http://*.fsgb.gov +http://*.iawg.gov +http://*.ibwc.gov +http://*.osac.gov +http://*.pepfar.gov +http://*.preprodfan.gov +http://*.securitytestfan.gov +http://*.state.gov +http://*.supportfan.gov +http://*.usconsulate.gov +http://*.usdoscloud.gov +http://*.usembassy.gov +http://*.usmission.gov +http://*.elguardia.net +http://*.rewardsforjustice.net +*.AMERICA.GOV +*.DEVTESTFAN1.GOV +*.FAN.GOV +*.FSGB.GOV +*.IAWG.GOV +*.IBWC.GOV +*.OSAC.GOV +*.PEPFAR.GOV +*.PREPRODFAN.GOV +*.SECURITYTESTFAN.GOV +*.STATE.GOV +*.SUPPORTFAN.GOV +*.USCONSULATE.GOV +*.USDOSCLOUD.GOV +*.USEMBASSY.GOV +*.USMISSION.GOV +*.ELGUARDIA.NET +*.REWARDSFORJUSTICE.NET diff --git a/src/us-department-of-state/note.txt b/src/us-department-of-state/note.txt new file mode 100644 index 0000000..98abf9f --- /dev/null +++ b/src/us-department-of-state/note.txt @@ -0,0 +1 @@ +52881 https://hackerone.com/us-department-of-state U.S. Department of State us-department-of-state diff --git a/src/usertesting/URL.txt b/src/usertesting/URL.txt new file mode 100644 index 0000000..ebd5989 --- /dev/null +++ b/src/usertesting/URL.txt @@ -0,0 +1 @@ +www.usertesting.com/* diff --git a/src/usertesting/WILDCARD.txt b/src/usertesting/WILDCARD.txt new file mode 100644 index 0000000..c86ef11 --- /dev/null +++ b/src/usertesting/WILDCARD.txt @@ -0,0 +1,2 @@ +http://www.usertesting.com/* +www.usertesting.com/* diff --git a/src/usertesting/note.txt b/src/usertesting/note.txt new file mode 100644 index 0000000..ab3008d --- /dev/null +++ b/src/usertesting/note.txt @@ -0,0 +1 @@ +22762 https://hackerone.com/usertesting UserTesting usertesting diff --git a/src/usps/URL.txt b/src/usps/URL.txt new file mode 100644 index 0000000..5595457 --- /dev/null +++ b/src/usps/URL.txt @@ -0,0 +1,30 @@ +https://iv.usps.com +https://id.usps.com +https://gateway.usps.com +https://reg.usps.com +https://pi.usps.com +https://retail-pi.usps.com +https://store.usps.com +https://internationalclaims.usps.com +https://www.usps.com/postalone/ +https://ncoa.usps.gov +https://moversguide.usps.com +https://holdmail.usps.com/holdmail/ +https://redelivery.usps.com/redelivery/ +https://about.usps.com/what/government-services/election-mail/ +www.usps.com +special.usps.com/testkits +https://www.liteblue.usps.gov +iv.usps.com +id.usps.com +gateway.usps.com +reg.usps.com +pi.usps.com +retail-pi.usps.com +store.usps.com +internationalclaims.usps.com +ncoa.usps.gov +moversguide.usps.com +http://special.usps.com/testkits +www.liteblue.usps.gov +www.usps.gov diff --git a/src/usps/note.txt b/src/usps/note.txt new file mode 100644 index 0000000..e4626ca --- /dev/null +++ b/src/usps/note.txt @@ -0,0 +1 @@ +44150 https://hackerone.com/usps USPS - United States Postal Service usps diff --git a/src/valve/APPLE_STORE_APP_ID.txt b/src/valve/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..9a5b838 --- /dev/null +++ b/src/valve/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +com.valvesoftware.Steam diff --git a/src/valve/DOWNLOADABLE_EXECUTABLES.txt b/src/valve/DOWNLOADABLE_EXECUTABLES.txt new file mode 100644 index 0000000..e418ff5 --- /dev/null +++ b/src/valve/DOWNLOADABLE_EXECUTABLES.txt @@ -0,0 +1,5 @@ +steam.exe +csgo.exe +dota2.exe +tf2.exe +hl.exe diff --git a/src/valve/GOOGLE_PLAY_APP_ID.txt b/src/valve/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..9a5b838 --- /dev/null +++ b/src/valve/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.valvesoftware.Steam diff --git a/src/valve/OTHER.txt b/src/valve/OTHER.txt new file mode 100644 index 0000000..837a6f7 --- /dev/null +++ b/src/valve/OTHER.txt @@ -0,0 +1,2 @@ +Steam Servers +Steam Client diff --git a/src/valve/SOURCE_CODE.txt b/src/valve/SOURCE_CODE.txt new file mode 100644 index 0000000..9357f60 --- /dev/null +++ b/src/valve/SOURCE_CODE.txt @@ -0,0 +1 @@ +https://github.com/valvesoftware diff --git a/src/valve/URL.txt b/src/valve/URL.txt new file mode 100644 index 0000000..0252f96 --- /dev/null +++ b/src/valve/URL.txt @@ -0,0 +1,15 @@ +www.dota2.com +support.steampowered.com +partner.steampowered.com +store.steampowered.com +www.valvesoftware.com +api.steampowered.com +partner.steamgames.com +steamcommunity.com +www.teamfortress.com +www.counter-strike.net +playartifact.com +help.steampowered.com +developer.valvesoftware.com +storefront.steampowered.com +wiki.teamfortress.com diff --git a/src/valve/note.txt b/src/valve/note.txt new file mode 100644 index 0000000..eec6b7e --- /dev/null +++ b/src/valve/note.txt @@ -0,0 +1 @@ +23363 https://hackerone.com/valve Valve valve diff --git a/src/vanilla/SOURCE_CODE.txt b/src/vanilla/SOURCE_CODE.txt new file mode 100644 index 0000000..34a7312 --- /dev/null +++ b/src/vanilla/SOURCE_CODE.txt @@ -0,0 +1,3 @@ +https://github.com/vanilla/vanilla/ +https://github.com/vanilla/addons +https://github.com/vanilla/community diff --git a/src/vanilla/URL.txt b/src/vanilla/URL.txt new file mode 100644 index 0000000..550b3ab --- /dev/null +++ b/src/vanilla/URL.txt @@ -0,0 +1,5 @@ +*.vanillaforums.com +*.vanillacommunities.com +*.vanillastaging.com +*.vanilladevelopment.com +*.vanillacommunity.com diff --git a/src/vanilla/WILDCARD.txt b/src/vanilla/WILDCARD.txt new file mode 100644 index 0000000..be4107d --- /dev/null +++ b/src/vanilla/WILDCARD.txt @@ -0,0 +1,10 @@ +http://*.vanillaforums.com +http://*.vanillacommunities.com +http://*.vanillastaging.com +http://*.vanilladevelopment.com +http://*.vanillacommunity.com +*.vanillaforums.com +*.vanillacommunities.com +*.vanillastaging.com +*.vanilladevelopment.com +*.vanillacommunity.com diff --git a/src/vanilla/note.txt b/src/vanilla/note.txt new file mode 100644 index 0000000..bd9a4c9 --- /dev/null +++ b/src/vanilla/note.txt @@ -0,0 +1 @@ +17443 https://hackerone.com/vanilla Vanilla vanilla diff --git a/src/vanmoof/APPLE_STORE_APP_ID.txt b/src/vanmoof/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..480d8b3 --- /dev/null +++ b/src/vanmoof/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +1119135275 diff --git a/src/vanmoof/GOOGLE_PLAY_APP_ID.txt b/src/vanmoof/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..c708bf5 --- /dev/null +++ b/src/vanmoof/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +nl.samsonit.vanmoofapp diff --git a/src/vanmoof/URL.txt b/src/vanmoof/URL.txt new file mode 100644 index 0000000..e8a772d --- /dev/null +++ b/src/vanmoof/URL.txt @@ -0,0 +1,7 @@ +www.vanmoof.com +backoffice.vanmoof.com +vanmoof.com/my-vanmoof +vanmoof.com/shop +tenjin.vanmoof.com +careers.vanmoof.com +fixer.vanmoof.com diff --git a/src/vanmoof/note.txt b/src/vanmoof/note.txt new file mode 100644 index 0000000..d559b73 --- /dev/null +++ b/src/vanmoof/note.txt @@ -0,0 +1 @@ +53126 https://hackerone.com/vanmoof VanMoof vanmoof diff --git a/src/varonis/URL.txt b/src/varonis/URL.txt new file mode 100644 index 0000000..18e11cb --- /dev/null +++ b/src/varonis/URL.txt @@ -0,0 +1,10 @@ +*.varonis.com +blog.varonis.fr +blog.varonis.de +blog.varonis.br +blog.varonis.ru +blog.varonis.es +app.varonis.io/login +*.varonis.io +http://app.varonis.io/login +varonis.net diff --git a/src/varonis/WILDCARD.txt b/src/varonis/WILDCARD.txt new file mode 100644 index 0000000..08ced19 --- /dev/null +++ b/src/varonis/WILDCARD.txt @@ -0,0 +1,5 @@ +http://*.varonis.com +http://*.varonis.io +*.varonis.com +*.varonis.io +*.varonis.net diff --git a/src/varonis/note.txt b/src/varonis/note.txt new file mode 100644 index 0000000..a5a37c7 --- /dev/null +++ b/src/varonis/note.txt @@ -0,0 +1,2 @@ +52554 https://hackerone.com/varonis Varonis varonis +83935 https://hackerone.com/varonis Varonis varonis diff --git a/src/veeam/OTHER.txt b/src/veeam/OTHER.txt new file mode 100644 index 0000000..a12b9ca --- /dev/null +++ b/src/veeam/OTHER.txt @@ -0,0 +1,2 @@ +Product Vulnerabilities +Corporate Infrastructure diff --git a/src/veeam/URL.txt b/src/veeam/URL.txt new file mode 100644 index 0000000..86aab44 --- /dev/null +++ b/src/veeam/URL.txt @@ -0,0 +1,3 @@ +*.veeam.com +*.kasten.io +*.veeamgov.com diff --git a/src/veeam/note.txt b/src/veeam/note.txt new file mode 100644 index 0000000..902dfe1 --- /dev/null +++ b/src/veeam/note.txt @@ -0,0 +1 @@ +54803 https://hackerone.com/veeam Veeam veeam diff --git a/src/vend/APPLE_STORE_APP_ID.txt b/src/vend/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..3a339c0 --- /dev/null +++ b/src/vend/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +920603929 diff --git a/src/vend/URL.txt b/src/vend/URL.txt new file mode 100644 index 0000000..dcc76ad --- /dev/null +++ b/src/vend/URL.txt @@ -0,0 +1,5 @@ +your-store.vendhq.com +secure.vendhq.com +developers.vendhq.com +www.vendhq.com +payment-connectors.vendhq.com diff --git a/src/vend/note.txt b/src/vend/note.txt new file mode 100644 index 0000000..1e1726f --- /dev/null +++ b/src/vend/note.txt @@ -0,0 +1 @@ +46119 https://hackerone.com/vend Vend by Lightspeed vend diff --git a/src/vendasta/URL.txt b/src/vendasta/URL.txt new file mode 100644 index 0000000..9aea0bd --- /dev/null +++ b/src/vendasta/URL.txt @@ -0,0 +1,8 @@ +customervoice.biz +your-domain.socialsmbs.com +your-domain.steprep.com +your-domain.smblogin.com +your-domain.pdqs.mobi +your-domain.snapshotreport.biz +task-manager.biz +partners.vendasta.com diff --git a/src/vendasta/WILDCARD.txt b/src/vendasta/WILDCARD.txt new file mode 100644 index 0000000..d216a19 --- /dev/null +++ b/src/vendasta/WILDCARD.txt @@ -0,0 +1,4 @@ +*.vendasta.com +*.apigateway.co +*.vendasta-internal.com +*.yesware.com diff --git a/src/vendasta/note.txt b/src/vendasta/note.txt new file mode 100644 index 0000000..6cd0433 --- /dev/null +++ b/src/vendasta/note.txt @@ -0,0 +1 @@ +48435 https://hackerone.com/vendasta Vendasta vendasta diff --git a/src/veris/note.txt b/src/veris/note.txt new file mode 100644 index 0000000..98c4905 --- /dev/null +++ b/src/veris/note.txt @@ -0,0 +1 @@ +9409 https://hackerone.com/veris Veris veris diff --git a/src/versioncake/SOURCE_CODE.txt b/src/versioncake/SOURCE_CODE.txt new file mode 100644 index 0000000..649186f --- /dev/null +++ b/src/versioncake/SOURCE_CODE.txt @@ -0,0 +1 @@ +https://github.com/bwillis/versioncake diff --git a/src/versioncake/note.txt b/src/versioncake/note.txt new file mode 100644 index 0000000..7a28ce8 --- /dev/null +++ b/src/versioncake/note.txt @@ -0,0 +1 @@ +3067 https://hackerone.com/versioncake Version Cake versioncake diff --git a/src/vhx/OTHER.txt b/src/vhx/OTHER.txt new file mode 100644 index 0000000..cb4f507 --- /dev/null +++ b/src/vhx/OTHER.txt @@ -0,0 +1,4 @@ +channelstore.roku.com/details/48061/vhx +Branded Customer iOS Apps +Branded Customer Android Apps +Branded Customer Roku Apps diff --git a/src/vhx/URL.txt b/src/vhx/URL.txt new file mode 100644 index 0000000..64b4f53 --- /dev/null +++ b/src/vhx/URL.txt @@ -0,0 +1,4 @@ +vhx.tv +embed.vhx.tv +api.vhx.tv +*.vhx.tv diff --git a/src/vhx/note.txt b/src/vhx/note.txt new file mode 100644 index 0000000..eccb022 --- /dev/null +++ b/src/vhx/note.txt @@ -0,0 +1 @@ +1105 https://hackerone.com/vhx VHX vhx diff --git a/src/vimeo/APPLE_STORE_APP_ID.txt b/src/vimeo/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..e13412d --- /dev/null +++ b/src/vimeo/APPLE_STORE_APP_ID.txt @@ -0,0 +1,4 @@ +425194759 +1491791513 +486781045 +493086499 diff --git a/src/vimeo/GOOGLE_PLAY_APP_ID.txt b/src/vimeo/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..5c3fb83 --- /dev/null +++ b/src/vimeo/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1,4 @@ +com.vimeo.android.videoapp +com.vimeocreate.videoeditor.moviemaker +com.magisto +com.livestream.livestream diff --git a/src/vimeo/OTHER.txt b/src/vimeo/OTHER.txt new file mode 100644 index 0000000..31f52c1 --- /dev/null +++ b/src/vimeo/OTHER.txt @@ -0,0 +1,5 @@ +channelstore.roku.com/details/48061/vhx +VHX Branded Customer iOS Apps +VHX Branded Customer Android Apps +VHX Branded Customer Roku Apps +Livestream software (Producer, Studio) diff --git a/src/vimeo/URL.txt b/src/vimeo/URL.txt new file mode 100644 index 0000000..35cf654 --- /dev/null +++ b/src/vimeo/URL.txt @@ -0,0 +1,26 @@ +www.vimeo.com +player.vimeo.com +api.vimeo.com +*.cloud.vimeo.com +vimeopro.com +vimeo.com/ondemand +vimeo.com/api +*.vimeo.com +checkout.vimeo.com +vimeo.com/create +vimeo.magisto.com +vhx.tv +embed.vhx.tv +api.vhx.tv +*.vhx.tv +magisto.com,www.magisto.com +*.magisto.com +staging.magisto.com +applause1.magisto.com +*.livestream.com +www.livestream.com +*.new.livestream.com +donations.livestream.com +http://vimeo.com/ondemand +http://vimeo.com/api +http://vimeo.com/create diff --git a/src/vimeo/WILDCARD.txt b/src/vimeo/WILDCARD.txt new file mode 100644 index 0000000..b2cd674 --- /dev/null +++ b/src/vimeo/WILDCARD.txt @@ -0,0 +1,12 @@ +http://*.cloud.vimeo.com +http://*.vimeo.com +http://*.vhx.tv +http://*.magisto.com +http://*.livestream.com +http://*.new.livestream.com +*.cloud.vimeo.com +*.vimeo.com +*.vhx.tv +*.magisto.com +*.livestream.com +*.new.livestream.com diff --git a/src/vimeo/note.txt b/src/vimeo/note.txt new file mode 100644 index 0000000..fb1bade --- /dev/null +++ b/src/vimeo/note.txt @@ -0,0 +1 @@ +56 https://hackerone.com/vimeo Vimeo vimeo diff --git a/src/visa/URL.txt b/src/visa/URL.txt new file mode 100644 index 0000000..d9e124a --- /dev/null +++ b/src/visa/URL.txt @@ -0,0 +1,64 @@ +aw.visa.com +bb.visa.com +bd.visa.com +bm.visa.com +bq.visa.com +cw.visa.com +ht.visa.com +www.visa.com.br +www.visa.com.mx +www.visa.com.tw +visa.com.ru +visa.com.au +www.visa.com.az +www.visa.com.cn +www.visa.com.cy +www.visa.com.ge +www.visa.com.hk +www.visa.com.hr +visa.com.jm +www.visa.com.kh +www.visa.com.kz +www.visa.com.lc +www.visa.com.lk +www.visa.com.ms +www.visa.com.my +www.visa.com.ng +www.visa.com.ph +www.visa.com.sg +www.visa.com.tr +visa.com.ua +www.visa.com.vn +www.visa.co.ao +visa.co.cr +www.visa.co.id +www.visa.co.il +www.visa.co.in +www.visa.co.jp +www.visa.co.ke +visa.co.ni +www.visa.co.nz +www.visa.co.th +www.visa.co.uk +www.visa.co.ve +visa.co.za +www.cybersource.com +www.authorize.net +www.cardinalcommerce.com +www.currencycloud.com +www.yellowpepper.com +www.fraedom.com +usa.visa.com +www.tink.com +www.practicalmoneyskills.com +www.practicalbusinessskills.org +www.practicalmoneyskills.org +sandbox.secure.checkout.visa.com +www.visainfinite.ca +http://myvisainfinite.com/suntrust/en_us/home.html +http://www.myvisacardportal.com/welcome/enbd/product/# +ebctest.cybersource.com +developer.cybersource.com +sandbox.authorize.net +developer.authorize.net +developer.visa.com diff --git a/src/visa/note.txt b/src/visa/note.txt new file mode 100644 index 0000000..7917083 --- /dev/null +++ b/src/visa/note.txt @@ -0,0 +1 @@ +63820 https://hackerone.com/visa Visa visa diff --git a/src/vkcom/APPLE_STORE_APP_ID.txt b/src/vkcom/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..840948c --- /dev/null +++ b/src/vkcom/APPLE_STORE_APP_ID.txt @@ -0,0 +1,3 @@ +564177498 +1441659687 +1219369741 diff --git a/src/vkcom/DOWNLOADABLE_EXECUTABLES.txt b/src/vkcom/DOWNLOADABLE_EXECUTABLES.txt new file mode 100644 index 0000000..9523bd0 --- /dev/null +++ b/src/vkcom/DOWNLOADABLE_EXECUTABLES.txt @@ -0,0 +1 @@ +VK Messenger diff --git a/src/vkcom/GOOGLE_PLAY_APP_ID.txt b/src/vkcom/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..9af2742 --- /dev/null +++ b/src/vkcom/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1,3 @@ +com.vkontakte.android +com.vk.im +com.vk.admin diff --git a/src/vkcom/OTHER.txt b/src/vkcom/OTHER.txt new file mode 100644 index 0000000..39c9f36 --- /dev/null +++ b/src/vkcom/OTHER.txt @@ -0,0 +1 @@ +Content diff --git a/src/vkcom/URL.txt b/src/vkcom/URL.txt new file mode 100644 index 0000000..fcc5fb1 --- /dev/null +++ b/src/vkcom/URL.txt @@ -0,0 +1,5 @@ +*.vk.com +*.vk.me +*.vk.cc +*.vk.link +id.vk.com diff --git a/src/vkcom/WILDCARD.txt b/src/vkcom/WILDCARD.txt new file mode 100644 index 0000000..5e8b598 --- /dev/null +++ b/src/vkcom/WILDCARD.txt @@ -0,0 +1,8 @@ +http://*.vk.com +http://*.vk.me +http://*.vk.cc +http://*.vk.link +*.vk.com +*.vk.me +*.vk.cc +*.vk.link diff --git a/src/vkcom/note.txt b/src/vkcom/note.txt new file mode 100644 index 0000000..e5b706a --- /dev/null +++ b/src/vkcom/note.txt @@ -0,0 +1 @@ +1254 https://hackerone.com/vkcom VK.com vkcom diff --git a/src/vlc_h1c/note.txt b/src/vlc_h1c/note.txt new file mode 100644 index 0000000..80bfe1a --- /dev/null +++ b/src/vlc_h1c/note.txt @@ -0,0 +1 @@ +36863 https://hackerone.com/vlc_h1c VLC (European Commission - DIGIT) vlc_h1c diff --git a/src/wakatime/URL.txt b/src/wakatime/URL.txt new file mode 100644 index 0000000..cafb4f3 --- /dev/null +++ b/src/wakatime/URL.txt @@ -0,0 +1 @@ +wakatime.com diff --git a/src/wakatime/note.txt b/src/wakatime/note.txt new file mode 100644 index 0000000..62cb20c --- /dev/null +++ b/src/wakatime/note.txt @@ -0,0 +1 @@ +21801 https://hackerone.com/wakatime WakaTime wakatime diff --git a/src/watson_group/APPLE_STORE_APP_ID.txt b/src/watson_group/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..b034dc1 --- /dev/null +++ b/src/watson_group/APPLE_STORE_APP_ID.txt @@ -0,0 +1,20 @@ +ICIParisXL.App.IOS +ThePerfumeShop.App.iOS +Marionnaud.Italy.iOS +Marionnaud.Romania.iOS +Marionnaud.Switzerland.iOS +Marionnaud.Austria.iOS +PNS.HongKong.iOS +MoneyBack.HongKong.iOS +Kruidvat.Belgium.iOS +Kruidvat.Netherlands.iOS + Fortress.HongKong.IOS +Watsons.HongKong.IOS +Watsons.Indonesia.IOS +Watsons.Malaysia.IOS +Watsons.Philippines.IOS +Watsons.TaiWan.IOS +Watsons.Thailand.IOS +Watsons.Singapore.IOS +Marionnaud.France.iOS +Watsons.Turkey.iOS diff --git a/src/watson_group/GOOGLE_PLAY_APP_ID.txt b/src/watson_group/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..fe786a4 --- /dev/null +++ b/src/watson_group/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1,22 @@ +Superdrug.App.Android +ICIParisXL.App.Android +ThePerfumeShop.App.Android +Marionnaud.Italy.Android +Marionnaud.Switzerland.Android +Marionnaud.Romania.Android +Marionnaud.Austria.Android +PNS.HongKong.Android +MoneyBack.HongKong.Android +Kruidvat.Belgium.Android +Kruidvat.Netherlands.Android + Watsons.TaiWan.Android +Fortress.HongKong.Android +Watsons.HongKong.Android +Watsons.Indonesia.Android +Watsons.Malaysia.Android +Watsons.Philippines.Android +Watsons.Singapore.Android +Watsons.Thailand.Android +Superdrug.Healthera.App.Android +Marionnaud.France.Android +Watsons.Turkey.Android diff --git a/src/watson_group/OTHER.txt b/src/watson_group/OTHER.txt new file mode 100644 index 0000000..490c573 --- /dev/null +++ b/src/watson_group/OTHER.txt @@ -0,0 +1,28 @@ +Kruidvat +Superdrug +The Perfume Shop +Fortress +PARKnSHOP +ICI Paris XL +Kruidvat (subdomains) +Superdrug (subdomains) +Marionnaud +MoneyBack +Watsons +ICI Paris XL (subdomains) +The Perfume Shop (subdomains) +Fortress (subdomains) +PARKnSHOP (subdomains) +PNS (subdomains) +Watsons HK (subdomains) +Watsons MY (subdomains) +Moneyback (subdomains) +Watsons PH (subdomains) +Watsons TW (subdomains) +Watsons TR (subdomains) +Marionnaud (subdomains) +Watsons TH (subdomains) +Watsons SG (subdomains) +Watsons ID (subdomains) +Trekpleister (subdomains) +Marionnaud FR (subdomains) diff --git a/src/watson_group/OTHER_IPA.txt b/src/watson_group/OTHER_IPA.txt new file mode 100644 index 0000000..a72d4de --- /dev/null +++ b/src/watson_group/OTHER_IPA.txt @@ -0,0 +1 @@ +Superdrug.App.IOS diff --git a/src/watson_group/URL.txt b/src/watson_group/URL.txt new file mode 100644 index 0000000..3efe0d2 --- /dev/null +++ b/src/watson_group/URL.txt @@ -0,0 +1,101 @@ +www.superdrug.com +www.kruidvat.nl +www.kruidvat.be +www.iciparisxl.nl +www.iciparisxl.be +www.iciparisxl.lu +www.theperfumeshop.com +app.kruidvat.nl +app.kruidvat.be +app.iciparisxl.nl +app.iciparisxl.be +app.iciparisxl.lu +app.superdrug.com +api.superdrug.com +apptps.theperfumeshop.com +www.marionnaud.at +app.marionnaud.at +www.marionnaud.ch +app.marionnaud.ch +www.marionnaud.cz +app.marionnaud.cz +www.marionnaud.hu +app.marionnaud.hu +app.marionnaud.it +www.marionnaud.it +www.marionnaud.ro +app.marionnaud.ro +app.marionnaud.sk +www.marionnaud.sk +www10.pns.hk +api.pns.hk +www.pns.hk +mapi.moneyback.com.hk +www.moneyback.com.hk +mapi-sim.fortress.com.hk +www.fortress.com.hk +www10.watsons.com.tw +www.watsons.com.tw +api.watsons.com.tw +www10.watsons.com.sg +www.watsons.com.sg +api.watsons.com.sg +www10.watsons.com.ph +api.watsons.com.ph +www.watsons.com.ph +api.watsons.com.my +www.watsons.com.my +www10.watsons.com.my +www.watsons.com.hk +www10.watsons.com.hk +api.watsons.com.hk +www.watsons.co.th +www20.watsons.co.th +www10.watsons.co.th +www10.watsons.co.id +api.watsons.co.id +www.watsons.co.id +api-mcom.parknshop.com +api.watsons.co.th +https://www.kruidvat.nl/blog/ +https://www.kruidvat.be/blog/ +www.superdrugmobile.com +https://www.iciparisxl.nl/blog/ +https://www.iciparisxl.be/blog/ +https://www.iciparisxl.lu/blog/ +https://www.superdrug.com/blog/ +https://www.theperfumeshop.com/ie/blog/ +https://www.theperfumeshop.com/blog/ +https://apptps.theperfumeshop.com/ie/blog/ +https://apptps.theperfumeshop.com/blog/ +https://www.marionnaud.at/m-life/ +https://www.marionnaud.at/blog/ +https://www.marionnaud.ch/blog/ +https://www.marionnaud.ch/m-life/ +https://www.marionnaud.cz/blog/ +https://www.marionnaud.cz/m-life/ +https://www.marionnaud.hu/m-life/ +https://www.marionnaud.hu/blog/ +https://www.marionnaud.it/m-life/ +https://www.marionnaud.it/blog/ +https://www.marionnaud.ro/m-life/ +https://www.marionnaud.ro/blog/ +https://www.marionnaud.sk/m-life/ +https://www.marionnaud.sk/blog/ +https://www.kruidvat.nl/persoonlijk +www.marionnaud.fr +app.marionnaud.fr +www.watsons.com.tr +app.watsons.com.tr +blog.watsons.com.tr +app.theperfumeshop.com +api.theperfumeshop.com +api.iciparisxl.be +api.iciparisxl.lu +api.iciparisxl.nl +https://www.kruidvat.nl/fotoservice +www.trekpleister.nl +www.watsons.com.vn +www10.watsons.com.vn +api.watsons.com.vn +api.marionnaud.fr diff --git a/src/watson_group/note.txt b/src/watson_group/note.txt new file mode 100644 index 0000000..263b43e --- /dev/null +++ b/src/watson_group/note.txt @@ -0,0 +1 @@ +48354 https://hackerone.com/watson_group A.S. Watson Group watson_group diff --git a/src/wealthsimple/APPLE_STORE_APP_ID.txt b/src/wealthsimple/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..8becf8a --- /dev/null +++ b/src/wealthsimple/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +com.wealthsimple.wealthsimple diff --git a/src/wealthsimple/GOOGLE_PLAY_APP_ID.txt b/src/wealthsimple/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..32042f0 --- /dev/null +++ b/src/wealthsimple/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.wealthsimple diff --git a/src/wealthsimple/URL.txt b/src/wealthsimple/URL.txt new file mode 100644 index 0000000..57aa2be --- /dev/null +++ b/src/wealthsimple/URL.txt @@ -0,0 +1,2 @@ +*.wealthsimple.com +*.simpletax.ca diff --git a/src/wealthsimple/WILDCARD.txt b/src/wealthsimple/WILDCARD.txt new file mode 100644 index 0000000..79dd642 --- /dev/null +++ b/src/wealthsimple/WILDCARD.txt @@ -0,0 +1,4 @@ +http://*.wealthsimple.com +http://*.simpletax.ca +*.wealthsimple.com +*.simpletax.ca diff --git a/src/wealthsimple/note.txt b/src/wealthsimple/note.txt new file mode 100644 index 0000000..9ad2197 --- /dev/null +++ b/src/wealthsimple/note.txt @@ -0,0 +1 @@ +3006 https://hackerone.com/wealthsimple Wealthsimple wealthsimple diff --git a/src/weblate/SOURCE_CODE.txt b/src/weblate/SOURCE_CODE.txt new file mode 100644 index 0000000..f4a26bf --- /dev/null +++ b/src/weblate/SOURCE_CODE.txt @@ -0,0 +1,5 @@ +https://github.com/WeblateOrg/weblate +https://github.com/WeblateOrg/wlc +https://github.com/WeblateOrg/docker +https://github.com/WeblateOrg/website +https://github.com/WeblateOrg/translation-finder diff --git a/src/weblate/URL.txt b/src/weblate/URL.txt new file mode 100644 index 0000000..d95d2e1 --- /dev/null +++ b/src/weblate/URL.txt @@ -0,0 +1 @@ +hosted.weblate.org diff --git a/src/weblate/note.txt b/src/weblate/note.txt new file mode 100644 index 0000000..f4f6b1f --- /dev/null +++ b/src/weblate/note.txt @@ -0,0 +1 @@ +19468 https://hackerone.com/weblate Weblate weblate diff --git a/src/websummit/note.txt b/src/websummit/note.txt new file mode 100644 index 0000000..c69ef41 --- /dev/null +++ b/src/websummit/note.txt @@ -0,0 +1 @@ +11973 https://hackerone.com/websummit WebSummit websummit diff --git a/src/wellhive/URL.txt b/src/wellhive/URL.txt new file mode 100644 index 0000000..ec17a76 --- /dev/null +++ b/src/wellhive/URL.txt @@ -0,0 +1,5 @@ +wellhivecorporate.okta.com +analytics.wellhive.com +app.wellhive.com +login.wellhive.com +corporate-okta.wellhive.com diff --git a/src/wellhive/note.txt b/src/wellhive/note.txt new file mode 100644 index 0000000..971a634 --- /dev/null +++ b/src/wellhive/note.txt @@ -0,0 +1 @@ +75348 https://hackerone.com/wellhive WellHive wellhive diff --git a/src/wellsfargo/URL.txt b/src/wellsfargo/URL.txt new file mode 100644 index 0000000..5a6e502 --- /dev/null +++ b/src/wellsfargo/URL.txt @@ -0,0 +1,6 @@ +*.wellsfargo.com +*.wf.com +*.wellsfargoadvisors.com +*.mworld.com +*.wystar.com +*.advisor-connection.com diff --git a/src/wellsfargo/WILDCARD.txt b/src/wellsfargo/WILDCARD.txt new file mode 100644 index 0000000..88f5fe7 --- /dev/null +++ b/src/wellsfargo/WILDCARD.txt @@ -0,0 +1,2 @@ +*.wellsfargo.com +*.wf.com diff --git a/src/wellsfargo/note.txt b/src/wellsfargo/note.txt new file mode 100644 index 0000000..e82c92e --- /dev/null +++ b/src/wellsfargo/note.txt @@ -0,0 +1 @@ +7242 https://hackerone.com/wellsfargo Wells Fargo wellsfargo diff --git a/src/whisper/note.txt b/src/whisper/note.txt new file mode 100644 index 0000000..55cf88a --- /dev/null +++ b/src/whisper/note.txt @@ -0,0 +1 @@ +569 https://hackerone.com/whisper Whisper whisper diff --git a/src/who-covid-19-mobile-app/APPLE_STORE_APP_ID.txt b/src/who-covid-19-mobile-app/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..366706c --- /dev/null +++ b/src/who-covid-19-mobile-app/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +int.who.WHOMyHealth diff --git a/src/who-covid-19-mobile-app/GOOGLE_PLAY_APP_ID.txt b/src/who-covid-19-mobile-app/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..9eef0b7 --- /dev/null +++ b/src/who-covid-19-mobile-app/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +org.who.WHOMyHealth diff --git a/src/who-covid-19-mobile-app/SOURCE_CODE.txt b/src/who-covid-19-mobile-app/SOURCE_CODE.txt new file mode 100644 index 0000000..13ad9b3 --- /dev/null +++ b/src/who-covid-19-mobile-app/SOURCE_CODE.txt @@ -0,0 +1 @@ +https://github.com/WorldHealthOrganization/app diff --git a/src/who-covid-19-mobile-app/URL.txt b/src/who-covid-19-mobile-app/URL.txt new file mode 100644 index 0000000..12cd79e --- /dev/null +++ b/src/who-covid-19-mobile-app/URL.txt @@ -0,0 +1,2 @@ +hack.whocoronavirus.org +*.whocoronavirus.org diff --git a/src/who-covid-19-mobile-app/WILDCARD.txt b/src/who-covid-19-mobile-app/WILDCARD.txt new file mode 100644 index 0000000..c5f7e32 --- /dev/null +++ b/src/who-covid-19-mobile-app/WILDCARD.txt @@ -0,0 +1,2 @@ +http://*.whocoronavirus.org +*.whocoronavirus.org diff --git a/src/who-covid-19-mobile-app/note.txt b/src/who-covid-19-mobile-app/note.txt new file mode 100644 index 0000000..8df22f2 --- /dev/null +++ b/src/who-covid-19-mobile-app/note.txt @@ -0,0 +1 @@ +51543 https://hackerone.com/who-covid-19-mobile-app WHO COVID-19 Mobile App who-covid-19-mobile-app diff --git a/src/wickr/OTHER.txt b/src/wickr/OTHER.txt new file mode 100644 index 0000000..44e5a77 --- /dev/null +++ b/src/wickr/OTHER.txt @@ -0,0 +1,11 @@ +Wickr Pro/Wickr Me (all related technical components) (up to) +Wickr Pro Android +Wickr Pro iOS +Wickr Pro Linux +Wickr Me iOS +Wickr Me Android +Wickr Me Linux +Wickr Me OS X +Wickr Pro OS X +Wickr Pro Windows +Wickr Me Windows diff --git a/src/wickr/URL.txt b/src/wickr/URL.txt new file mode 100644 index 0000000..3d46db0 --- /dev/null +++ b/src/wickr/URL.txt @@ -0,0 +1,2 @@ +admin.wickr.com +www.wickr.com diff --git a/src/wickr/note.txt b/src/wickr/note.txt new file mode 100644 index 0000000..7c4a323 --- /dev/null +++ b/src/wickr/note.txt @@ -0,0 +1 @@ +55425 https://hackerone.com/wickr Wickr wickr diff --git a/src/windstream/URL.txt b/src/windstream/URL.txt new file mode 100644 index 0000000..735620e --- /dev/null +++ b/src/windstream/URL.txt @@ -0,0 +1,7 @@ +*.windstreamsmallbusiness.com +*broadviewnet.com +https://www.windstream.com/gokinetic +we.windstream.com +https://www.windstream.com +www.windstream.com +paetec.net diff --git a/src/windstream/WILDCARD.txt b/src/windstream/WILDCARD.txt new file mode 100644 index 0000000..bc137ae --- /dev/null +++ b/src/windstream/WILDCARD.txt @@ -0,0 +1,4 @@ +http://*.windstreamsmallbusiness.com +http://*broadviewnet.com +*.windstreamsmallbusiness.com +*broadviewnet.com diff --git a/src/windstream/note.txt b/src/windstream/note.txt new file mode 100644 index 0000000..066042c --- /dev/null +++ b/src/windstream/note.txt @@ -0,0 +1 @@ +55863 https://hackerone.com/windstream Windstream windstream diff --git a/src/wink_jq3al/HARDWARE.txt b/src/wink_jq3al/HARDWARE.txt new file mode 100644 index 0000000..c67816f --- /dev/null +++ b/src/wink_jq3al/HARDWARE.txt @@ -0,0 +1 @@ +Wink Hub 2 diff --git a/src/wink_jq3al/note.txt b/src/wink_jq3al/note.txt new file mode 100644 index 0000000..54cd36e --- /dev/null +++ b/src/wink_jq3al/note.txt @@ -0,0 +1 @@ +21291 https://hackerone.com/wink_jq3al WINK wink_jq3al diff --git a/src/wisdomtree/OTHER_APK.txt b/src/wisdomtree/OTHER_APK.txt new file mode 100644 index 0000000..df49c89 --- /dev/null +++ b/src/wisdomtree/OTHER_APK.txt @@ -0,0 +1 @@ +com.wisdomtree.wtprime diff --git a/src/wisdomtree/TESTFLIGHT.txt b/src/wisdomtree/TESTFLIGHT.txt new file mode 100644 index 0000000..df49c89 --- /dev/null +++ b/src/wisdomtree/TESTFLIGHT.txt @@ -0,0 +1 @@ +com.wisdomtree.wtprime diff --git a/src/wisdomtree/URL.txt b/src/wisdomtree/URL.txt new file mode 100644 index 0000000..80518de --- /dev/null +++ b/src/wisdomtree/URL.txt @@ -0,0 +1 @@ +api.wisdomtreeprimeapp.com diff --git a/src/wisdomtree/note.txt b/src/wisdomtree/note.txt new file mode 100644 index 0000000..c68bdf4 --- /dev/null +++ b/src/wisdomtree/note.txt @@ -0,0 +1 @@ +57982 https://hackerone.com/wisdomtree WisdomTree, Inc. wisdomtree diff --git a/src/wordpoints/SOURCE_CODE.txt b/src/wordpoints/SOURCE_CODE.txt new file mode 100644 index 0000000..bc94dc4 --- /dev/null +++ b/src/wordpoints/SOURCE_CODE.txt @@ -0,0 +1,2 @@ +https://github.com/WordPoints/wordpoints/ +https://github.com/WordPoints/ diff --git a/src/wordpoints/note.txt b/src/wordpoints/note.txt new file mode 100644 index 0000000..f591565 --- /dev/null +++ b/src/wordpoints/note.txt @@ -0,0 +1 @@ +361 https://hackerone.com/wordpoints WordPoints wordpoints diff --git a/src/wordpress/SOURCE_CODE.txt b/src/wordpress/SOURCE_CODE.txt new file mode 100644 index 0000000..cca5151 --- /dev/null +++ b/src/wordpress/SOURCE_CODE.txt @@ -0,0 +1,8 @@ +WordPress Core +BuddyPress Core +BBPress Core +*.trac.wordpress.org, *.svn.wordpress.org, *.git.wordpress.org, github.com/WordPress +Gutenberg +GlotPress +WP-CLI +Official WordPress plugins diff --git a/src/wordpress/URL.txt b/src/wordpress/URL.txt new file mode 100644 index 0000000..a42e9b3 --- /dev/null +++ b/src/wordpress/URL.txt @@ -0,0 +1,14 @@ +*.wordpress.org +api.wordpress.org +*.buddypress.org,bbpress.org,profiles.wordpress.org +*.wordcamp.org +planet.wordpress.org +doaction.org +codex.wordpress.org,codex.bbpress.org,codex.buddypress.org +mercantile.wordpress.org +lists.wordpress.org +wordpressfoundation.org +irclogs.wordpress.org +*.wordpress.net +munin-*.wordpress.org +gutenberg.run diff --git a/src/wordpress/WILDCARD.txt b/src/wordpress/WILDCARD.txt new file mode 100644 index 0000000..38b74de --- /dev/null +++ b/src/wordpress/WILDCARD.txt @@ -0,0 +1,10 @@ +http://*.wordpress.org +http://*.buddypress.org,bbpress.org,profiles.wordpress.org +http://*.wordcamp.org +http://*.wordpress.net +http://munin-*.wordpress.org +*.wordpress.org +*.buddypress.org,bbpress.org,profiles.wordpress.org +*.wordcamp.org +*.wordpress.net +munin-*.wordpress.org diff --git a/src/wordpress/note.txt b/src/wordpress/note.txt new file mode 100644 index 0000000..5a2dea5 --- /dev/null +++ b/src/wordpress/note.txt @@ -0,0 +1 @@ +55 https://hackerone.com/wordpress WordPress wordpress diff --git a/src/worklytics/URL.txt b/src/worklytics/URL.txt new file mode 100644 index 0000000..ef3a8e6 --- /dev/null +++ b/src/worklytics/URL.txt @@ -0,0 +1 @@ +*.worklytics.co diff --git a/src/worklytics/WILDCARD.txt b/src/worklytics/WILDCARD.txt new file mode 100644 index 0000000..2755ca7 --- /dev/null +++ b/src/worklytics/WILDCARD.txt @@ -0,0 +1,2 @@ +http://*.worklytics.co +*.worklytics.co diff --git a/src/worklytics/note.txt b/src/worklytics/note.txt new file mode 100644 index 0000000..923670b --- /dev/null +++ b/src/worklytics/note.txt @@ -0,0 +1 @@ +40499 https://hackerone.com/worklytics Worklytics worklytics diff --git a/src/wp-api/note.txt b/src/wp-api/note.txt new file mode 100644 index 0000000..d81d347 --- /dev/null +++ b/src/wp-api/note.txt @@ -0,0 +1 @@ +297 https://hackerone.com/wp-api WP API wp-api diff --git a/src/x/APPLE_STORE_APP_ID.txt b/src/x/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..1a4e825 --- /dev/null +++ b/src/x/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +com.atebits.Tweetie2 diff --git a/src/x/GOOGLE_PLAY_APP_ID.txt b/src/x/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..a802fc0 --- /dev/null +++ b/src/x/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.twitter.android diff --git a/src/x/URL.txt b/src/x/URL.txt new file mode 100644 index 0000000..68a043f --- /dev/null +++ b/src/x/URL.txt @@ -0,0 +1,8 @@ +gnip.com +x.com +twitterflightschool.com +t.co +api.x.ai +grok.x.ai +ide.x.ai +xadsacademy.com diff --git a/src/x/WILDCARD.txt b/src/x/WILDCARD.txt new file mode 100644 index 0000000..99cb86a --- /dev/null +++ b/src/x/WILDCARD.txt @@ -0,0 +1,3 @@ +*.twitter.com +*.vine.co +*.twimg.com diff --git a/src/x/note.txt b/src/x/note.txt new file mode 100644 index 0000000..7e60b8e --- /dev/null +++ b/src/x/note.txt @@ -0,0 +1 @@ +61 https://hackerone.com/x X (Formerly Twitter) x diff --git a/src/xdefi/OTHER.txt b/src/xdefi/OTHER.txt new file mode 100644 index 0000000..8c8c3c1 --- /dev/null +++ b/src/xdefi/OTHER.txt @@ -0,0 +1 @@ +XDEFI Extension (Chromium web extension) diff --git a/src/xdefi/URL.txt b/src/xdefi/URL.txt new file mode 100644 index 0000000..b976ae2 --- /dev/null +++ b/src/xdefi/URL.txt @@ -0,0 +1,4 @@ +https://staking.xdefi.io/ +https://app.xdefi.io +staking.xdefi.io +app.xdefi.io diff --git a/src/xdefi/note.txt b/src/xdefi/note.txt new file mode 100644 index 0000000..9619f4a --- /dev/null +++ b/src/xdefi/note.txt @@ -0,0 +1 @@ +57109 https://hackerone.com/xdefi Xdefi Technologies Ltd xdefi diff --git a/src/xiaomi/HARDWARE.txt b/src/xiaomi/HARDWARE.txt new file mode 100644 index 0000000..623e086 --- /dev/null +++ b/src/xiaomi/HARDWARE.txt @@ -0,0 +1,8 @@ +Mi/Redmi Phone +Mi Band +Mi Home Webcam +Mi Robot Vacuum +Mi TV Box +Mi Laser Projector +Mi TV +Mi Electric Scooter diff --git a/src/xiaomi/OTHER.txt b/src/xiaomi/OTHER.txt new file mode 100644 index 0000000..ddd4617 --- /dev/null +++ b/src/xiaomi/OTHER.txt @@ -0,0 +1,3 @@ +Other Hardware Assets +MIUI OS for Xiaomi Phone +Other APK Assets diff --git a/src/xiaomi/OTHER_APK.txt b/src/xiaomi/OTHER_APK.txt new file mode 100644 index 0000000..fb2e92d --- /dev/null +++ b/src/xiaomi/OTHER_APK.txt @@ -0,0 +1,12 @@ +com.miui.micloudsync +com.xiaomi.smarthome +com.xiaomi.market +com.mi.global.shop +com.xiaomi.mibrain.speech +com.xiaomi.account +com.xiaomi.payment +com.xiaomi.mipicks +com.xiaomi.micloud.sdk +com.miui.cloudbackup +com.miui.cloudservice +com.android.browser diff --git a/src/xiaomi/URL.txt b/src/xiaomi/URL.txt new file mode 100644 index 0000000..c8408db --- /dev/null +++ b/src/xiaomi/URL.txt @@ -0,0 +1,5 @@ +*.mi.com +*.xiaomi.com +*.miui.com +*.xiaomiyoupin.com +*.miwifi.com diff --git a/src/xiaomi/WILDCARD.txt b/src/xiaomi/WILDCARD.txt new file mode 100644 index 0000000..feee783 --- /dev/null +++ b/src/xiaomi/WILDCARD.txt @@ -0,0 +1,10 @@ +http://*.mi.com +http://*.xiaomi.com +http://*.miui.com +http://*.xiaomiyoupin.com +http://*.miwifi.com +*.mi.com +*.xiaomi.com +*.miui.com +*.xiaomiyoupin.com +*.miwifi.com diff --git a/src/xiaomi/note.txt b/src/xiaomi/note.txt new file mode 100644 index 0000000..1d6347b --- /dev/null +++ b/src/xiaomi/note.txt @@ -0,0 +1 @@ +16083 https://hackerone.com/xiaomi Xiaomi xiaomi diff --git a/src/xilinx/OTHER.txt b/src/xilinx/OTHER.txt new file mode 100644 index 0000000..73f1be2 --- /dev/null +++ b/src/xilinx/OTHER.txt @@ -0,0 +1 @@ +Xilinx Products - Devices, Boards, Developer Tools diff --git a/src/xilinx/note.txt b/src/xilinx/note.txt new file mode 100644 index 0000000..1cac568 --- /dev/null +++ b/src/xilinx/note.txt @@ -0,0 +1 @@ +36449 https://hackerone.com/xilinx Xilinx, now part of AMD – Vulnerability Disclosure Program xilinx diff --git a/src/xilinx_bbp/SOURCE_CODE.txt b/src/xilinx_bbp/SOURCE_CODE.txt new file mode 100644 index 0000000..fa5e94a --- /dev/null +++ b/src/xilinx_bbp/SOURCE_CODE.txt @@ -0,0 +1,2 @@ +Bootgen +Xilinx Runtime (XRT) diff --git a/src/xilinx_bbp/note.txt b/src/xilinx_bbp/note.txt new file mode 100644 index 0000000..c96936b --- /dev/null +++ b/src/xilinx_bbp/note.txt @@ -0,0 +1 @@ +36450 https://hackerone.com/xilinx_bbp Xilinx, now part of AMD – Bug Bounty Program xilinx_bbp diff --git a/src/xvideos/URL.txt b/src/xvideos/URL.txt new file mode 100644 index 0000000..d5d7142 --- /dev/null +++ b/src/xvideos/URL.txt @@ -0,0 +1,9 @@ +https://www.xvideos.com +https://www.xvideos.red +https://www.xnxx.com +https://gold.xnxx.com +https://www.xvideos.net/app/ +www.xvideos.com +www.xvideos.red +www.xnxx.com +gold.xnxx.com diff --git a/src/xvideos/note.txt b/src/xvideos/note.txt new file mode 100644 index 0000000..1c76fa3 --- /dev/null +++ b/src/xvideos/note.txt @@ -0,0 +1 @@ +50470 https://hackerone.com/xvideos XVIDEOS xvideos diff --git a/src/yahoo/APPLE_STORE_APP_ID.txt b/src/yahoo/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..f24cf37 --- /dev/null +++ b/src/yahoo/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +com.yahoo.aerogram diff --git a/src/yahoo/GOOGLE_PLAY_APP_ID.txt b/src/yahoo/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..dbfcb1a --- /dev/null +++ b/src/yahoo/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.yahoo.mobile.client.android.mail diff --git a/src/yahoo/OTHER.txt b/src/yahoo/OTHER.txt new file mode 100644 index 0000000..c0d2fa5 --- /dev/null +++ b/src/yahoo/OTHER.txt @@ -0,0 +1,64 @@ +Yahoo! (misc) +7News +Yahoo Sports: Editorial +Yahoo Sports: Fantasy Sports +Yahoo Sports: Rivals +Yahoo Finance +Yahoo HK Auctions +Yahoo HK News +Yahoo HK Shopping +Yahoo Live Web Insights +Yahoo Mail +Yahoo Search +TW eCommerce: Auctions +TW Media: News +TW eCommerce: Shopping +TW Media: Stock +TW eCommerce: Store +Yahoo Video +Yahoo Weather +Flurry +Newsroom +Yahoo News +Gemini +Makers +BUILD +Built By Girls +Membership +Omega +Ensemble +Yahoo Calendar +RYOT +Engadget +TechCrunch +Autoblog +AOL Mail +Yahoo Sports: Rivals Forums +Yahoo Sports: Mobile +Yahoo Sports: Fantasy Slate/PicknWin +Yahoo Sports: Best Ball +Yahoo Sports: Fantasy Games +Yahoo Sports: Fantasy Wallet +Yahoo Sports: Daily Fantasy +Social Media Accounts +TW Media: Front Page +TW eCommerce: Used Car +Media Platform Marketing Website +Media Platforms Engineering Blog +AOL (misc) +AOL Homepage +AOL Mobile Apps +AOL Search +AOL Help +Yahoo Elections +IDS +Online Marketplace +AOL Publishers +Low Cost Access +DSP +Other (misc) +EdgeCast - Customers +EdgeCast - Partners +Uplynk +Yahoo Homepages +Yahoo Games diff --git a/src/yahoo/SOURCE_CODE.txt b/src/yahoo/SOURCE_CODE.txt new file mode 100644 index 0000000..ded23dc --- /dev/null +++ b/src/yahoo/SOURCE_CODE.txt @@ -0,0 +1,3 @@ +Arkime +Athenz +Yahoo Open Source Projects (misc) diff --git a/src/yahoo/URL.txt b/src/yahoo/URL.txt new file mode 100644 index 0000000..9c981e8 --- /dev/null +++ b/src/yahoo/URL.txt @@ -0,0 +1,6 @@ +data.mail.yahoo.com +le.yahooapis.com +onepush.query.yahoo.com +proddata.xobni.yahoo.com +apis.mail.yahoo.com +yimg.com diff --git a/src/yahoo/note.txt b/src/yahoo/note.txt new file mode 100644 index 0000000..9680f61 --- /dev/null +++ b/src/yahoo/note.txt @@ -0,0 +1 @@ +19 https://hackerone.com/yahoo Yahoo! yahoo diff --git a/src/ycombinator/URL.txt b/src/ycombinator/URL.txt new file mode 100644 index 0000000..31c2199 --- /dev/null +++ b/src/ycombinator/URL.txt @@ -0,0 +1,6 @@ +*.ycombinator.com +www.workatastartup.com +www.startupschool.org +blog.ycombinator.com +conference.startupschool.org +www.ycombinator.com diff --git a/src/ycombinator/WILDCARD.txt b/src/ycombinator/WILDCARD.txt new file mode 100644 index 0000000..080b898 --- /dev/null +++ b/src/ycombinator/WILDCARD.txt @@ -0,0 +1,2 @@ +http://*.ycombinator.com +*.ycombinator.com diff --git a/src/ycombinator/note.txt b/src/ycombinator/note.txt new file mode 100644 index 0000000..8c3276a --- /dev/null +++ b/src/ycombinator/note.txt @@ -0,0 +1 @@ +26754 https://hackerone.com/ycombinator Y Combinator ycombinator diff --git a/src/yelp/APPLE_STORE_APP_ID.txt b/src/yelp/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..7e1a440 --- /dev/null +++ b/src/yelp/APPLE_STORE_APP_ID.txt @@ -0,0 +1,3 @@ +284910350 +936983378 +542767785 diff --git a/src/yelp/GOOGLE_PLAY_APP_ID.txt b/src/yelp/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..133e30d --- /dev/null +++ b/src/yelp/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1,2 @@ +com.yelp.android.biz +com.yelp.android diff --git a/src/yelp/URL.txt b/src/yelp/URL.txt new file mode 100644 index 0000000..a4183e8 --- /dev/null +++ b/src/yelp/URL.txt @@ -0,0 +1,18 @@ +www.yelp.com +m.yelp.com +biz.yelp.com +www.yelpreservations.com +auto-api.yelp.com +mobile-api.yelp.com +api.yelp.com +biz-app.yelp.com +www.yelp-support.com +blog.yelp.com +restaurants.yelp.com +yelp.nowait.com +www.yelpwifi.com +app.yelpwifi.com +*.yelp.com +*.yelp-support.com +*.yelpwifi.com +yelptop100.com diff --git a/src/yelp/WILDCARD.txt b/src/yelp/WILDCARD.txt new file mode 100644 index 0000000..cc21922 --- /dev/null +++ b/src/yelp/WILDCARD.txt @@ -0,0 +1,6 @@ +http://*.yelp.com +http://*.yelp-support.com +http://*.yelpwifi.com +*.yelp.com +*.yelp-support.com +*.yelpwifi.com diff --git a/src/yelp/note.txt b/src/yelp/note.txt new file mode 100644 index 0000000..27d44f9 --- /dev/null +++ b/src/yelp/note.txt @@ -0,0 +1 @@ +545 https://hackerone.com/yelp Yelp yelp diff --git a/src/yoti/APPLE_STORE_APP_ID.txt b/src/yoti/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..4d1b34b --- /dev/null +++ b/src/yoti/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +983980808 diff --git a/src/yoti/GOOGLE_PLAY_APP_ID.txt b/src/yoti/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..669ce16 --- /dev/null +++ b/src/yoti/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.yoti.mobile.android.live diff --git a/src/yoti/OTHER.txt b/src/yoti/OTHER.txt new file mode 100644 index 0000000..7e87ecf --- /dev/null +++ b/src/yoti/OTHER.txt @@ -0,0 +1,2 @@ +Yoti Password Manager browser extension +Yoti liveness detection campaign diff --git a/src/yoti/URL.txt b/src/yoti/URL.txt new file mode 100644 index 0000000..8987bf3 --- /dev/null +++ b/src/yoti/URL.txt @@ -0,0 +1,14 @@ +https://core.yoti.com +https://api.yoti.com +https://ccloud.yoti.com +https://code.yoti.com +https://www.yotisign.com +https://frankd.yoti.com +core.yoti.com +api.yoti.com +ccloud.yoti.com +code.yoti.com +www.yotisign.com +frankd.yoti.com +hub.yoti.com +identity.yoti.com diff --git a/src/yoti/note.txt b/src/yoti/note.txt new file mode 100644 index 0000000..7e5d065 --- /dev/null +++ b/src/yoti/note.txt @@ -0,0 +1 @@ +21795 https://hackerone.com/yoti Yoti yoti diff --git a/src/youporn/URL.txt b/src/youporn/URL.txt new file mode 100644 index 0000000..e000652 --- /dev/null +++ b/src/youporn/URL.txt @@ -0,0 +1,2 @@ +www.youporn.com +www.youpornpremium.com diff --git a/src/youporn/note.txt b/src/youporn/note.txt new file mode 100644 index 0000000..0766969 --- /dev/null +++ b/src/youporn/note.txt @@ -0,0 +1 @@ +16885 https://hackerone.com/youporn YouPorn youporn diff --git a/src/yuga_labs/OTHER.txt b/src/yuga_labs/OTHER.txt new file mode 100644 index 0000000..d1084c0 --- /dev/null +++ b/src/yuga_labs/OTHER.txt @@ -0,0 +1,4 @@ +831287358355275877 +961114489414094898 +937011954453721119 +329381334701178885 diff --git a/src/yuga_labs/URL.txt b/src/yuga_labs/URL.txt new file mode 100644 index 0000000..5594cd6 --- /dev/null +++ b/src/yuga_labs/URL.txt @@ -0,0 +1,10 @@ +*.boredapeyachtclub.com +*.yuga.com +*.yugalabs.io +*.otherside.xyz +*.meebits.app +*.cryptopunks.app +*.mdvmm.xyz +https://dookeydash.com/ +dookeydash.com +hv-mtl.com diff --git a/src/yuga_labs/WILDCARD.txt b/src/yuga_labs/WILDCARD.txt new file mode 100644 index 0000000..af87684 --- /dev/null +++ b/src/yuga_labs/WILDCARD.txt @@ -0,0 +1,16 @@ +http://*.boredapeyachtclub.com +http://*.yuga.com +http://*.yugalabs.io +http://*.otherside.xyz +http://*.meebits.app +http://*.cryptopunks.app +http://*.mdvmm.xyz +*.boredapeyachtclub.com +*.yuga.com +*.yugalabs.io +*.otherside.xyz +*.meebits.app +*.cryptopunks.app +*.mdvmm.xyz +*.10ktf.com +*.wenewmoments.com diff --git a/src/yuga_labs/note.txt b/src/yuga_labs/note.txt new file mode 100644 index 0000000..c862fd7 --- /dev/null +++ b/src/yuga_labs/note.txt @@ -0,0 +1 @@ +58088 https://hackerone.com/yuga_labs Yuga Labs yuga_labs diff --git a/src/zabbix/SOURCE_CODE.txt b/src/zabbix/SOURCE_CODE.txt new file mode 100644 index 0000000..9909249 --- /dev/null +++ b/src/zabbix/SOURCE_CODE.txt @@ -0,0 +1 @@ +https://www.zabbix.com/download_sources diff --git a/src/zabbix/note.txt b/src/zabbix/note.txt new file mode 100644 index 0000000..584a59b --- /dev/null +++ b/src/zabbix/note.txt @@ -0,0 +1 @@ +58305 https://hackerone.com/zabbix Zabbix zabbix diff --git a/src/zaption/note.txt b/src/zaption/note.txt new file mode 100644 index 0000000..cb0b020 --- /dev/null +++ b/src/zaption/note.txt @@ -0,0 +1 @@ +695 https://hackerone.com/zaption Zaption zaption diff --git a/src/zebra_vdp/OTHER.txt b/src/zebra_vdp/OTHER.txt new file mode 100644 index 0000000..68c682a --- /dev/null +++ b/src/zebra_vdp/OTHER.txt @@ -0,0 +1,15 @@ +Anything that is explicitly owned and managed by Zebra Technologies is in scope for the VulnerabIlity Disclosure Program +*.fetchcore-cloud.com +*.zebrasports.com + partnerconnect.zebra.com +*.antuit.ai +*.profitect.com +*.pttpro.zebra.com +*.zams-eu.zebra.com +*.zams.zebra.com +*.zebra.com/mobicontrol +*.zebra.engineering +*.zebramwe.com +*.zpc.zebra.com +spx-*.zebra.engineering +cto-*.zebra.engineering diff --git a/src/zebra_vdp/URL.txt b/src/zebra_vdp/URL.txt new file mode 100644 index 0000000..bf370cf --- /dev/null +++ b/src/zebra_vdp/URL.txt @@ -0,0 +1,727 @@ +api.zpc.zebra.com +mgmt.zpc.zebra.com +minio.zpc.zebra.com +nl.zpc.zebra.com +register-device.zpc.zebra.com +zb-device.zpc.zebra.com +zsbp.zpc.zebra.com +zsbp-device.zpc.zebra.com +zsbportal.zebra.com +cag.zpc.zebra.com +cag-device.zpc.zebra.com +collect.zpc.zebra.com +cvs.zpc.zebra.com +cvs-device.zpc.zebra.com +help.zpc.zebra.com +leopard.zpc.zebra.com +leopard-device.zpc.zebra.com +lion.zpc.zebra.com +lion-device.zpc.zebra.com +tiger.zpc.zebra.com +tiger-device.zpc.zebra.com +tjx.zpc.zebra.com +tjx-device.zpc.zebra.com +walmart.zpc.zebra.com +walmart-device.zpc.zebra.com +walmart-maint.zpc.zebra.com +walmart-maint-device.zpc.zebra.com +zcorebidi-health.zpc.zebra.com +zsec-a.zpc.zebra.com +zsec-a-device.zpc.zebra.com +zsec-b.zpc.zebra.com +zsec-b-device.zpc.zebra.com +avs.zpc.zebra.com +avs-health.zpc.zebra.com +spx-load.zebra.engineering +emea-fedex.zebra.engineering +spx-cluster-4-qpid.zebra.engineering +spx-cluster-3-esp.zebra.engineering +cmm01.sl.zebra.com +mww-k8s.zebra.engineering +mwepen.zebramwe.com +ip-10-255-32-20.us-west-2.compute.internal +ip-10-255-33-159.us-west-2.compute.internal +ip-10-255-39-245.us-west-2.compute.internal +ip-10-255-40-159.us-west-2.compute.internal +ip-10-255-40-173.us-west-2.compute.internal +ip-10-255-40-230.us-west-2.compute.internal +ip-10-255-40-234.us-west-2.compute.internal +ip-10-255-41-22.us-west-2.compute.internal +ip-10-255-42-111.us-west-2.compute.internal +ip-10-255-42-117.us-west-2.compute.internal +ip-10-255-42-127.us-west-2.compute.internal +ip-10-255-42-206.us-west-2.compute.internal +ops.zebrasports.com +ip-10-255-42-9.us-west-2.compute.internal +zlsfiletransfer.zebra.com +psion.la +abco.fetchcore-cloud.com +accenture.fetchcore-cloud.com +accenture-hih.fetchcore-cloud.com +aggity.fetchcore-cloud.com +airbus.fetchcore-cloud.com +ajautomation.fetchcore-cloud.com +arrow.fetchcore-cloud.com +arrow-asia.fetchcore-cloud.com +arrow-hongkong.fetchcore-cloud.com +arrow-rt.fetchcore-cloud.com +atlastube-harrow.fetchcore-cloud.com +austinlighthouse.fetchcore-cloud.com +axon.fetchcore-cloud.com +bluemorph.fetchcore-cloud.com +boreal-technologies.fetchcore-cloud.com +braasco.fetchcore-cloud.com +brightmachines-kingfisher.fetchcore-cloud.com +brightstar-corp.fetchcore-cloud.com +buildwithrobots.fetchcore-cloud.com +buildwithrobots-1002.fetchcore-cloud.com +buildwithrobots-2.fetchcore-cloud.com +bwr-1000.fetchcore-cloud.com +bwr-1001.fetchcore-cloud.com +bwr-1002.fetchcore-cloud.com +cepheid.fetchcore-cloud.com +choctaw-nation.fetchcore-cloud.com +cisco-iot.fetchcore-cloud.com +cjlogistics.fetchcore-cloud.com +cobham.fetchcore-cloud.com +cybercleansystems.fetchcore-cloud.com +dangot.fetchcore-cloud.com +dhl.fetchcore-cloud.com +dhl-livermore-lam.fetchcore-cloud.com +dhl-tracy-cart.fetchcore-cloud.com +diligentrobots-2.fetchcore-cloud.com +diligentrobots-prod.fetchcore-cloud.com +disinfectech.fetchcore-cloud.com +dsclogistics.fetchcore-cloud.com +dspautomation.fetchcore-cloud.com +emergingwf.fetchcore-cloud.com +flex.fetchcore-cloud.com +fortna.fetchcore-cloud.com +gaitech.fetchcore-cloud.com +garmin.fetchcore-cloud.com +ge-ap1.fetchcore-cloud.com +ge-ap3.fetchcore-cloud.com +ge-ap4.fetchcore-cloud.com +ge-appliances.fetchcore-cloud.com +ge-camden.fetchcore-cloud.com +ge-camden-2.fetchcore-cloud.com +ge-riverridge.fetchcore-cloud.com +ge-riverridge-2.fetchcore-cloud.com +ge-roper.fetchcore-cloud.com +ge-selmer.fetchcore-cloud.com +ge-slc.fetchcore-cloud.com +geodis-hixson.fetchcore-cloud.com +geodis-logistics.fetchcore-cloud.com +globalindustrial.fetchcore-cloud.com +grainger.fetchcore-cloud.com +grainger-montana.fetchcore-cloud.com +greyorange.fetchcore-cloud.com +hans-schourup.fetchcore-cloud.com +hi-northropgrumman.fetchcore-cloud.com +honeywell-intelligrated.fetchcore-cloud.com +honeywell-sim.fetchcore-cloud.com +huslab.fetchcore-cloud.com +ibcs.fetchcore-cloud.com +im.fetchcore-cloud.com +im2.fetchcore-cloud.com +im3.fetchcore-cloud.com +im5.fetchcore-cloud.com +inconso.fetchcore-cloud.com +intex-k.fetchcore-cloud.com +inventive.fetchcore-cloud.com +john-deere.fetchcore-cloud.com +kennametal.fetchcore-cloud.com +kingmfg.fetchcore-cloud.com +kuehne-nagel.fetchcore-cloud.com +laubner.fetchcore-cloud.com +lystech.fetchcore-cloud.com +macgregor.fetchcore-cloud.com +maersk-ga.fetchcore-cloud.com +maersk-redlands-fulfillment.fetchcore-cloud.com +markssupply.fetchcore-cloud.com +mecomb.fetchcore-cloud.com +motionindustries.fetchcore-cloud.com +ncrcorp.fetchcore-cloud.com +neffpower.fetchcore-cloud.com +nitco.fetchcore-cloud.com +nkcaust.fetchcore-cloud.com +olympus-controls.fetchcore-cloud.com +paiindustries.fetchcore-cloud.com +piedmontnational.fetchcore-cloud.com +piedmontnational-montana.fetchcore-cloud.com +piedmontnational-oembase.fetchcore-cloud.com +piedmontnational-pilot.fetchcore-cloud.com +pitneybowes.fetchcore-cloud.com +randa.fetchcore-cloud.com +renovotec.fetchcore-cloud.com +richemont-dfw.fetchcore-cloud.com +rsi.fetchcore-cloud.com +rubyhas.fetchcore-cloud.com +sap-pilot.fetchcore-cloud.com +sap-walldorf.fetchcore-cloud.com +schneider-electric.fetchcore-cloud.com +sdilabs.fetchcore-cloud.com +sealanddesign.fetchcore-cloud.com +sealingdevices.fetchcore-cloud.com +ses-prismagraphic.fetchcore-cloud.com +shasthafoods.fetchcore-cloud.com +shoppasmaterialhandling.fetchcore-cloud.com +shorr.fetchcore-cloud.com +sick-mn.fetchcore-cloud.com +sickusa.fetchcore-cloud.com +sielift.fetchcore-cloud.com +softeon.fetchcore-cloud.com +spica.fetchcore-cloud.com +spscompanies.fetchcore-cloud.com +ssi-integration.fetchcore-cloud.com +staylinked.fetchcore-cloud.com +storage-solutions.fetchcore-cloud.com +storageequipmentsystems.fetchcore-cloud.com +syncreon-netherlands.fetchcore-cloud.com +total-technologies.fetchcore-cloud.com +tritechrobotics.fetchcore-cloud.com +tropical.fetchcore-cloud.com +twinoaks.fetchcore-cloud.com +u-sluno.fetchcore-cloud.com +u-sluno-2.fetchcore-cloud.com +vargo.fetchcore-cloud.com +vargo-integration.fetchcore-cloud.com +vargo-sim.fetchcore-cloud.com +vecna-integration.fetchcore-cloud.com +verizon.fetchcore-cloud.com +viioni.fetchcore-cloud.com +viioni-crownpaints-uk.fetchcore-cloud.com +viioni-nhs.fetchcore-cloud.com +wartsila.fetchcore-cloud.com +waytekwire.fetchcore-cloud.com +zebra.fetchcore-cloud.com +zebra-fulfillment.fetchcore-cloud.com +zebra-integration.fetchcore-cloud.com +zebra-sd.fetchcore-cloud.com +zebra1-integration.fetchcore-cloud.com +zebrabd.fetchcore-cloud.com +zebraheerenveen.fetchcore-cloud.com +zordi.fetchcore-cloud.com +fs.viq.zebra.com +portal.uvtrace.com +com.zebra.asdalockerreturn +jenkins.ssppdeployp.zebra.engineering. +ui.ssppcorep.zebra.engineering. +ads.ess2corep.zebra.engineering. +aggregation-api.ess2dlcorep.zebra.engineering. +baseline-analytic-api.ess2dlcorep.zebra.engineering. +data-capture-api.ess2dlcorep.zebra.engineering. +data-catalog-api.ess2dlcorep.zebra.engineering. +device-details-api.ess2dlcorep.zebra.engineering. +device-https.ess2corep.zebra.engineering. +emc-http-endpoint.ess2corep.zebra.engineering. +es-gcf-auth-p.zebra.engineering. +jumphost.es-s2-core-p-1.zebra.engineering. +location-api.ess2dlcorep.zebra.engineering. +raw-api.ess2dlcorep.zebra.engineering. +sfdc-support-portal-api.ess2dlcorep.zebra.engineering. +tenant-api.ess2dlcorep.zebra.engineering. +wm-api.ess2dlcorep.zebra.engineering. +wm-private-api.ess2dlcorep.zebra.engineering. +sss2buildd.zebra.engineering +ess2corep.zebra.engineering +ess2dlcorep.zebra.engineering +ssppcontrolp.zebra.engineering +ssppcorep.zebra.engineering +pp.zebra.com +accounts.walgreens.antuit.ai +accounts.wba.esp.antuit.ai +aivm.walgreens.antuit.ai +aivm-proxy.walgreens.antuit.ai +api.walgreens.antuit.ai +sftp.walgreens.antuit.ai +www.walgreens.antuit.ai +accounts.elc.esp.antuit.ai +accounts.elcforecast.antuit.ai +accounts.flowersfoods.antuit.ai +accounts.ffd.esp.antuit.ai +minio-prod.flowersfoods.antuit.ai +minio-prod.ffd.esp.antuit.ai +api.flowersfoods.antuit.ai +api.ffd.esp.antuit.ai +flowersfoods.antuit.ai +ffd.esp.antuit.ai +www.flowersfoods.antuit.ai +sftp.flowersfoods.antuit.com +www.ffd.esp.antuit.ai +accounts.gap.antuit.ai +aivm.gap.antuit.ai +aivm-proxy.gap.antuit.ai +platform.gap.antuit.ai +www.gap.antuit.ai +accounts.gap.esp.antuit.ai +accounts.generalmills.antuit.ai +accounts.gmi.esp.antuit.ai +www.generalmills.antuit.ai +api.generalmills.antuit.ai +generalmills.antuit.ai +ams.philips.antuit.ai +api-platform.philips.antuit.ai +platform.philips.antuit.ai +accounts.philips.antuit.ai +accounts.phg.esp.antuit.ai +api.philips.antuit.ai +philips.antuit.ai +aivm.philips.antuit.ai +accounts.rackroom.antuit.ai +accounts.rck.esp.antuit.ai +api.rackroom.antuit.ai +1077665-rackvpn-dr.reflexisinc.co.uk +1077665-rackvpn-pr.reflexisinc.co.uk +aafes.reflexisinc.com +activation.reflexisinc.co.uk +activation.reflexisinc.com +adusa.reflexisinc.com +ahold.reflexisinc.com +americansignature.reflexisinc.com +andromeda.reflexisinc.com +aptdixons.reflexisinc.co.uk +auth.reflexisinc.com +bancoppel.reflexisinc.com +bankofamerica.reflexisinc.com +bbyppmobile.reflexisinc.com +bbysbmobile.reflexisinc.com +bcf.reflexisinc.com +bindawood.reflexisinc.co.uk +blh.reflexisinc.com +bp.reflexisinc.co.uk +bpgermany.reflexissystems.de +bps.reflexisinc.com +cencosud.reflexisinc.com +chicos.reflexisinc.com +csaar.reflexisinc.com +cvs.reflexisinc.com +cvsapi.reflexisinc.com +cvsba.reflexisinc.com +cvscoram.reflexisinc.com +cvsdc.reflexisinc.com +cvsltc.reflexisinc.com +cvsltcba.reflexisinc.com +das.scheduling.hmchina.cn +das.scheduling.hmgroup.com +davidjones.reflexisinc.com +dgn.reflexisinc.com +dj.reflexisinc.co.uk +dxnspayroll.reflexisinc.co.uk +egr.reflexisinc.co.uk +elcuk.reflexisinc.co.uk +elrosado.reflexisinc.com +eurogarages.reflexisinc.com +eyemartexpress.reflexisinc.com +faceauthal.reflexisinc.com +faceauthau.reflexisinc.com +faceauthlon3.reflexisinc.co.uk +faceauthlon5.reflexisinc.co.uk +faceauthmb.reflexisinc.com +farmacorp.reflexisinc.com +fs.reflexisinc.com +fs2.reflexisinc.com +ftp.reflexisinc.co.uk +ftp2.reflexisinc.com +ftpasi.reflexisinc.com +fxss.reflexisinc.com +gamestop.reflexisinc.com +gcp.rflxdocker.reflexisinc.co.uk +glp.reflexisinc.com +hdpda.reflexisinc.com +heb.reflexisinc.com +iam.reflexisinc.com +iam01.iam.reflexisinc.com +iir.reflexisinc.co.uk +iki.reflexisinc.co.uk +jpmc.reflexisinc.com +jpmctablet.reflexisinc.com +kennesaw-vpn.reflexisinc.com +knlaap.reflexisinc.com +knlaarons.reflexisinc.com +knlasi.reflexisinc.com +knlazoba.reflexisinc.com +knlbatplus.reflexisinc.com +knlbby.reflexisinc.com +knlbbycan.reflexisinc.com +knlbbymobile.reflexisinc.com +knlbbyppmobile.reflexisinc.com +knlbelk.reflexisinc.com +knlbelkdr.reflexisinc.com +knlbjs.reflexisinc.com +knlbmr.reflexisinc.co.uk +knlbnc.reflexisinc.com +knlbsi.reflexisinc.com +knlbsirtm.reflexisinc.com +knlchicos.reflexisinc.com +knlcl02st.reflexisinc.com +knlcl85pr.scheduling.hmchina.cn +knlcluster01.reflexisinc.com +knlcluster02.reflexisinc.com +knlcluster03.reflexisinc.com +knlcluster07.reflexisinc.com +knlcluster08.reflexisinc.com +knlcluster09.reflexisinc.com +knlcluster10.reflexisinc.com +knlcluster11.reflexisinc.com +knlcluster12.reflexisinc.com +knlcluster15.reflexisinc.com +knlcluster16.reflexisinc.com +knlcluster18.reflexisinc.com +knlcluster19.reflexisinc.com +knlcluster20.reflexisinc.com +knlcluster21.reflexisinc.com +knlcluster22.reflexisinc.com +knlcluster23.reflexisinc.com +knlcluster24.reflexisinc.com +knlcluster51.reflexisinc.co.uk +knlcluster52.reflexisinc.co.uk +knlcluster53.scheduling.hmgroup.com +knlcluster54.reflexisinc.co.uk +knlcluster70.scheduling.hmgroup.com +knlcluster75.reflexissystems.de +knlcluster76.reflexissystems.de +knlcluster78.reflexissystems.de +knlcluster85.scheduling.hmchina.cn +knlcoop.reflexissystems.de +knlcoopuk.reflexisinc.co.uk +knlcoppel.reflexisinc.com +knlcuf.reflexisinc.com +knlcufrtm.reflexisinc.com +knldcsg.reflexisinc.com +knldiscounttire.reflexisinc.com +knldxns.reflexisinc.co.uk +knlelsuper.reflexisinc.com +knlfalabella.reflexisinc.com +knlfmb.reflexisinc.com +knlfmc.reflexisinc.com +knlgate.reflexisinc.com +knlge.reflexisinc.com +knlgestiondeturnos.reflexisinc.com +knlgowireless.reflexisinc.com +knlhdmex.reflexisinc.com +knlhmppru.scheduling.hmgroup.com +knljcp.reflexisinc.com +knljlp.reflexisinc.co.uk +knlkohls.reflexisinc.com +knlloves.reflexisinc.com +knllowes.reflexisinc.com +knlmcdde.reflexissystems.de +knlmichaels.reflexisinc.com +knlmorrisons.reflexisinc.co.uk +knlodpactivitycalendar.reflexisinc.com +knlofficedepot.reflexisinc.com +knlpromart.reflexisinc.com +knlqck4.reflexisinc.com +knlrewe.reflexissystems.de +knlrockler.reflexisinc.com +knlrrs.reflexisinc.com +knlsallybeauty.reflexisinc.com +knlsfc.reflexisinc.co.uk +knlsgh.reflexisinc.com +knlsheetz.reflexisinc.com +knlsiman.reflexisinc.com +knlsmu.reflexisinc.com +knlsod.reflexisinc.com +knlstaples.reflexisinc.com +knltailoredbrands.reflexisinc.com +knltesco.reflexisinc.co.uk +knltescoce.reflexisinc.co.uk +knltjx.reflexisinc.com +knltottus.reflexisinc.com +knlupc.reflexisinc.com +knlvsm.reflexisinc.com +knlwalgreens.reflexisinc.com +knlwalrtm.reflexisinc.com +knlwawa.reflexisinc.com +knlwestmarine.reflexisinc.com +livingspaces.reflexisinc.com +lonmail01.reflexisinc.co.uk +lonmail05.reflexisinc.co.uk +mailhost.reflexisinc.com +mailhost01.reflexisinc.com +mailhostal.appointment.reflexisinc.com +mailhostau.reflexisinc.com +mailhostdo.reflexissystems.de +mailhostlon3.appointment.reflexisinc.co.uk +mailhostlon3.reflexisinc.co.uk +mailhostlon5.appointment.reflexisinc.co.uk +mailhostlon5.reflexisinc.co.uk +mailhostso.reflexisinc.com +mands.reflexisinc.co.uk +mapco.reflexisinc.com +maverik.reflexisinc.com +maxima.reflexisinc.co.uk +mcddetrg.reflexisinc.co.uk +mcdeu.reflexisinc.co.uk +mcdpl.reflexisinc.co.uk +mcduk.reflexisinc.co.uk +mcdukpsdr.reflexisinc.co.uk +md.reflexisinc.com +migrationrwspantry.reflexisinc.com +mitre10.reflexisinc.com +mobility.reflexisinc.com +morrisons.reflexisinc.co.uk +mwcl02pp.reflexisinc.com +mwcl02st.reflexisinc.com +mwcl20ba.reflexisinc.com +mwcl21ppkl.reflexisinc.com +mwcl52ppkl.reflexisinc.co.uk +mwcl85pr.scheduling.hmchina.cn +mwcluster01.reflexisinc.com +mwcluster02.reflexisinc.com +mwcluster03.reflexisinc.com +mwcluster04.reflexisinc.com +mwcluster07.reflexisinc.com +mwcluster08.reflexisinc.com +mwcluster09.reflexisinc.com +mwcluster09dr.reflexisinc.com +mwcluster10.reflexisinc.com +mwcluster11.reflexisinc.com +mwcluster12.reflexisinc.com +mwcluster15.reflexisinc.com +mwcluster16.reflexisinc.com +mwcluster19.reflexisinc.com +mwcluster20.reflexisinc.com +mwcluster21.reflexisinc.com +mwcluster22.reflexisinc.com +mwcluster23.reflexisinc.com +mwcluster24.reflexisinc.com +mwcluster51.reflexisinc.co.uk +mwcluster52.reflexisinc.co.uk +mwcluster53.scheduling.hmgroup.com +mwcluster54.reflexisinc.co.uk +mwcluster70.scheduling.hmgroup.com +mwcluster75.reflexissystems.de +mwcluster76.reflexissystems.de +mwcluster78.reflexissystems.de +mwcluster85.scheduling.hmchina.cn +mwclusterslc01.reflexisinc.com +mwclusterslc02.reflexisinc.com +mwhdpdm.reflexisinc.com +myportal.reflexisinc.com +myworkaap.reflexisinc.com +myworkaarons.reflexisinc.com +myworkasi.reflexisinc.com +myworkazoba.reflexisinc.com +myworkbatplus.reflexisinc.com +myworkbby.reflexisinc.com +myworkbbycan.reflexisinc.com +myworkbbymobile.reflexisinc.com +myworkbelk.reflexisinc.com +myworkbelkdr.reflexisinc.com +myworkbjs.reflexisinc.com +myworkbmr.reflexisinc.co.uk +myworkbnc.reflexisinc.com +myworkbsi.reflexisinc.com +myworkchicos.reflexisinc.com +myworkcoop.reflexissystems.de +myworkcoopuk.reflexisinc.co.uk +myworkcoppel.reflexisinc.com +myworkcuf.reflexisinc.com +myworkcvs.reflexisinc.com +myworkdcsg.reflexisinc.com +myworkdiscounttire.reflexisinc.com +myworkdxns.reflexisinc.co.uk +myworkelsuper.reflexisinc.com +myworkfalabella.reflexisinc.com +myworkfmb.reflexisinc.com +myworkfmc.reflexisinc.com +myworkganderoutdoors.reflexisinc.com +myworkgate.reflexisinc.com +myworkge.reflexisinc.com +myworkgestiondeturnos.reflexisinc.com +myworkgowireless.reflexisinc.com +myworkhdmex.reflexisinc.com +myworkhmpr.scheduling.hmchina.cn +myworkhmpr.scheduling.hmgroup.com +myworkhmprru.scheduling.hmgroup.com +myworkjcp.reflexisinc.com +myworkjlp.reflexisinc.co.uk +myworkkohls.reflexisinc.com +myworkkroger.reflexisinc.com +myworkloves.reflexisinc.com +myworklowes.reflexisinc.com +myworkmcdde.reflexissystems.de +myworkmichaels.reflexisinc.com +myworkmorrisons.reflexisinc.co.uk +myworkpromart.reflexisinc.com +myworkrewe.reflexissystems.de +myworkrockler.reflexisinc.com +myworkrrs.reflexisinc.com +myworksallybeauty.reflexisinc.com +myworksfc.reflexisinc.co.uk +myworksgh.reflexisinc.com +myworksheetz.reflexisinc.com +myworksiman.reflexisinc.com +myworksmu.reflexisinc.com +myworksod.reflexisinc.com +myworkstaples.reflexisinc.com +myworktailoredbrands.reflexisinc.com +myworktesco.reflexisinc.co.uk +myworktescoce.reflexisinc.co.uk +myworktjx.reflexisinc.com +myworktottus.reflexisinc.com +myworktractorsupply.reflexisinc.com +myworkupc.reflexisinc.com +myworkvsm.reflexisinc.com +myworkwalgreens.reflexisinc.com +myworkwalrtm.reflexisinc.com +myworkwawa.reflexisinc.com +myworkwestmarine.reflexisinc.com +oakley.reflexisinc.com +obiprapp01.aws.reflexisinc.co.uk +obiprapp02.aws.reflexisinc.co.uk +observium.reflexisinc.com +odpactivitycalendar.reflexisinc.com +odpscheduler.reflexisinc.com +oxxo.reflexisinc.com +password.reflexisinc.com +pearlevision.reflexisinc.com +peoplesystems.reflexissystems.de +petretailbrands.reflexisinc.com +pr.scheduling.hmchina.cn +pr.scheduling.hmgroup.com +primax.reflexisinc.com +prru.scheduling.hmgroup.com +psschedule.reflexisinc.co.uk +publicstorage.reflexisinc.com +qs.reflexisinc.com +questa.reflexisinc.co.uk +quickchek.reflexisinc.com +quickchekupg1.reflexisinc.com +rapidrtm.reflexisinc.com +ReflexisKennesawFW1.reflexisinc.com +rflxbankofamerica.reflexisinc.com +rflx-bosmd-202.reflexisinc.com +rflxjpmc.reflexisinc.com +rflxqstar.reflexisinc.com +rflxrslon5sftp01.reflexisinc.co.uk +rfxqlkpr01.reflexisinc.com +rslonsftp.reflexisinc.co.uk +rue21.reflexisinc.com +rwsaap.reflexisinc.com +rwsazoba.reflexisinc.com +rwsbelk.reflexisinc.com +rwsbelkdr.reflexisinc.com +rwsbmr.reflexisinc.co.uk +rwsbsi.reflexisinc.com +rwscoppel.reflexisinc.com +rwscuf.reflexisinc.com +rwsdiscounttire.reflexisinc.com +rwsdxns.reflexisinc.co.uk +rwsfacereco.reflexisinc.com +rwsgestiondeturnos.reflexisinc.com +rwsgowireless.reflexisinc.com +rwshmpr.scheduling.hmchina.cn +rwshmpr.scheduling.hmgroup.com +rwshmprru.scheduling.hmgroup.com +rwsjlp.reflexisinc.co.uk +rwsloves.reflexisinc.com +rwslvs.reflexisinc.com +rwsmcdde.reflexissystems.de +rwsmobility.reflexisinc.com +rwsofficedepot.reflexisinc.com +rwsqck4.reflexisinc.com +rwssallybeauty.reflexisinc.com +rwssfc.reflexisinc.co.uk +rwssmu.reflexisinc.com +rwssonarqube.reflexisinc.com +rwstailoredbrands.reflexisinc.com +rwsupc.reflexisinc.com +rwsupgrade.reflexisinc.com +rwswalgreens.reflexisinc.com +rwswawa.reflexisinc.com +saas.reflexisinc.com +saasadmin.reflexisinc.com +saasagent.reflexisinc.com +saasauagent.reflexisinc.com +saaseuw2agent.reflexisinc.co.uk +saaslon3agent.reflexisinc.co.uk +saaslon5agent.reflexisinc.co.uk +saaspsagent.reflexissystems.de +saassoagent.reflexisinc.com +sephora.reflexisinc.com +sftp.reflexisinc.com +sftp2.reflexisinc.com +sftpaafes.reflexisinc.com +sftpaap.reflexisinc.com +sftpaarons.reflexisinc.com +sftpadusa.reflexisinc.com +sftpae.reflexisinc.com +sftpahold.reflexisinc.com +sftpasi.reflexisinc.com +sftpazobae.reflexisinc.com +sftpbancoppel.reflexisinc.com +sftpbankofamerica.reflexisinc.com +sftpbanncoppel.reflexisinc.com +sftpbatplus.reflexisinc.com +sftpbby.reflexisinc.com +sftpbbycan.reflexisinc.com +sftpbelk.reflexisinc.com +sftpbind.reflexisinc.co.uk +zebratradeinprogram.com +docs.zebra.com +downloads.zebra.com +blogs.zebra.com +brand.zebra.com +connect.zebra.com +creative.zebra.com +design.zebra.com +domore.zebra.com +global.zebra.com +greece.zebra.com +hcm.zebra.com +http://dev-developer.zebra.com +http://dev-partnercentral.zebra.com/ +http://dev-partnerportal.zebra.com/ +http://developer.zebra.com +http://pi.zebra.com +http://qa-chimera.zebra.com +http://qa-developer.zebra.com +http://qa-docs.zebra.com +http://qa-downloads.zebra.com +http://qa-medialibrary.zebra.com +http://qa-proximity.zebra.com +http://qa-signup.zebra.com +http://qa-www.zebra.com +http://solutionspathway.zebra.com +http://stage-chimera.zebra.com +http://stage-developer.zebra.com +http://stage-docs.zebra.com +http://stage-downloads.zebra.com +http://stage-proximity.zebra.com +http://stage-signup.zebra.com +http://test-creative.zebra.com/ +http://test-design.zebra.com/ +http://test-greece.zebra.com/ +http://test-hr.zebra.com/ +http://test-learning.zebra.com/ +http://test-learningportal.zebra.com/ +http://www.aag.zebra.com/ +http://www.brand.zebra.com/ +http://www.global.zebra.com/ +supportcommunity.zebra.com +zsbsupport.zebra.com +stage-www.zebra.com +test-api.zebra.com +test-marketing-api.zebra.com +takeback.zebra.com +reflexisinc.com/ +zsl.zebra.com +wfc.zebra.com +mww.zebra.engineering +mwwprod.zebra.engineering +http://eu.fs.viq.zebra.com/public-api +https://pp-dnacloud.zebra.com/ +www.matrox.com +dcs-polarion.zebra.com +artifactory-us.zebra.com +zebra.cn. +https://devicetracker-released-internal-demo.firebaseapp.com/ +https://www.sellandwinclub.com +http://api.hartsystems.com +https://hartsystems.com +https://smartcount.zebrainventory.com +smartcountdamagestest.zebrainventory.com +https://zebrainventory.com diff --git a/src/zebra_vdp/WILDCARD.txt b/src/zebra_vdp/WILDCARD.txt new file mode 100644 index 0000000..0fca395 --- /dev/null +++ b/src/zebra_vdp/WILDCARD.txt @@ -0,0 +1 @@ +*.cto-si.zebra.com diff --git a/src/zebra_vdp/note.txt b/src/zebra_vdp/note.txt new file mode 100644 index 0000000..5ea4154 --- /dev/null +++ b/src/zebra_vdp/note.txt @@ -0,0 +1 @@ +48923 https://hackerone.com/zebra_vdp Zebra VDP zebra_vdp diff --git a/src/zego/APPLE_STORE_APP_ID.txt b/src/zego/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..68209b4 --- /dev/null +++ b/src/zego/APPLE_STORE_APP_ID.txt @@ -0,0 +1,2 @@ +1173230823 +1530014952 diff --git a/src/zego/GOOGLE_PLAY_APP_ID.txt b/src/zego/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..37e7da3 --- /dev/null +++ b/src/zego/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1,2 @@ +com.tego +com.zegocover.zego diff --git a/src/zego/URL.txt b/src/zego/URL.txt new file mode 100644 index 0000000..bfecd21 --- /dev/null +++ b/src/zego/URL.txt @@ -0,0 +1,2 @@ +*.zego.com +*.zegocover.com diff --git a/src/zego/WILDCARD.txt b/src/zego/WILDCARD.txt new file mode 100644 index 0000000..b603d1a --- /dev/null +++ b/src/zego/WILDCARD.txt @@ -0,0 +1,4 @@ +http://*.zego.com +http://*.zegocover.com +*.zego.com +*.zegocover.com diff --git a/src/zego/note.txt b/src/zego/note.txt new file mode 100644 index 0000000..0c3c6a7 --- /dev/null +++ b/src/zego/note.txt @@ -0,0 +1 @@ +49797 https://hackerone.com/zego Zego zego diff --git a/src/zendesk/APPLE_STORE_APP_ID.txt b/src/zendesk/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..c40cc48 --- /dev/null +++ b/src/zendesk/APPLE_STORE_APP_ID.txt @@ -0,0 +1,3 @@ +1174276185 +549057844 +488534576 diff --git a/src/zendesk/GOOGLE_PLAY_APP_ID.txt b/src/zendesk/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..3f647f9 --- /dev/null +++ b/src/zendesk/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1,3 @@ +com.zendesk.android +com.zopim.android +com.futuresimple.base diff --git a/src/zendesk/OTHER.txt b/src/zendesk/OTHER.txt new file mode 100644 index 0000000..fd60a3c --- /dev/null +++ b/src/zendesk/OTHER.txt @@ -0,0 +1,2 @@ +https://developer.zendesk.com/documentation/zendesk-sdks/#ios +https://developer.zendesk.com/documentation/zendesk-sdks/#android diff --git a/src/zendesk/SOURCE_CODE.txt b/src/zendesk/SOURCE_CODE.txt new file mode 100644 index 0000000..a717fcb --- /dev/null +++ b/src/zendesk/SOURCE_CODE.txt @@ -0,0 +1,3 @@ +https://github.com/smooch/smooch-android +https://github.com/smooch/smooch-ios +https://github.com/smooch/smooch-web diff --git a/src/zendesk/URL.txt b/src/zendesk/URL.txt new file mode 100644 index 0000000..5dfdbae --- /dev/null +++ b/src/zendesk/URL.txt @@ -0,0 +1,12 @@ +www.zendesk.com +developer.zendesk.com +h1-your-domain.zendesk.com +apps.zendesk.com +app.smooch.io +api.smooch.io +smooch.io +zopim.com +app.futuresimple.com +api.getbase.com +h1-your-domain.zendesk.com/sell +http://h1-your-domain.zendesk.com/sell diff --git a/src/zendesk/note.txt b/src/zendesk/note.txt new file mode 100644 index 0000000..4396517 --- /dev/null +++ b/src/zendesk/note.txt @@ -0,0 +1 @@ +205 https://hackerone.com/zendesk Zendesk zendesk diff --git a/src/zenly/APPLE_STORE_APP_ID.txt b/src/zenly/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..5b86006 --- /dev/null +++ b/src/zenly/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +com.alertus.zenly diff --git a/src/zenly/GOOGLE_PLAY_APP_ID.txt b/src/zenly/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..9a8f522 --- /dev/null +++ b/src/zenly/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +app.zenly.locator diff --git a/src/zenly/URL.txt b/src/zenly/URL.txt new file mode 100644 index 0000000..df5c26f --- /dev/null +++ b/src/zenly/URL.txt @@ -0,0 +1,3 @@ +api.znly.co +rpc.znly.co +web.zen.ly diff --git a/src/zenly/note.txt b/src/zenly/note.txt new file mode 100644 index 0000000..61eba67 --- /dev/null +++ b/src/zenly/note.txt @@ -0,0 +1 @@ +28545 https://hackerone.com/zenly Zenly zenly diff --git a/src/zerobounce/APPLE_STORE_APP_ID.txt b/src/zerobounce/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..082571a --- /dev/null +++ b/src/zerobounce/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +1671793296 diff --git a/src/zerobounce/URL.txt b/src/zerobounce/URL.txt new file mode 100644 index 0000000..50c5375 --- /dev/null +++ b/src/zerobounce/URL.txt @@ -0,0 +1,3 @@ +zerobounce.in +api.zerobounce.in +zerobounce.net diff --git a/src/zerobounce/note.txt b/src/zerobounce/note.txt new file mode 100644 index 0000000..23632a0 --- /dev/null +++ b/src/zerobounce/note.txt @@ -0,0 +1 @@ +58701 https://hackerone.com/zerobounce ZeroBounce zerobounce diff --git a/src/ziff-davis/APPLE_STORE_APP_ID.txt b/src/ziff-davis/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..a7e9a17 --- /dev/null +++ b/src/ziff-davis/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +Encrypt.team diff --git a/src/ziff-davis/DOWNLOADABLE_EXECUTABLES.txt b/src/ziff-davis/DOWNLOADABLE_EXECUTABLES.txt new file mode 100644 index 0000000..bd78bb1 --- /dev/null +++ b/src/ziff-davis/DOWNLOADABLE_EXECUTABLES.txt @@ -0,0 +1 @@ +Endpoint Security Cloud diff --git a/src/ziff-davis/URL.txt b/src/ziff-davis/URL.txt new file mode 100644 index 0000000..c985ffe --- /dev/null +++ b/src/ziff-davis/URL.txt @@ -0,0 +1,105 @@ +j2.com +j2global.com +ziffdavis.com +https://www.pcmag.com/ +https://mashable.com/ +https://www.askmen.com/ +https://www.extremetech.com/ +https://www.offers.com/ +https://www.retailmenot.com/ +https://www.techbargains.com/ +https://blackfriday.com/ +https://www.theblackfriday.com/ +https://www.dealsofamerica.com/ +https://www.ign.com/ +https://howlongtobeat.com/ +https://www.humblebundle.com/ +https://www.speedtest.net/ +https://downdetector.com/ +https://www.toolbox.com/ +https://www.spiceworks.com/ +https://community.spiceworks.com/ +https://www.ekahau.com/ +https://www.everydayhealth.com/ +https://www.whattoexpect.com/ +https://www.medpagetoday.com/ +https://www.healthecareers.com/ +https://www.castleconnolly.com/ +https://www.babycenter.com/ +https://www.migraineagain.com/ +https://www.diabetesdaily.com/ +https://www.dailyom.com/ +https://primeinc.org/ +https://www.campaigner.com/ +https://www.smtp.com/ +https://www.ipvanish.com/ +https://uk.pcmag.com/ +www.computershopper.com +www.geek.com +https://bestblackfriday.com/ +www.insidecrm.com +www.itmanagement.com +www.itsecurity.com +www.voip-news.com +au.pcmag.com +http://www.retailmenot.fr/ +https://www.ma-reduc.com/ +https://www.poulpeo.com/ +https://www.line2.com/ +https://www.icontact.com/ +www.ipvanish.com +https://kickbox.com/ +ookla.com +pcmag.com +mashable.com +askmen.com +extremetech.com +offers.com +retailmenot.com +techbargains.com +blackfriday.com +theblackfriday.com +dealsofamerica.com +ign.com +howlongtobeat.com +humblebundle.com +speedtest.net +downdetector.com +toolbox.com +spiceworks.com +community.spiceworks.com +ekahau.com +everydayhealth.com +whattoexpect.com +medpagetoday.com +healthecareers.com +castleconnolly.com +babycenter.com +migraineagain.com +diabetesdaily.com +dailyom.com +primeinc.org +campaigner.com +smtp.com +ipvanish.com +uk.pcmag.com +computershopper.com +geek.com +bestblackfriday.com +insidecrm.com +itmanagement.com +itsecurity.com +voip-news.com +retailmenot.fr +ma-reduc.com +poulpeo.com +line2.com +icontact.com +kickbox.com +vipre.com +inspiredelearning.com +safesendsoftware.com +myvipre.com +threattrack.com +mailanyone.net +inspiredlms.com diff --git a/src/ziff-davis/note.txt b/src/ziff-davis/note.txt new file mode 100644 index 0000000..1fb1b26 --- /dev/null +++ b/src/ziff-davis/note.txt @@ -0,0 +1 @@ +55484 https://hackerone.com/ziff-davis Ziff Davis ziff-davis diff --git a/src/zilliqa/SOURCE_CODE.txt b/src/zilliqa/SOURCE_CODE.txt new file mode 100644 index 0000000..fb50763 --- /dev/null +++ b/src/zilliqa/SOURCE_CODE.txt @@ -0,0 +1,20 @@ +https://github.com/Zilliqa/scilla +https://github.com/Zilliqa/Zilliqa +https://github.com/Zilliqa/schnorr +https://github.com/Zilliqa/staking-contract/blob/main/contracts/ssnlist.scilla +https://github.com/Zilliqa/staking-contract/blob/main/contracts/proxy.scilla +https://github.com/Zilliqa/staking-contract/blob/main/contracts/gzil.scilla +https://github.com/Zilliqa/staking-contract/blob/main/contracts/multisig_wallet.scilla +https://github.com/Zilliqa/Zilliqa-JavaScript-Library +https://github.com/Zilliqa/gozilliqa-sdk +https://github.com/Zilliqa/dev-explorer +https://github.com/Zilliqa/Devex-apollo +https://github.com/Zilliqa/ceres +https://github.com/Zilliqa/zilliqa-multisig-wallet +https://github.com/Zilliqa/ZRC/blob/master/reference/multisig_wallet.scilla +https://github.com/Zilliqa/ZRC/blob/master/reference/nonfungible-token.scilla +https://github.com/Zilliqa/ZRC/blob/master/reference/FungibleToken.scilla +https://github.com/Switcheo/switcheo-tradehub-zil/blob/main/contracts/LockProxySwitcheo.scilla +https://github.com/Switcheo/switcheo-tradehub-zil/blob/main/contracts/ZilCrossChainManager.scilla +https://github.com/Switcheo/switcheo-tradehub-zil/blob/main/contracts/ZilCrossChainManagerProxy.scilla +https://github.com/Switcheo/switcheo-tradehub-zil/blob/main/contracts/SwitcheoTokenZRC2.scilla diff --git a/src/zilliqa/URL.txt b/src/zilliqa/URL.txt new file mode 100644 index 0000000..6fe91a5 --- /dev/null +++ b/src/zilliqa/URL.txt @@ -0,0 +1,6 @@ +https://dev-api.zilliqa.com/ +https://testnet-stake.zilliqa.com +https://ide.zilliqa.com/ +https://zilswap.io/bridge +https://dev-wallet.zilliqa.com/ +https://github.com/Zilliqa/nucleus-wallet diff --git a/src/zilliqa/note.txt b/src/zilliqa/note.txt new file mode 100644 index 0000000..24a0ca2 --- /dev/null +++ b/src/zilliqa/note.txt @@ -0,0 +1 @@ +51016 https://hackerone.com/zilliqa Zilliqa zilliqa diff --git a/src/zivver/APPLE_STORE_APP_ID.txt b/src/zivver/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..572e5d0 --- /dev/null +++ b/src/zivver/APPLE_STORE_APP_ID.txt @@ -0,0 +1 @@ +com.zivver.app diff --git a/src/zivver/GOOGLE_PLAY_APP_ID.txt b/src/zivver/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..572e5d0 --- /dev/null +++ b/src/zivver/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1 @@ +com.zivver.app diff --git a/src/zivver/URL.txt b/src/zivver/URL.txt new file mode 100644 index 0000000..b4ce5a4 --- /dev/null +++ b/src/zivver/URL.txt @@ -0,0 +1,6 @@ +app.zivver.com +collector.zivver.com +downloads.zivver.com +start.zivvermeet.com +docs.zivver.com +img.zivver.com diff --git a/src/zivver/note.txt b/src/zivver/note.txt new file mode 100644 index 0000000..0b3cec4 --- /dev/null +++ b/src/zivver/note.txt @@ -0,0 +1 @@ +49072 https://hackerone.com/zivver Zivver zivver diff --git a/src/zomato/APPLE_STORE_APP_ID.txt b/src/zomato/APPLE_STORE_APP_ID.txt new file mode 100644 index 0000000..5fc67eb --- /dev/null +++ b/src/zomato/APPLE_STORE_APP_ID.txt @@ -0,0 +1,3 @@ +434613896 +991745732 +912349367 diff --git a/src/zomato/GOOGLE_PLAY_APP_ID.txt b/src/zomato/GOOGLE_PLAY_APP_ID.txt new file mode 100644 index 0000000..db25636 --- /dev/null +++ b/src/zomato/GOOGLE_PLAY_APP_ID.txt @@ -0,0 +1,3 @@ +com.application.zomato +com.application.zomatomerchant +com.grofers.customerapp diff --git a/src/zomato/OTHER.txt b/src/zomato/OTHER.txt new file mode 100644 index 0000000..4098177 --- /dev/null +++ b/src/zomato/OTHER.txt @@ -0,0 +1,3 @@ +Scope Questions: Items not explicitly listed here +All Assets (other than Blinkit) +All Blinkit assets (in scope) diff --git a/src/zomato/URL.txt b/src/zomato/URL.txt new file mode 100644 index 0000000..f1ed9e6 --- /dev/null +++ b/src/zomato/URL.txt @@ -0,0 +1,9 @@ +*.zomato.com +winecellar.zomato.com +*.zdev.net +*.zomans.com +*.hyperpure.com +*.runnr.in +api.grofers.com +api2.grofers.com +blinkit.com diff --git a/src/zomato/WILDCARD.txt b/src/zomato/WILDCARD.txt new file mode 100644 index 0000000..134794a --- /dev/null +++ b/src/zomato/WILDCARD.txt @@ -0,0 +1,12 @@ +http://*.zomato.com +http://*.zdev.net +http://*.zomans.com +http://*.hyperpure.com +http://*.runnr.in +*.zomato.com +*.zdev.net +*.zomans.com +*.hyperpure.com +*.runnr.in +http://*.grofer.io +http://*.grofers.com diff --git a/src/zomato/note.txt b/src/zomato/note.txt new file mode 100644 index 0000000..e09243a --- /dev/null +++ b/src/zomato/note.txt @@ -0,0 +1 @@ +2943 https://hackerone.com/zomato Zomato zomato