github.com/iDigitalFlame/xmt@v0.5.4/c2/transform/x_no_crypt.go (about) 1 //go:build !crypt 2 // +build !crypt 3 4 // Copyright (C) 2020 - 2023 iDigitalFlame 5 // 6 // This program is free software: you can redistribute it and/or modify 7 // it under the terms of the GNU General Public License as published by 8 // the Free Software Foundation, either version 3 of the License, or 9 // any later version. 10 // 11 // This program is distributed in the hope that it will be useful, 12 // but WITHOUT ANY WARRANTY; without even the implied warranty of 13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 // GNU General Public License for more details. 15 // 16 // You should have received a copy of the GNU General Public License 17 // along with this program. If not, see <https://www.gnu.org/licenses/>. 18 // 19 20 package transform 21 22 func getDefaultDomains() []string { 23 return []string{ 24 "amazon.com", 25 "amazonaws.com", 26 "apple.com", 27 "aws.amazon.com", 28 "bing.com", 29 "docs.google.com", 30 "duckduckgo.com", 31 "ebay.com", 32 "facebook.com", 33 "github.com", 34 "gmail.com", 35 "google.com", 36 "images.google.com", 37 "img.t.co", 38 "instagram.com", 39 "linkedin.com", 40 "login.live.com", 41 "maps.google.com", 42 "microsoft.com", 43 "msn.com", 44 "office.com", 45 "office365.com", 46 "outlook.com", 47 "outlook.office.com", 48 "paypal.com", 49 "redd.it", 50 "reddit.com", 51 "s3.amazon.com", 52 "sharepoint.com", 53 "slack.com", 54 "spotify.com", 55 "t.co", 56 "twimg.com", 57 "twitch.tv", 58 "twitter.com", 59 "update.windows.com", 60 "walmart.com", 61 "wikipedia.org", 62 "windows.com", 63 "xp.apple.com", 64 "yahoo.com", 65 } 66 }