├── Pic.png ├── img └── pic.jpg ├── LICENSE ├── README.md └── 9xe3.sh /Pic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lexxrt/9xe3/HEAD/Pic.png -------------------------------------------------------------------------------- /img/pic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lexxrt/9xe3/HEAD/img/pic.jpg -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 Lexxrt 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## 9xe3 2 | 3 | *Usage:* 4 | 5 | 1. Convert to executable: `chmod +x ./9xe3.sh` 📂 6 | 2. Run 9xe3 (Windows): `dos2unix ./9xe3 && ./9xe3.sh` 🚀 7 | 3. Run 9xe3 (Linux/Mac): `./9xe3.sh` 🚀 8 | 9 | > 10 | 11 | *Social Media Sites (75 Sites):* 📱 12 | 13 | - Instagram 14 | - Facebook 15 | - Twitter 16 | - Youtube 17 | - Blogger 18 | - Gloogle plus 19 | - Reddit 20 | - Wordpress 21 | - Pinterest 22 | - Github 23 | - Tumblr 24 | - Flickr 25 | - Steam 26 | - Vimeo 27 | - Soundcloud 28 | - Disqus 29 | - Medium 30 | - Deviantart 31 | - Vk 32 | - About.me 33 | - Imgur 34 | - Flipboard 35 | - Slideshare 36 | - Fotolog 37 | - Spotify 38 | - Mixcloud 39 | - Scribd 40 | - Badoo 41 | - Bitbucket 42 | - Dailymotion 43 | - Etsy 44 | - Cashme 45 | - Behance 46 | - Goodreads 47 | - Instructables 48 | - Keybase 49 | - Kongregate 50 | - Livejournal 51 | - Angellist 52 | - Last.fm 53 | - Dribbble 54 | - Codecademy 55 | - Gravatar 56 | - Pastebin 57 | - Foursquare 58 | - Roblox 59 | - Gumroad 60 | - Newgrounds 61 | - Wattpad 62 | - Canva 63 | - Creativemarket 64 | - Trakt 65 | - 500px 66 | - Buzzfeed 67 | - Tripadvisor 68 | - Hubpages 69 | - Contently 70 | - Houzz 71 | - Blip.fm 72 | - Wikipedia 73 | - Hackernews 74 | - Codementor 75 | - Reverbnation 76 | - Designspiration 65 77 | - Bandcamp 78 | - Colourlovers 79 | - Ifttt 80 | - Ebay 81 | - Slack 82 | - Okcupid 83 | - Trip 84 | - Ello 85 | - Tracky 86 | - Tripit 87 | - Basecamp 88 | 89 | -------------------------------------------------------------------------------- /9xe3.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # Author: Lexxrt 3 | # https://github.com/Lexxrt 4 | 5 | # Clear Console 6 | clear 7 | 8 | trap 'printf "\n";partial;exit 1' 2 9 | 10 | banner() { 11 | 12 | 13 | 14 | printf ''' 15 | 16 | █████╗ ██╗ ██╗███████╗██████╗ 17 | ██╔══██╗╚██╗██╔╝██╔════╝╚════██╗ 18 | ╚██████║ ╚███╔╝ █████╗ █████╔╝ 19 | ╚═══██║ ██╔██╗ ██╔══╝ ╚═══██╗ 20 | █████╔╝██╔╝ ██╗███████╗██████╔╝ 21 | ╚════╝ ╚═╝ ╚═╝╚══════╝╚═════╝ 22 | 23 | Author: Lexxrt 24 | Github: https://github.com/Lexxrt 25 | 26 | ''' 27 | } 28 | 29 | partial() { 30 | 31 | if [[ -e output.txt ]]; then 32 | printf "\e[1;92m[\e[0m\e[1;77m*\e[0m\e[1;92m] Saved:\e[0m\e[1;77m %s.txt\n" $username 33 | fi 34 | 35 | 36 | } 37 | 38 | scanner() { 39 | 40 | read -p $'\e[1;92m[\e[0m\e[1;77m?\e[0m\e[1;92m] Input Username:\e[0m ' username 41 | 42 | if [[ -e output.txt ]]; then 43 | printf "\e[1;92m[\e[0m\e[1;77m*\e[0m\e[1;92m] Removing previous file:\e[0m\e[1;77m %s.txt" $username 44 | rm -rf output.txt 45 | fi 46 | printf "\n" 47 | printf "\e[1;92m[\e[0m\e[1;77m*\e[0m\e[1;92m] Checking username\e[0m\e[1;77m %s\e[0m\e[1;92m on: \e[0m\n" $username 48 | 49 | ## INSTAGRAM 50 | 51 | check_insta=$(curl -s -H "Accept-Language: en" "https://www.instagram.com/$username" -L | grep -o 'The link you followed may be broken'; echo $?) 52 | printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Instagram: \e[0m" 53 | 54 | if [[ $check_insta == *'1'* ]]; then 55 | printf "\e[1;92m Found!\e[0m https://www.instagram.com/%s\n" $username 56 | printf "https://www.instagram.com/%s\n" $username > output.txt 57 | elif [[ $check_insta == *'0'* ]]; then 58 | printf "\e[1;93mNot Found!\e[0m\n" 59 | fi 60 | 61 | ## Facebook 62 | 63 | printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Facebook: \e[0m" 64 | check_face=$(curl -s "https://www.facebook.com/$username" -L -H "Accept-Language: en" | grep -o 'not found'; echo $?) 65 | 66 | 67 | if [[ $check_face == *'1'* ]]; then 68 | printf "\e[1;92m Found!\e[0m https://www.facebook.com/%s\n" $username 69 | printf "https://www.facebook.com/%s\n" $username >> output.txt 70 | elif [[ $check_face == *'0'* ]]; then 71 | printf "\e[1;93mNot Found!\e[0m\n" 72 | fi 73 | 74 | ## TWITTER 75 | 76 | printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Twitter: \e[0m" 77 | check_twitter=$(curl -s "https://www.twitter.com/$username" -L -H "Accept-Language: en" | grep -o 'page doesn’t exist'; echo $?) 78 | 79 | 80 | if [[ $check_twitter == *'1'* ]]; then 81 | printf "\e[1;92m Found!\e[0m https://www.twitter.com/%s\n" $username 82 | printf "https://www.twitter.com/%s\n" $username >> output.txt 83 | elif [[ $check_twitter == *'0'* ]]; then 84 | printf "\e[1;93mNot Found!\e[0m\n" 85 | fi 86 | 87 | ## YOUTUBE 88 | 89 | printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] YouTube: \e[0m" 90 | check_youtube=$(curl -s "https://www.youtube.com/$username" -L -H "Accept-Language: en" | grep -o 'Not Found'; echo $?) 91 | 92 | 93 | if [[ $check_youtube == *'1'* ]]; then 94 | printf "\e[1;92m Found!\e[0m https://www.youtube.com/%s\n" $username 95 | printf "https://www.youtube.com/%s\n" $username >> output.txt 96 | elif [[ $check_youtube == *'0'* ]]; then 97 | printf "\e[1;93mNot Found!\e[0m\n" 98 | fi 99 | 100 | ## BLOGGER 101 | 102 | printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Blogger: \e[0m" 103 | check=$(curl -s "https://$username.blogspot.com" -L -H "Accept-Language: en" -i | grep -o 'HTTP/2 404'; echo $?) 104 | 105 | 106 | if [[ $check == *'1'* ]]; then 107 | printf "\e[1;92m Found!\e[0m https://%s.blogspot.com\n" $username 108 | printf "https://%s.blogspot.com\n" $username >> output.txt 109 | elif [[ $check == *'0'* ]]; then 110 | printf "\e[1;93mNot Found!\e[0m\n" 111 | fi 112 | 113 | ## GLOOGLE PLUS 114 | 115 | printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] GooglePlus: \e[0m" 116 | check=$(curl -s "https://plus.google.com/+$username/posts" -L -H "Accept-Language: en" -i | grep -o 'HTTP/2 404' ; echo $?) 117 | 118 | 119 | if [[ $check == *'1'* ]]; then 120 | printf "\e[1;92m Found!\e[0m https://plus.google.com/+%s/posts\n" $username 121 | printf "https://plus.google.com/+%s/posts\n" $username >> output.txt 122 | elif [[ $check == *'0'* ]]; then 123 | printf "\e[1;93mNot Found!\e[0m\n" 124 | fi 125 | 126 | ## REDDIT 127 | 128 | printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Reddit: \e[0m" 129 | check1=$(curl -s -i "https://www.reddit.com/user/$username" -H "Accept-Language: en" -L --user-agent '"Mozilla/5.0 (X11; U; Linux i686; en-US; rv:0.9.3) Gecko/20010801"' | head -n1 | grep -o 'HTTP/2 404' ; echo $?) 130 | 131 | if [[ $check1 == *'0'* ]] ; then 132 | printf "\e[1;93mNot Found!\e[0m\n" 133 | elif [[ $check1 == *'1'* ]]; then 134 | 135 | printf "\e[1;92m Found!\e[0m https://www.reddit.com/user/%s\n" $username 136 | printf "https://www.reddit.com/user/%s\n" $username >> output.txt 137 | fi 138 | 139 | ## WORDPRESS 140 | 141 | printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Wordpress: \e[0m" 142 | check1=$(curl -s -i "https://$username.wordpress.com" -H "Accept-Language: en" -L --user-agent '"Mozilla/5.0 (X11; U; Linux i686; en-US; rv:0.9.3) Gecko/20010801"' | grep -o 'Do you want to register' ; echo $?) 143 | 144 | if [[ $check1 == *'0'* ]] ; then 145 | printf "\e[1;93mNot Found!\e[0m\n" 146 | elif [[ $check1 == *'1'* ]]; then 147 | 148 | printf "\e[1;92m Found!\e[0m https://%s.wordpress.com\n" $username 149 | printf "https://%s.wordpress.com\n" $username >> output.txt 150 | fi 151 | 152 | ## PINTEREST 153 | 154 | printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Pinterest: \e[0m" 155 | check1=$(curl -s -i "https://www.pinterest.com/$username" -H "Accept-Language: en" -L --user-agent '"Mozilla/5.0 (X11; U; Linux i686; en-US; rv:0.9.3) Gecko/20010801"' | grep -o '?show_error' ; echo $?) 156 | 157 | if [[ $check1 == *'0'* ]] ; then 158 | printf "\e[1;93mNot Found!\e[0m\n" 159 | elif [[ $check1 == *'1'* ]]; then 160 | 161 | printf "\e[1;92m Found!\e[0m https://www.pinterest.com/%s\n" $username 162 | printf "https://www.pinterest.com/%s\n" $username >> output.txt 163 | fi 164 | 165 | ## ONLYFANS 166 | printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Onlyfans: \e[0m" 167 | check1=$(curl -s -i "https://www.onlyfans.com/$username" -H "Accept-Language: en" -L --user-agent '"Mozilla/5.0 (X11; U; Linux i686; en-US; rv:0.9.3) Gecko/20010801"' | grep -o '?show_error' ; echo $?) 168 | 169 | if [[ $check1 == *'0'* ]] ; then 170 | printf "\e[1;93mNot Found!\e[0m\n" 171 | elif [[ $check1 == *'1'* ]]; then 172 | 173 | printf "\e[1;92m Found!\e[0m https://www.onlyfans.com/%s\n" $username 174 | printf "https://www.onlyfans.com/%s\n" $username >> output.txt 175 | fi 176 | 177 | ## GITHUB 178 | 179 | printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] GitHub: \e[0m" 180 | check1=$(curl -s -i "https://www.github.com/$username" -H "Accept-Language: en" -L --user-agent '"Mozilla/5.0 (X11; U; Linux i686; en-US; rv:0.9.3) Gecko/20010801"' | grep -o '404 Not Found' ; echo $?) 181 | 182 | if [[ $check1 == *'0'* ]] ; then 183 | printf "\e[1;93mNot Found!\e[0m\n" 184 | elif [[ $check1 == *'1'* ]]; then 185 | 186 | printf "\e[1;92m Found!\e[0m https://www.github.com/%s\n" $username 187 | printf "https://www.github.com/%s\n" $username >> output.txt 188 | fi 189 | 190 | ## TUMBLR 191 | 192 | printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Tumblr: \e[0m" 193 | check1=$(curl -s -i "https://$username.tumblr.com" -H "Accept-Language: en" -L --user-agent '"Mozilla/5.0 (X11; U; Linux i686; en-US; rv:0.9.3) Gecko/20010801"' | grep -o 'HTTP/2 404' ; echo $?) 194 | 195 | if [[ $check1 == *'0'* ]] ; then 196 | printf "\e[1;93mNot Found!\e[0m\n" 197 | elif [[ $check1 == *'1'* ]]; then 198 | 199 | printf "\e[1;92m Found!\e[0m https://%s.tumblr.com\n" $username 200 | printf "https://%s.tumblr.com\n" $username >> output.txt 201 | fi 202 | 203 | ## FLICKR 204 | 205 | printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Flickr: \e[0m" 206 | check1=$(curl -s -i "https://www.flickr.com/people/$username" -H "Accept-Language: en" -L --user-agent '"Mozilla/5.0 (X11; U; Linux i686; en-US; rv:0.9.3) Gecko/20010801"' | grep -o 'Not Found' ; echo $?) 207 | 208 | if [[ $check1 == *'0'* ]] ; then 209 | printf "\e[1;93mNot Found!\e[0m\n" 210 | elif [[ $check1 == *'1'* ]]; then 211 | 212 | printf "\e[1;92m Found!\e[0m https://www.flickr.com/photos/%s\n" $username 213 | printf "https://www.flickr.com/photos/%s\n" $username >> output.txt 214 | fi 215 | 216 | ## STEAM 217 | 218 | printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Steam: \e[0m" 219 | check1=$(curl -s -i "https://steamcommunity.com/id/$username" -H "Accept-Language: en" -L --user-agent '"Mozilla/5.0 (X11; U; Linux i686; en-US; rv:0.9.3) Gecko/20010801"' | grep -o 'The specified profile could not be found' ; echo $?) 220 | 221 | if [[ $check1 == *'0'* ]] ; then 222 | printf "\e[1;93mNot Found!\e[0m\n" 223 | elif [[ $check1 == *'1'* ]]; then 224 | 225 | printf "\e[1;92m Found!\e[0m https://steamcommunity.com/id/%s\n" $username 226 | printf "https://steamcommunity.com/id/%s\n" $username >> output.txt 227 | fi 228 | 229 | ## VIMEO 230 | 231 | printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Vimeo: \e[0m" 232 | check1=$(curl -s -i "https://vimeo.com/$username" -H "Accept-Language: en" -L --user-agent '"Mozilla/5.0 (X11; U; Linux i686; en-US; rv:0.9.3) Gecko/20010801"' | grep -o '404 Not Found' ; echo $?) 233 | 234 | if [[ $check1 == *'0'* ]] ; then 235 | printf "\e[1;93mNot Found!\e[0m\n" 236 | elif [[ $check1 == *'1'* ]]; then 237 | 238 | printf "\e[1;92m Found!\e[0m https://vimeo.com/%s\n" $username 239 | printf "https://vimeo.com/%s\n" $username >> output.txt 240 | fi 241 | 242 | 243 | ## SoundCloud 244 | 245 | printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] SoundCloud: \e[0m" 246 | check1=$(curl -s -i "https://soundcloud.com/$username" -H "Accept-Language: en" -L --user-agent '"Mozilla/5.0 (X11; U; Linux i686; en-US; rv:0.9.3) Gecko/20010801"' | grep -o '404 Not Found'; echo $?) 247 | 248 | if [[ $check1 == *'0'* ]] ; then 249 | printf "\e[1;93mNot Found!\e[0m\n" 250 | elif [[ $check1 == *'1'* ]]; then 251 | 252 | printf "\e[1;92m Found!\e[0m https://soundcloud.com/%s\n" $username 253 | printf "https://soundcloud.com/%s\n" $username >> output.txt 254 | fi 255 | 256 | ## DISQUS 257 | 258 | printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Disqus: \e[0m" 259 | check1=$(curl -s -i "https://disqus.com/$username" -H "Accept-Language: en" -L --user-agent '"Mozilla/5.0 (X11; U; Linux i686; en-US; rv:0.9.3) Gecko/20010801"' | grep -o '404 NOT FOUND' ; echo $?) 260 | 261 | if [[ $check1 == *'0'* ]] ; then 262 | printf "\e[1;93mNot Found!\e[0m\n" 263 | elif [[ $check1 == *'1'* ]]; then 264 | 265 | printf "\e[1;92m Found!\e[0m https://disqus.com/%s\n" $username 266 | printf "https://disqus.com/%s\n" $username >> output.txt 267 | fi 268 | 269 | ## MEDIUM 270 | 271 | printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Medium: \e[0m" 272 | check1=$(curl -s -i "https://medium.com/@$username" -H "Accept-Language: en" -L | grep -o 'HTTP/2 404' ; echo $?) 273 | 274 | if [[ $check1 == *'0'* ]] ; then 275 | printf "\e[1;93mNot Found!\e[0m\n" 276 | elif [[ $check1 == *'1'* ]]; then 277 | 278 | printf "\e[1;92m Found!\e[0m https://medium.com/@%s\n" $username 279 | printf "https://medium.com/@%s\n" $username >> output.txt 280 | fi 281 | 282 | ## DEVIANTART 283 | 284 | printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] DeviantART: \e[0m" 285 | check1=$(curl -s -i "https://$username.deviantart.com" -H "Accept-Language: en" -L | grep -o 'HTTP/2 404' ; echo $?) 286 | 287 | if [[ $check1 == *'0'* ]] ; then 288 | printf "\e[1;93mNot Found!\e[0m\n" 289 | elif [[ $check1 == *'1'* ]]; then 290 | 291 | printf "\e[1;92m Found!\e[0m https://%s.deviantart.com\n" $username 292 | printf "https://%s.deviantart.com\n" $username >> output.txt 293 | fi 294 | 295 | ## VK 296 | 297 | printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] VK: \e[0m" 298 | check1=$(curl -s -i "https://vk.com/$username" -H "Accept-Language: en" -L | grep -o 'HTTP/2 404' ; echo $?) 299 | 300 | if [[ $check1 == *'0'* ]] ; then 301 | printf "\e[1;93mNot Found!\e[0m\n" 302 | elif [[ $check1 == *'1'* ]]; then 303 | 304 | printf "\e[1;92m Found!\e[0m https://vk.com/%s\n" $username 305 | printf "https://vk.com/%s\n" $username >> output.txt 306 | fi 307 | 308 | ## About.me 309 | 310 | printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] About.me: \e[0m" 311 | check1=$(curl -s -i "https://about.me/$username" -H "Accept-Language: en" -L | grep -o 'HTTP/2 404' ; echo $?) 312 | 313 | if [[ $check1 == *'0'* ]] ; then 314 | printf "\e[1;93mNot Found!\e[0m\n" 315 | elif [[ $check1 == *'1'* ]]; then 316 | 317 | printf "\e[1;92m Found!\e[0m https://about.me/%s\n" $username 318 | printf "https://about.me/%s\n" $username >> output.txt 319 | fi 320 | 321 | 322 | ## Imgur 323 | 324 | printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Imgur: \e[0m" 325 | check1=$(curl -s -i "https://imgur.com/user/$username" -H "Accept-Language: en" -L | grep -o 'HTTP/2 404' ; echo $?) 326 | 327 | if [[ $check1 == *'0'* ]] ; then 328 | printf "\e[1;93mNot Found!\e[0m\n" 329 | elif [[ $check1 == *'1'* ]]; then 330 | 331 | printf "\e[1;92m Found!\e[0m https://imgur.com/user/%s\n" $username 332 | printf "https://imgur.com/user/%s\n" $username >> output.txt 333 | fi 334 | 335 | ## FlipBoard 336 | 337 | printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Flipboard: \e[0m" 338 | check1=$(curl -s -i "https://flipboard.com/@$username" -H "Accept-Language: en" -L | grep -o 'HTTP/2 404' ; echo $?) 339 | 340 | if [[ $check1 == *'0'* ]] ; then 341 | printf "\e[1;93mNot Found!\e[0m\n" 342 | elif [[ $check1 == *'1'* ]]; then 343 | 344 | printf "\e[1;92m Found!\e[0m https://flipboard.com/@%s\n" $username 345 | printf "https://flipboard.com/@%s\n" $username >> output.txt 346 | fi 347 | 348 | ## SlideShare 349 | 350 | printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] SlideShare: \e[0m" 351 | check1=$(curl -s -i "https://slideshare.net/$username" -H "Accept-Language: en" -L | grep -o 'HTTP/2 404' ; echo $?) 352 | 353 | if [[ $check1 == *'0'* ]] ; then 354 | printf "\e[1;93mNot Found!\e[0m\n" 355 | elif [[ $check1 == *'1'* ]]; then 356 | 357 | printf "\e[1;92m Found!\e[0m https://slideshare.net/%s\n" $username 358 | printf "https://slideshare.net/%s\n" $username >> output.txt 359 | fi 360 | 361 | ## Fotolog 362 | 363 | printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Fotolog: \e[0m" 364 | check1=$(curl -s -i "https://fotolog.com/$username" -H "Accept-Language: en" -L | grep -o 'HTTP/2 404' ; echo $?) 365 | 366 | if [[ $check1 == *'0'* ]] ; then 367 | printf "\e[1;93mNot Found!\e[0m\n" 368 | elif [[ $check1 == *'1'* ]]; then 369 | 370 | printf "\e[1;92m Found!\e[0m https://fotolog.com/%s\n" $username 371 | printf "https://fotolog.com/%s\n" $username >> output.txt 372 | fi 373 | 374 | 375 | ## Spotify 376 | 377 | printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Spotify: \e[0m" 378 | check1=$(curl -s -i "https://open.spotify.com/user/$username" -H "Accept-Language: en" -L | grep -o 'HTTP/2 404' ; echo $?) 379 | 380 | if [[ $check1 == *'0'* ]] ; then 381 | printf "\e[1;93mNot Found!\e[0m\n" 382 | elif [[ $check1 == *'1'* ]]; then 383 | 384 | printf "\e[1;92m Found!\e[0m https://open.spotify.com/user/%s\n" $username 385 | printf "https://open.spotify.com/user/%s\n" $username >> output.txt 386 | fi 387 | 388 | ## MixCloud 389 | 390 | printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] MixCloud: \e[0m" 391 | check1=$(curl -s -i "https://www.mixcloud.com/$username" -H "Accept-Language: en" -L | grep -o 'error-message' ; echo $?) 392 | 393 | if [[ $check1 == *'0'* ]] ; then 394 | printf "\e[1;93mNot Found!\e[0m\n" 395 | elif [[ $check1 == *'1'* ]]; then 396 | 397 | printf "\e[1;92m Found!\e[0m https://www.mixcloud.com/%s\n" $username 398 | printf "https://www.mixcloud.com/%s\n" $username >> output.txt 399 | fi 400 | 401 | ## Scribd 402 | 403 | printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Scribd: \e[0m" 404 | check1=$(curl -s -i "https://www.scribd.com/$username" -H "Accept-Language: en" -L | grep -o 'show_404' ; echo $?) 405 | 406 | if [[ $check1 == *'0'* ]] ; then 407 | printf "\e[1;93mNot Found!\e[0m\n" 408 | elif [[ $check1 == *'1'* ]]; then 409 | 410 | printf "\e[1;92m Found!\e[0m https://www.scribd.com/%s\n" $username 411 | printf "https://www.scribd.com/%s\n" $username >> output.txt 412 | fi 413 | 414 | ## Badoo 415 | 416 | printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Badoo: \e[0m" 417 | check1=$(curl -s -i "https://www.badoo.com/en/$username" -H "Accept-Language: en" -L | grep -o '404 Not Found' ; echo $?) 418 | 419 | if [[ $check1 == *'0'* ]] ; then 420 | printf "\e[1;93mNot Found!\e[0m\n" 421 | elif [[ $check1 == *'1'* ]]; then 422 | 423 | printf "\e[1;92m Found!\e[0m https://www.badoo.com/en/%s\n" $username 424 | printf "https://www.badoo.com/en/%s\n" $username >> output.txt 425 | fi 426 | 427 | # Patreon 428 | 429 | printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Patreon: \e[0m" 430 | check1=$(curl -s -i "https://www.patreon.com/$username" -H "Accept-Language: en" -L | grep -o 'HTTP/2 404' ; echo $?) 431 | 432 | if [[ $check1 == *'0'* ]] ; then 433 | printf "\e[1;93mNot Found!\e[0m\n" 434 | elif [[ $check1 == *'1'* ]]; then 435 | 436 | printf "\e[1;92m Found!\e[0m https://www.patreon.com/%s\n" $username 437 | printf "https://www.patreon.com/%s\n" $username >> output.txt 438 | fi 439 | 440 | ## BitBucket 441 | 442 | printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] BitBucket: \e[0m" 443 | check1=$(curl -s -i "https://bitbucket.org/$username" -H "Accept-Language: en" -L | grep -o 'HTTP/2 404' ; echo $?) 444 | 445 | if [[ $check1 == *'0'* ]] ; then 446 | printf "\e[1;93mNot Found!\e[0m\n" 447 | elif [[ $check1 == *'1'* ]]; then 448 | 449 | printf "\e[1;92m Found!\e[0m https://bitbucket.org/%s\n" $username 450 | printf "https://bitbucket.org/%s\n" $username >> output.txt 451 | fi 452 | 453 | ## DailyMotion 454 | 455 | printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] DailyMotion: \e[0m" 456 | check1=$(curl -s -i "https://www.dailymotion.com/$username" -H "Accept-Language: en" -L | grep -o '404 Not Found' ; echo $?) 457 | 458 | if [[ $check1 == *'0'* ]] ; then 459 | printf "\e[1;93mNot Found!\e[0m\n" 460 | elif [[ $check1 == *'1'* ]]; then 461 | 462 | printf "\e[1;92m Found!\e[0m https://www.dailymotion.com/%s\n" $username 463 | printf "https://www.dailymotion.com/%s\n" $username >> output.txt 464 | fi 465 | 466 | ## Etsy 467 | 468 | printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Etsy: \e[0m" 469 | check1=$(curl -s -i "https://www.etsy.com/shop/$username" -H "Accept-Language: en" -L | grep -o 'HTTP/2 404' ; echo $?) 470 | 471 | if [[ $check1 == *'0'* ]] ; then 472 | printf "\e[1;93mNot Found!\e[0m\n" 473 | elif [[ $check1 == *'1'* ]]; then 474 | 475 | printf "\e[1;92m Found!\e[0m https://www.etsy.com/shop/%s\n" $username 476 | printf "https://www.etsy.com/shop/%s\n" $username >> output.txt 477 | fi 478 | 479 | ## CashMe 480 | 481 | printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] CashMe: \e[0m" 482 | check1=$(curl -s -i "https://cash.me/$username" -H "Accept-Language: en" -L | grep -o '404 Not Found'; echo $?) 483 | 484 | if [[ $check1 == *'0'* ]] ; then 485 | printf "\e[1;93mNot Found!\e[0m\n" 486 | elif [[ $check1 == *'1'* ]]; then 487 | 488 | printf "\e[1;92m Found!\e[0m https://cash.me/%s\n" $username 489 | printf "https://cash.me/%s\n" $username >> output.txt 490 | fi 491 | 492 | ## Behance 493 | 494 | printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Behance: \e[0m" 495 | check1=$(curl -s -i "https://www.behance.net/$username" -H "Accept-Language: en" -L | grep -o '404 Not Found'; echo $?) 496 | 497 | if [[ $check1 == *'0'* ]] ; then 498 | printf "\e[1;93mNot Found!\e[0m\n" 499 | elif [[ $check1 == *'1'* ]]; then 500 | 501 | printf "\e[1;92m Found!\e[0m https://www.behance.net/%s\n" $username 502 | printf "https://www.behance.net/%s\n" $username >> output.txt 503 | fi 504 | 505 | ## GoodReads 506 | 507 | printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] GoodReads: \e[0m" 508 | check1=$(curl -s -i "https://www.goodreads.com/$username" -H "Accept-Language: en" -L | grep -o '404 Not Found' ; echo $?) 509 | 510 | if [[ $check1 == *'0'* ]] ; then 511 | printf "\e[1;93mNot Found!\e[0m\n" 512 | elif [[ $check1 == *'1'* ]]; then 513 | 514 | printf "\e[1;92m Found!\e[0m https://www.goodreads.com/%s\n" $username 515 | printf "https://www.goodreads.com/%s\n" $username >> output.txt 516 | fi 517 | 518 | ## Instructables 519 | 520 | printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Instructables: \e[0m" 521 | check1=$(curl -s -i "https://www.instructables.com/member/$username" -H "Accept-Language: en" -L | grep -o '404 NOT FOUND' ; echo $?) 522 | 523 | if [[ $check1 == *'0'* ]] ; then 524 | printf "\e[1;93mNot Found!\e[0m\n" 525 | elif [[ $check1 == *'1'* ]]; then 526 | 527 | printf "\e[1;92m Found!\e[0m https://www.instructables.com/member/%s\n" $username 528 | printf "https://www.instructables.com/member/%s\n" $username >> output.txt 529 | fi 530 | 531 | ## KeyBase 532 | 533 | printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Keybase: \e[0m" 534 | check1=$(curl -s -i "https://keybase.io/$username" -H "Accept-Language: en" -L | grep -o '404 Not Found' ; echo $?) 535 | 536 | if [[ $check1 == *'0'* ]] ; then 537 | printf "\e[1;93mNot Found!\e[0m\n" 538 | elif [[ $check1 == *'1'* ]]; then 539 | 540 | printf "\e[1;92m Found!\e[0m https://keybase.io/%s\n" $username 541 | printf "https://keybase.io/%s\n" $username >> output.txt 542 | fi 543 | 544 | ## Kongregate 545 | 546 | printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Kongregate: \e[0m" 547 | check1=$(curl -s -i "https://kongregate.com/accounts/$username" -H "Accept-Language: en" -L | grep -o '404 Not Found' ; echo $?) 548 | 549 | if [[ $check1 == *'0'* ]] ; then 550 | printf "\e[1;93mNot Found!\e[0m\n" 551 | elif [[ $check1 == *'1'* ]]; then 552 | 553 | printf "\e[1;92m Found!\e[0m https://kongregate.com/accounts/%s\n" $username 554 | printf "https://kongregate.com/accounts/%s\n" $username >> output.txt 555 | fi 556 | 557 | ## Livejournal 558 | 559 | printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] LiveJournal: \e[0m" 560 | check1=$(curl -s -i "https://$username.livejournal.com" -H "Accept-Language: en" -L | grep -o '404 Not Found' ; echo $?) 561 | 562 | if [[ $check1 == *'0'* ]] ; then 563 | printf "\e[1;93mNot Found!\e[0m\n" 564 | elif [[ $check1 == *'1'* ]]; then 565 | 566 | printf "\e[1;92m Found!\e[0m https://%s.livejournal.com\n" $username 567 | printf "https://%s.livejournal.com\n" $username >> output.txt 568 | fi 569 | 570 | ## AngelList 571 | 572 | printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] AngelList: \e[0m" 573 | check1=$(curl -s -i "https://angel.co/$username" -H "Accept-Language: en" -L | grep -o '404 Not Found' ; echo $?) 574 | 575 | if [[ $check1 == *'0'* ]] ; then 576 | printf "\e[1;93mNot Found!\e[0m\n" 577 | elif [[ $check1 == *'1'* ]]; then 578 | 579 | printf "\e[1;92m Found!\e[0m https://angel.co/%s\n" $username 580 | printf "https://angel.co/%s\n" $username >> output.txt 581 | fi 582 | 583 | ## Last.fm 584 | 585 | printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] last.fm: \e[0m" 586 | check1=$(curl -s -i "https://last.fm/user/$username" -H "Accept-Language: en" -L | grep -o 'HTTP/2 404' ; echo $?) 587 | 588 | if [[ $check1 == *'0'* ]] ; then 589 | printf "\e[1;93mNot Found!\e[0m\n" 590 | elif [[ $check1 == *'1'* ]]; then 591 | 592 | printf "\e[1;92m Found!\e[0m https://last.fm/user/%s\n" $username 593 | printf "https://last.fm/user/%s\n" $username >> output.txt 594 | fi 595 | 596 | ## Dribbble 597 | 598 | printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Dribbble: \e[0m" 599 | check1=$(curl -s -i "https://dribbble.com/$username" -H "Accept-Language: en" -L | grep -o 'HTTP/2 404' ; echo $?) 600 | 601 | if [[ $check1 == *'0'* ]] ; then 602 | printf "\e[1;93mNot Found!\e[0m\n" 603 | elif [[ $check1 == *'1'* ]]; then 604 | 605 | printf "\e[1;92m Found!\e[0m https://dribbble.com/%s\n" $username 606 | printf "https://dribbble.com/%s\n" $username >> output.txt 607 | fi 608 | 609 | ## Codecademy 610 | 611 | printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Codecademy: \e[0m" 612 | check1=$(curl -s -i "https://www.codecademy.com/$username" -H "Accept-Language: en" -L | grep -o 'HTTP/2 404' ; echo $?) 613 | 614 | if [[ $check1 == *'0'* ]] ; then 615 | printf "\e[1;93mNot Found!\e[0m\n" 616 | elif [[ $check1 == *'1'* ]]; then 617 | 618 | printf "\e[1;92m Found!\e[0m https://www.codecademy.com/%s\n" $username 619 | printf "https://www.codecademy.com/%s\n" $username >> output.txt 620 | fi 621 | 622 | ## Gravatar 623 | 624 | printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Gravatar: \e[0m" 625 | check1=$(curl -s -i "https://en.gravatar.com/$username" -H "Accept-Language: en" -L | grep -o 'HTTP/2 404' ; echo $?) 626 | 627 | if [[ $check1 == *'0'* ]] ; then 628 | printf "\e[1;93mNot Found!\e[0m\n" 629 | elif [[ $check1 == *'1'* ]]; then 630 | 631 | printf "\e[1;92m Found!\e[0m https://en.gravatar.com/%s\n" $username 632 | printf "https://en.gravatar.com/%s\n" $username >> output.txt 633 | fi 634 | 635 | ## Pastebin 636 | 637 | printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Pastebin: \e[0m" 638 | check1=$(curl -s -i "https://pastebin.com/u/$username" -H "Accept-Language: en" -L --user-agent '"Mozilla/5.0 (X11; U; Linux i686; en-US; rv:0.9.3) Gecko/20010801"' | grep -o 'location: /index' ; echo $?) 639 | 640 | if [[ $check1 == *'0'* ]] ; then 641 | printf "\e[1;93mNot Found!\e[0m\n" 642 | elif [[ $check1 == *'1'* ]]; then 643 | 644 | printf "\e[1;92m Found!\e[0m https://pastebin.com/u/%s\n" $username 645 | printf "https://pastebin.com/u/%s\n" $username >> output.txt 646 | fi 647 | 648 | ## Foursquare 649 | 650 | printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Foursquare: \e[0m" 651 | check1=$(curl -s -i "https://foursquare.com/$username" -H "Accept-Language: en" -L | grep -o '404 Not Found' ; echo $?) 652 | 653 | if [[ $check1 == *'0'* ]] ; then 654 | printf "\e[1;93mNot Found!\e[0m\n" 655 | elif [[ $check1 == *'1'* ]]; then 656 | 657 | printf "\e[1;92m Found!\e[0m https://foursquare.com/%s\n" $username 658 | printf "https://foursquare.com/%s\n" $username >> output.txt 659 | fi 660 | 661 | ## Roblox 662 | 663 | printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Roblox: \e[0m" 664 | check1=$(curl -s -i "https://www.roblox.com/user.aspx?username=$username" -H "Accept-Language: en" -L | grep -o '404 Not Found' ; echo $?) 665 | 666 | if [[ $check1 == *'0'* ]] ; then 667 | printf "\e[1;93mNot Found!\e[0m\n" 668 | elif [[ $check1 == *'1'* ]]; then 669 | 670 | printf "\e[1;92m Found!\e[0m https://www.roblox.com/user.aspx?username=%s\n" $username 671 | printf "https://www.roblox.com/user.aspx?username=%s\n" $username >> output.txt 672 | fi 673 | 674 | ## Gumroad 675 | 676 | printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Gumroad: \e[0m" 677 | check1=$(curl -s -i "https://www.gumroad.com/$username" -H "Accept-Language: en" -L | grep -o '404 Not Found' ; echo $?) 678 | 679 | if [[ $check1 == *'0'* ]] ; then 680 | printf "\e[1;93mNot Found!\e[0m\n" 681 | elif [[ $check1 == *'1'* ]]; then 682 | 683 | printf "\e[1;92m Found!\e[0m https://www.gumroad.com/%s\n" $username 684 | printf "https://www.gumroad.com/%s\n" $username >> output.txt 685 | fi 686 | 687 | ## Newgrounds 688 | 689 | printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Newgrounds: \e[0m" 690 | check1=$(curl -s -i "https://$username.newgrounds.com" -H "Accept-Language: en" -L | grep -o 'HTTP/2 404 ' ; echo $?) 691 | 692 | if [[ $check1 == *'0'* ]] ; then 693 | printf "\e[1;93mNot Found!\e[0m\n" 694 | elif [[ $check1 == *'1'* ]]; then 695 | 696 | printf "\e[1;92m Found!\e[0m https://%s.newgrounds.com\n" $username 697 | printf "https://%s.newgrounds.com\n" $username >> output.txt 698 | fi 699 | 700 | ## Wattpad 701 | 702 | printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Wattpad: \e[0m" 703 | check1=$(curl -s -i "https://www.wattpad.com/user/$username" -H "Accept-Language: en" -L | grep -o 'HTTP/2 404 ' ; echo $?) 704 | 705 | if [[ $check1 == *'0'* ]] ; then 706 | printf "\e[1;93mNot Found!\e[0m\n" 707 | elif [[ $check1 == *'1'* ]]; then 708 | 709 | printf "\e[1;92m Found!\e[0m https://www.wattpad.com/user/%s\n" $username 710 | printf "https://www.wattpad.com/user/%s\n" $username >> output.txt 711 | fi 712 | 713 | ## Canva 714 | 715 | printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Canva: \e[0m" 716 | check1=$(curl -s -i "https://www.canva.com/$username" -H "Accept-Language: en" -L | grep -o 'HTTP/2 404 ' ; echo $?) 717 | 718 | if [[ $check1 == *'0'* ]] ; then 719 | printf "\e[1;93mNot Found!\e[0m\n" 720 | elif [[ $check1 == *'1'* ]]; then 721 | 722 | printf "\e[1;92m Found!\e[0m https://www.canva.com/%s\n" $username 723 | printf "https://www.canva.com/%s\n" $username >> output.txt 724 | fi 725 | 726 | ## CreativeMarket 727 | 728 | printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] CreativeMarket: \e[0m" 729 | check1=$(curl -s -i "https://creativemarket.com/$username" -H "Accept-Language: en" -L | grep -o '404eef72' ; echo $?) 730 | 731 | if [[ $check1 == *'0'* ]] ; then 732 | printf "\e[1;93mNot Found!\e[0m\n" 733 | elif [[ $check1 == *'1'* ]]; then 734 | 735 | printf "\e[1;92m Found!\e[0m https://creativemarket.com/%s\n" $username 736 | printf "https://creativemarket.com/%s\n" $username >> output.txt 737 | fi 738 | 739 | ## Trakt 740 | 741 | printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Trakt: \e[0m" 742 | check1=$(curl -s -i "https://www.trakt.tv/users/$username" -H "Accept-Language: en" -L | grep -o 'HTTP/2 404 ' ; echo $?) 743 | 744 | if [[ $check1 == *'0'* ]] ; then 745 | printf "\e[1;93mNot Found!\e[0m\n" 746 | elif [[ $check1 == *'1'* ]]; then 747 | 748 | printf "\e[1;92m Found!\e[0m https://www.trakt.tv/users/%s\n" $username 749 | printf "https://www.trakt.tv/users/%s\n" $username >> output.txt 750 | fi 751 | 752 | ## 500px 753 | 754 | printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] 500px: \e[0m" 755 | check1=$(curl -s -i "https://500px.com/$username" -H "Accept-Language: en" -L | grep -o '404 Not Found' ; echo $?) 756 | 757 | if [[ $check1 == *'0'* ]] ; then 758 | printf "\e[1;93mNot Found!\e[0m\n" 759 | elif [[ $check1 == *'1'* ]]; then 760 | 761 | printf "\e[1;92m Found!\e[0m https://500px.com/%s\n" $username 762 | printf "https://500px.com/%s\n" $username >> output.txt 763 | fi 764 | 765 | ## Buzzfeed 766 | 767 | printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Buzzfeed: \e[0m" 768 | check1=$(curl -s -i "https://buzzfeed.com/$username" -H "Accept-Language: en" -L | grep -o 'HTTP/2 404' ; echo $?) 769 | 770 | if [[ $check1 == *'0'* ]] ; then 771 | printf "\e[1;93mNot Found!\e[0m\n" 772 | elif [[ $check1 == *'1'* ]]; then 773 | 774 | printf "\e[1;92m Found!\e[0m https://buzzfeed.com/%s\n" $username 775 | printf "https://buzzfeed.com/%s\n" $username >> output.txt 776 | fi 777 | 778 | ## TripAdvisor 779 | 780 | printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] TripAdvisor: \e[0m" 781 | check1=$(curl -s -i "https://tripadvisor.com/members/$username" -H "Accept-Language: en" -L | grep -o 'HTTP/2 404' ; echo $?) 782 | 783 | if [[ $check1 == *'0'* ]] ; then 784 | printf "\e[1;93mNot Found!\e[0m\n" 785 | elif [[ $check1 == *'1'* ]]; then 786 | 787 | printf "\e[1;92m Found!\e[0m https://tripadvisor.com/members/%s\n" $username 788 | printf "https://tripadvisor.com/members/%s\n" $username >> output.txt 789 | fi 790 | 791 | ## HubPages 792 | 793 | printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] HubPages: \e[0m" 794 | check1=$(curl -s -i "https://$username.hubpages.com" -H "Accept-Language: en" -L | grep -o 'HTTP/2 404' ; echo $?) 795 | 796 | if [[ $check1 == *'0'* ]] ; then 797 | printf "\e[1;93mNot Found!\e[0m\n" 798 | elif [[ $check1 == *'1'* ]]; then 799 | 800 | printf "\e[1;92m Found!\e[0m https://%s.hubpages.com/\n" $username 801 | printf "https://%s.hubpages.com/\n" $username >> output.txt 802 | fi 803 | 804 | ## Contently 805 | 806 | printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Contently: \e[0m" 807 | check1=$(curl -s -i "https://$username.contently.com" -H "Accept-Language: en" -L | grep -o '404 Not Found' ; echo $?) 808 | 809 | if [[ $check1 == *'0'* ]] ; then 810 | printf "\e[1;93mNot Found!\e[0m\n" 811 | elif [[ $check1 == *'1'* ]]; then 812 | 813 | printf "\e[1;92m Found!\e[0m https://%s.contently.com\n" $username 814 | printf "https://%s.contently.com\n" $username >> output.txt 815 | fi 816 | 817 | ## Houzz 818 | 819 | printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Houzz: \e[0m" 820 | check1=$(curl -s -i "https://houzz.com/user/$username" -H "Accept-Language: en" -L | grep -o 'an error has occurred' ; echo $?) 821 | 822 | if [[ $check1 == *'0'* ]] ; then 823 | printf "\e[1;93mNot Found!\e[0m\n" 824 | elif [[ $check1 == *'1'* ]]; then 825 | 826 | printf "\e[1;92m Found!\e[0m https://houzz.com/user/%s\n" $username 827 | printf "https://houzz.com/user/%s\n" $username >> output.txt 828 | fi 829 | 830 | ## blip.fm 831 | 832 | printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] blip.fm: \e[0m" 833 | check1=$(curl -s -i "https://blip.fm/$username" -H "Accept-Language: en" -L | grep -o '404 Not Found' ; echo $?) 834 | 835 | if [[ $check1 == *'0'* ]] ; then 836 | printf "\e[1;93mNot Found!\e[0m\n" 837 | elif [[ $check1 == *'1'* ]]; then 838 | 839 | printf "\e[1;92m Found!\e[0m https://blip.fm/%s\n" $username 840 | printf "https://blip.fm/%s\n" $username >> output.txt 841 | fi 842 | 843 | ## Wikipedia 844 | 845 | printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Wikipedia: \e[0m" 846 | check1=$(curl -s -i "https://www.wikipedia.org/wiki/User:$username" -H "Accept-Language: en" -L | grep -o 'HTTP/2 404' ; echo $?) 847 | 848 | if [[ $check1 == *'0'* ]] ; then 849 | printf "\e[1;93mNot Found!\e[0m\n" 850 | elif [[ $check1 == *'1'* ]]; then 851 | 852 | printf "\e[1;92m Found!\e[0m https://www.wikipedia.org/wiki/User:%s\n" $username 853 | printf "https://www.wikipedia.org/wiki/User:%s\n" $username >> output.txt 854 | fi 855 | 856 | ## HackerNews 857 | 858 | printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] HackerNews: \e[0m" 859 | check1=$(curl -s -i "https://news.ycombinator.com/user?id=$username" -H "Accept-Language: en" -L | grep -o 'No such user' ; echo $?) 860 | 861 | if [[ $check1 == *'0'* ]] ; then 862 | printf "\e[1;93mNot Found!\e[0m\n" 863 | elif [[ $check1 == *'1'* ]]; then 864 | 865 | printf "\e[1;92m Found!\e[0m https://news.ycombinator.com/user?id=%s\n" $username 866 | printf "https://news.ycombinator.com/user?id=%s\n" $username >> output.txt 867 | fi 868 | 869 | ## CodeMentor 870 | 871 | printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] CodeMentor: \e[0m" 872 | check1=$(curl -s -i "https://www.codementor.io/$username" -H "Accept-Language: en" -L | grep -o 'HTTP/2 404\|404 Not Found' ; echo $?) 873 | 874 | if [[ $check1 == *'0'* ]] ; then 875 | printf "\e[1;93mNot Found!\e[0m\n" 876 | elif [[ $check1 == *'1'* ]]; then 877 | 878 | printf "\e[1;92m Found!\e[0m https://www.codementor.io/%s\n" $username 879 | printf "https://www.codementor.io/%s\n" $username >> output.txt 880 | fi 881 | 882 | ## ReverbNation 883 | 884 | printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] ReverbNation: \e[0m" 885 | check1=$(curl -s -i "https://www.reverbnation.com/$username" -H "Accept-Language: en" -L | grep -o 'HTTP/2 404\|404 Not Found' ; echo $?) 886 | 887 | if [[ $check1 == *'0'* ]] ; then 888 | printf "\e[1;93mNot Found!\e[0m\n" 889 | elif [[ $check1 == *'1'* ]]; then 890 | 891 | printf "\e[1;92m Found!\e[0m https://www.reverbnation.com/%s\n" $username 892 | printf "https://www.reverbnation.com/%s\n" $username >> output.txt 893 | fi 894 | 895 | ## Designspiration 65 896 | 897 | printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Designspiration: \e[0m" 898 | check1=$(curl -s -i "https://www.designspiration.net/$username" -H "Accept-Language: en" -L | grep -o 'HTTP/2 404\|404 Not Found' ; echo $?) 899 | 900 | if [[ $check1 == *'0'* ]] ; then 901 | printf "\e[1;93mNot Found!\e[0m\n" 902 | elif [[ $check1 == *'1'* ]]; then 903 | 904 | printf "\e[1;92m Found!\e[0m https://www.designspiration.net/%s\n" $username 905 | printf "https://www.designspiration.net/%s\n" $username >> output.txt 906 | fi 907 | 908 | ## Bandcamp 909 | 910 | printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Bandcamp: \e[0m" 911 | check1=$(curl -s -i "https://www.bandcamp.com/$username" -H "Accept-Language: en" -L | grep -o 'HTTP/2 404\|404 Not Found' ; echo $?) 912 | 913 | if [[ $check1 == *'0'* ]] ; then 914 | printf "\e[1;93mNot Found!\e[0m\n" 915 | elif [[ $check1 == *'1'* ]]; then 916 | 917 | printf "\e[1;92m Found!\e[0m https://www.bandcamp.com/%s\n" $username 918 | printf "https://www.bandcamp.com/%s\n" $username >> output.txt 919 | fi 920 | 921 | 922 | ## ColourLovers 923 | 924 | printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] ColourLovers: \e[0m" 925 | check1=$(curl -s -i "https://www.colourlovers.com/love/$username" -H "Accept-Language: en" -L | grep -o 'HTTP/2 404\|404 Not Found' ; echo $?) 926 | 927 | if [[ $check1 == *'0'* ]] ; then 928 | printf "\e[1;93mNot Found!\e[0m\n" 929 | elif [[ $check1 == *'1'* ]]; then 930 | 931 | printf "\e[1;92m Found!\e[0m https://www.colourlovers.com/love/%s\n" $username 932 | printf "https://www.colourlovers.com/love/%s\n" $username >> output.txt 933 | fi 934 | 935 | 936 | ## IFTTT 937 | 938 | printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] IFTTT: \e[0m" 939 | check1=$(curl -s -i "https://www.ifttt.com/p/$username" -H "Accept-Language: en" -L | grep -o 'HTTP/2 404\|404 Not Found' ; echo $?) 940 | 941 | if [[ $check1 == *'0'* ]] ; then 942 | printf "\e[1;93mNot Found!\e[0m\n" 943 | elif [[ $check1 == *'1'* ]]; then 944 | 945 | printf "\e[1;92m Found!\e[0m https://www.ifttt.com/p/%s\n" $username 946 | printf "https://www.ifttt.com/p/%s\n" $username >> output.txt 947 | fi 948 | 949 | ## Ebay 950 | 951 | printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Ebay: \e[0m" 952 | check1=$(curl -s -i "https://www.ebay.com/usr/$username" -H "Accept-Language: en" -L | grep -o 'HTTP/2 404\|404 Not Found\|eBay Profile - error' ; echo $?) 953 | 954 | if [[ $check1 == *'0'* ]] ; then 955 | printf "\e[1;93mNot Found!\e[0m\n" 956 | elif [[ $check1 == *'1'* ]]; then 957 | 958 | printf "\e[1;92m Found!\e[0m https://www.ebay.com/usr/%s\n" $username 959 | printf "https://www.ebay.com/usr/%s\n" $username >> output.txt 960 | fi 961 | 962 | ## Slack 963 | 964 | printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Slack: \e[0m" 965 | check1=$(curl -s -i "https://$username.slack.com" -H "Accept-Language: en" -L | grep -o 'HTTP/2 404\|404 Not Found' ; echo $?) 966 | 967 | if [[ $check1 == *'0'* ]] ; then 968 | printf "\e[1;93mNot Found!\e[0m\n" 969 | elif [[ $check1 == *'1'* ]]; then 970 | 971 | printf "\e[1;92m Found!\e[0m https://%s.slack.com\n" $username 972 | printf "https://%s.slack.com\n" $username >> output.txt 973 | fi 974 | 975 | ## OkCupid 976 | 977 | printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] OkCupid: \e[0m" 978 | check1=$(curl -s -i "https://www.okcupid.com/profile/$username" -H "Accept-Language: en" -L | grep -o 'HTTP/2 404\|404 Not Found' ; echo $?) 979 | 980 | if [[ $check1 == *'0'* ]] ; then 981 | printf "\e[1;93mNot Found!\e[0m\n" 982 | elif [[ $check1 == *'1'* ]]; then 983 | 984 | printf "\e[1;92m Found!\e[0m https://www.okcupid.com/profile/%s\n" $username 985 | printf "https://www.okcupid.com/profile/%s\n" $username >> output.txt 986 | fi 987 | 988 | ## Trip 989 | 990 | printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Trip: \e[0m" 991 | check1=$(curl -s -i "https://www.trip.skyscanner.com/user/$username" -H "Accept-Language: en" -L | grep -o 'HTTP/2 404\|404 Not Found\|HTTP/2 410' ; echo $?) 992 | 993 | if [[ $check1 == *'0'* ]] ; then 994 | printf "\e[1;93mNot Found!\e[0m\n" 995 | elif [[ $check1 == *'1'* ]]; then 996 | 997 | printf "\e[1;92m Found!\e[0m https://www.trip.skyscanner.com/user/%s\n" $username 998 | printf "https://www.trip.skyscanner.com/user/%s\n" $username >> output.txt 999 | fi 1000 | 1001 | ## Ello 1002 | 1003 | printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Ello: \e[0m" 1004 | check1=$(curl -s -i "https://ello.co/$username" -H "Accept-Language: en" -L | grep -o 'HTTP/2 404\|404 Not Found' ; echo $?) 1005 | 1006 | if [[ $check1 == *'0'* ]] ; then 1007 | printf "\e[1;93mNot Found!\e[0m\n" 1008 | elif [[ $check1 == *'1'* ]]; then 1009 | 1010 | printf "\e[1;92m Found!\e[0m https://ello.co/%s\n" $username 1011 | printf "https://ello.co/%s\n" $username >> output.txt 1012 | fi 1013 | 1014 | ## Tracky 1015 | 1016 | printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Tracky: \e[0m" 1017 | check1=$(curl -s -i "https://tracky.com/user/$username" -H "Accept-Language: en" -L | grep -o 'profile:username' ; echo $?) 1018 | 1019 | if [[ $check1 == *'1'* ]] ; then 1020 | printf "\e[1;93mNot Found!\e[0m\n" 1021 | elif [[ $check1 == *'0'* ]]; then 1022 | 1023 | printf "\e[1;92m Found!\e[0m https://tracky.com/~%s\n" $username 1024 | printf "https://tracky.com/~%s\n" $username >> output.txt 1025 | fi 1026 | 1027 | ## Tripit 1028 | 1029 | printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Tripit: \e[0m" 1030 | check1=$(curl -s -i "https://www.tripit.com/people/$username#/profile/basic-info" -H "Accept-Language: en" -L | grep -o 'location: https://www.tripit.com/home' ; echo $?) 1031 | 1032 | if [[ $check1 == *'0'* ]] ; then 1033 | printf "\e[1;93mNot Found!\e[0m\n" 1034 | elif [[ $check1 == *'1'* ]]; then 1035 | 1036 | printf "\e[1;92m Found!\e[0m https://www.tripit.com/people/%s#/profile/basic-info\n" $username 1037 | printf "https://www.tripit.com/people/%s#/profile/basic-info\n" $username >> output.txt 1038 | fi 1039 | 1040 | ## Basecamp 1041 | 1042 | printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Basecamp: \e[0m" 1043 | check1=$(curl -s -i "https://$username.basecamphq.com/login" -H "Accept-Language: en" -L | grep -o 'HTTP/2 404\|404 Not Found' ; echo $?) 1044 | 1045 | if [[ $check1 == *'0'* ]] ; then 1046 | printf "\e[1;93mNot Found!\e[0m\n" 1047 | elif [[ $check1 == *'1'* ]]; then 1048 | 1049 | printf "\e[1;92m Found!\e[0m https://%s.basecamphq.com/login\n" $username 1050 | printf "https://%s.basecamphq.com/login\n" $username >> output.txt 1051 | 1052 | fi 1053 | partial 1054 | } 1055 | banner 1056 | scanner 1057 | 1058 | --------------------------------------------------------------------------------