Advertisement
Guest User

Untitled

a guest
Oct 30th, 2019
305
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 20.29 KB | None | 0 0
  1. <?php
  2. session_start();
  3. if(empty($_SESSION['token']))
  4. {
  5. header('Location: sign.php');
  6. exit(0);
  7. }
  8. date_default_timezone_set( 'Europe/Paris' );
  9.  
  10. if(isset(parse_url($_SERVER["REQUEST_URI"])["query"]))
  11. {
  12. parse_str(parse_url($_SERVER["REQUEST_URI"])["query"], $node);
  13. if(isset($node["follow"]))
  14. {
  15. header("Location: " . $node["follow"]);
  16. }
  17. }
  18.  
  19. if(isset($_GET["lang"]))
  20. {
  21. $_SESSION["Lang"] = $_GET["lang"];
  22. }
  23.  
  24. if(!isset($_SESSION["Lang"]))
  25. {
  26. $_SESSION["Lang"] = "fr";
  27. }
  28.  
  29. if(isset($_POST["changelang"]))
  30. {
  31. $_SESSION["Lang"] = $_POST["lang"];
  32. }
  33.  
  34. require_once "resources/i18n.class.php";
  35. $i18n = new i18n('resources/lang/lang_{LANGUAGE}.ini', 'resources/langcache/', 'en');
  36. $i18n->setFallbackLang('en');
  37. $i18n->setForcedLang($_SESSION["Lang"]) ;
  38. $i18n->init();
  39.  
  40. if(!isset($_SESSION["Form"]["effect"]))
  41. {
  42. $_SESSION["Form"]["effect"] = 0;
  43. }
  44.  
  45. $_SESSION["bypass"] = false;
  46.  
  47.  
  48. if(basename($_SERVER['REQUEST_URI']) !="")
  49. {
  50. $page = basename($_SERVER['REQUEST_URI']);
  51. }
  52. else
  53. {
  54. $page = "default";
  55. }
  56.  
  57.  
  58. ?><!DOCTYPE html>
  59. <html lang="en">
  60. <!--
  61. _____ _____ _
  62. / ___| | __ \ | |
  63. \ `--. ___ __ _ _ __ | | \/ ___ _ __ ___ _ __ __ _| |_ ___ _ __
  64. `--. \/ __/ _` | '_ \ | | __ / _ \ '_ \ / _ \ '__/ _` | __/ _ \| '__|
  65. /\__/ / (_| (_| | | | | | |_\ \ __/ | | | __/ | | (_| | || (_) | |
  66. \____/ \___\__,_|_| |_| \____/\___|_| |_|\___|_| \__,_|\__\___/|_|
  67.  
  68. Forever here.
  69. -->
  70. <head>
  71. <?php
  72. if(isset($_GET["goto"]))
  73. {
  74. echo '<meta http-equiv="refresh" content="1; url=mon-panier">';
  75. }
  76.  
  77. if(isset($_GET["product"]))
  78. {
  79. $product = $_GET["product"];
  80. }
  81.  
  82. if ($page=="payment") {
  83.  
  84. $_SESSION["bypass"] = true;
  85. if(isset($_POST["uid"]))
  86. {
  87. $_SESSION["Command"][$_POST["uid"]]["valid"] = true;
  88. $_SESSION["final_address"] = $btc_address;
  89. }
  90. if(isset($_GET["action"]))
  91. {
  92. switch($_GET["action"])
  93. {
  94. case "remove":
  95. unset($_SESSION["Command"][$_GET["id"]]);
  96. break;
  97. }
  98. }
  99.  
  100. $totalEUR = 0;
  101. $totalBTC = 0;
  102. $iterator = 0;
  103. }
  104. ?>
  105. <meta charset="utf-8">
  106. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  107. <meta name="viewport" content="width=device-width, initial-scale=1">
  108.  
  109. <title><?php echo L::title; ?> // Générateur de faux documents </title>
  110. <link rel="stylesheet" type="text/css" href="resources/css/bootstrap.min.css" />
  111. <link rel="stylesheet" type="text/css" href="resources/css/font-awesome.min.css" />
  112. <link rel="stylesheet" href="resources/css/app/app.v1.css" />
  113. <link rel="stylesheet" type="text/css" href="resources/css/style.css" />
  114.  
  115. <link href='https://fonts.googleapis.com/css?family=Open+Sans:400,300,600|Raleway:400,500,600,700,300' rel='stylesheet' type='text/css' />
  116. <link href="static/favicon.png" rel="icon" type="image/png" />
  117.  
  118. </head>
  119. <body data-ng-app>
  120. <?php
  121. if(isset($_SERVER["HTTP_X_TOR2WEB"]))
  122. {
  123. echo L::tor;
  124. }
  125. ?>
  126. <aside class="left-panel">
  127.  
  128. <div class="user text-center">
  129.  
  130. <p><a href="/"><img src="static/favicon.png" class="img-rounded" alt="...">
  131. </a></p>
  132. <p>&nbsp;</p>
  133. <a href="/">
  134. <h4 class="user-name">Accueil Autoscan<sup><small></small></sup></h4>
  135. <p>&nbsp;</p>
  136. </a>
  137.  
  138. <div class="dropdown user-login">
  139. <form action="" method="post" style='margin-bottom:0px;'>
  140. <input type="hidden" name="changelang" value="true">
  141. <?php
  142. if($_SESSION["Lang"] == "fr")
  143. {
  144. ?>
  145. <button class="btn btn-xs dropdown-toggle btn-rounded" type="button" data-toggle="dropdown" aria-expanded="true">
  146. <img src="static/fr.png" class="lang-choose" /> Français <i class="fa fa-angle-down"></i>
  147. </button>
  148. <ul class="dropdown-menu" role="menu" aria-labelledby="dropdownMenu1"></ul>
  149. <ul class="dropdown-menu" role="menu" aria-labelledby="dropdownMenu1"></ul>
  150. <?php
  151. }
  152. ?>
  153. </form>
  154. </div>
  155. </div>
  156. <nav class="navigation">
  157. <ul class="list-unstyled">
  158. <li id="identity" class="has-submenu <?php if($page == "cni2" or $page == "cni" or $page == "decla" or $page == "passeport" or $page == "usapc" or $page == "vitale" or $page == "pdc") {echo 'active';} ?>"><a href="#identity"><i class="fa fa-user"></i> <span class="nav-label"><?php echo L::menu_identity; ?> <sup><small>New</small></sup></span></a>
  159. <ul class="list-unstyled">
  160. <li><a href="cni2"><?php echo L::menu_cni2; ?> <sup><small>New</small></sup></a></li>
  161. <li><a href="cni"><?php echo L::menu_cni; ?> <sup><small>New</small></sup></a></li>
  162. <li><a href="passeport"><?php echo L::menu_passeport; ?>
  163. <sup><small>New</small></sup></a></li>
  164. <li><a href="usapc"><?php echo L::menu_usapc; ?> <sup><small></small></sup></a></li>
  165. <li><a href="decla"><?php echo L::menu_decla; ?> <sup><small></small></sup></a></li>
  166. <li><a href="pdc"><?php echo L::menu_drive; ?> <sup><small></small></sup></a></li>
  167. <li><a href="vitale"><?php echo L::menu_vitale; ?> <sup><small></small></sup></a>
  168. </li>
  169. </ul>
  170. </li>
  171. <li id="address" class="has-submenu <?php if($page == "edf" or $page == "dengy" or $page == "free") {echo 'active';} ?>"><a href="#address"><i class="fa fa-home"></i> <span class="nav-label"><?php echo L::menu_address; ?> <sup><small></small></sup></span></a>
  172. <ul class="list-unstyled">
  173. <li><a href="edf"><?php echo L::menu_edf; ?></a></li>
  174. <li><a href="free"><?php echo L::menu_facturefree; ?> <sup><small></small></sup></a></li>
  175. <li><a href="dengy"><?php echo L::menu_den; ?> <sup><small></small></sup></a></li>
  176. </ul>
  177. </li>
  178. <li id="vehicule" class="has-submenu <?php if($page == "cng" or $page == "assurance" or $page == "cg") {echo 'active';} ?>"><a href="#vehicule"><i class="fa fa-home"></i> <span class="nav-label"><?php echo L::menu_vehicule; ?> <sup><small>New</small></sup></span></a>
  179. <ul class="list-unstyled">
  180. <li><a href="cng"><?php echo L::menu_cng; ?> <sup><small>New</small></sup></a></li>
  181. <li><a href="assurance"><?php echo L::menu_assurance; ?> <sup><small>New</small></sup></a></li>
  182. <li><a href="cg"><?php echo L::menu_cg; ?> <sup><small>New</small></sup></a></li>
  183. </ul>
  184. </li>
  185. <li class="<?php if($page == "fdp") {echo 'active';} ?>"><a href="fdp"><i class="fa fa-file-text-o"></i> <span class="nav-label"><?php echo L::menu_payslip; ?></span></a></li>
  186. <li class="<?php if($page == "rib") {echo 'active';} ?>"><a href="rib"><i class="fa fa-bank"></i> <span class="nav-label"><?php echo L::menu_rib; ?></span></a></li>
  187. <li id="cc" class="has-submenu <?php if($page == "cc_visa_classic" or $page == "cc_visa_premier" or $page == "cc_visa_infinite") {echo 'active';} ?>"><a href="#cc"><i class="fa fa-credit-card"></i> <span class="nav-label"><?php echo L::menu_creditcard; ?> <sup><small></small></sup></span></a>
  188. <ul class="list-unstyled">
  189. <li><a href="visa-classic"><?php echo L::menu_visaclassic; ?> <sup><small></small></sup></a></li>
  190. <li><a href="visa-premier"><?php echo L::menu_visapremier; ?> <sup><small></small></sup></a></li>
  191. <li><a href="visa-infinite"><?php echo L::menu_visainfinite; ?> <sup><small></small></sup></a></li>
  192. </ul>
  193. </li>
  194. <li id="other" class="has-submenu <?php if($page == "darty" or $page == "bac" or $page == "kbis" or $page == "bts" or $page == "dut") {echo 'active';}?>"><a href="#other"><i class="fa fa-list"></i> <span class="nav-label"><?php echo L::menu_other; ?> <sup><small>New</small></sup></span></a>
  195. <ul class="list-unstyled">
  196. <li><a href="bac"><?php echo L::menu_bac; ?></a></li>
  197. <li><a href="darty"><?php echo L::menu_darty; ?></a></li>
  198. <li><a href="kbis"><?php echo L::menu_kbis; ?> <sup><small>New</small></sup></a></li>
  199. <li class="notactive"><a href="#"><?php echo L::menu_bts; ?></a></li>
  200. <li class="notactive"><a href="#"><?php echo L::menu_dut; ?></a></li>
  201. <li class="notactive"><a href="#"><?php echo L::menu_absence; ?></a></li>
  202. <li class="notactive"><a href="bac"><?php echo L::menu_prescription; ?></a></li>
  203. <li>&nbsp;</li>
  204. <li>&nbsp;</li>
  205. </ul>
  206. </li>
  207. <li class="<?php if($page == "feeds") {echo 'active';} ?>"><a href="feed"><i class="fa fa-user"></i> <span class="nav-label"><font color="#9BBB59"><?php echo L::menu_feeds; ?></font></span></a></li>
  208. <li class="<?php if($page == "faq") {echo 'active';} ?>"><a href="faq"><i class="fa fa-user"></i> <span class="nav-label"><font color="#00B0F0"><?php echo L::menu_faq; ?></font></span></a></li>
  209. </ul>
  210.  
  211. <center>
  212.  
  213. <form action="index.php" method="GET">
  214. <select name="follow">
  215. <option value="about">Accueil</option>
  216. <option></option>
  217. <option value="cni2">Carte d'identité Effet Normal</option>
  218. <option value="cni">Carte d'identité Effet Usé</option>
  219. <option value="decla">Déclaration perte CNI</option>
  220. <option value="pdc">Permis de conduire</option>
  221. <option value="passeport">Passeport FR</option>
  222. <option value="edf">Facture EDF</option>
  223. <option value="free">Facture Free</option>
  224. <option value="dengy">Facture Direct Energie</option>
  225. <option value="cng">Certificat de Non Gage</option>
  226. <option value="assurance">Attestation d'Assurance</option>
  227. <option value="cg">Carte Grise Auto</option>
  228. <option value="fdp">Fiche de Paie</option>
  229. <option value="cc_visa_classic">Carte Bancaire Visa Classic</option>
  230. <option value="cc_visa_premier">Carte Bancaire Visa Premier</option>
  231. <option value="cc_visa_infinite">Carte Bancaire Visa Infinite</option>
  232. <option value="rib">Relevé d'Identité Bancaire</option>
  233. <option value="bac">Diplôme du Baccalauréat</option>
  234. <option value="bts">Diplôme du BTS</option> -->
  235. <option value="vitale">Carte Vitale</option>
  236. <option value="darty">Facture Darty</option>
  237. <option value="kbis">Extrait Kbis</option>
  238. </select>
  239. <input id="gow" type="submit" value="Go" />
  240. </form>
  241.  
  242. </center>
  243. </nav>
  244. </aside>
  245. <section class="content">
  246. <header class="top-head container-fluid">
  247. <!-- <button type="button" class="navbar-toggle pull-left">
  248. <span class="sr-only">Toggle navigation</span>
  249. <span class="icon-bar"></span>
  250. <span class="icon-bar"></span>
  251. <span class="icon-bar"></span>
  252. </button> -->
  253. <nav class=" navbar-default hidden-xs" role="navigation">
  254. <ul class="nav navbar-nav">
  255. <li>
  256. <div align="right">
  257. <div align="left"><a><img src="static/titre.png"></a></div>
  258. </div>
  259. </li>
  260. </ul>
  261. <ul class="nav-toolbar">
  262. <?php
  263. //$data = file_get_contents("https://apirone.com/api/v1/ticker");
  264. $data = file_get_contents("https://blockchain.info/ticker");
  265. $respond = json_decode($data,true);
  266. $EUR = $respond["EUR"]["last"];
  267. echo '<p style=color:white;text-align:center;>';
  268. echo "1 ₿itcoin = ". $EUR ." €";
  269. echo '</p>';
  270. ?>
  271. </ul>
  272. </header>
  273. <div class="warper container-fluid">
  274. <?php
  275. switch($page)
  276. {
  277. case "cni2":
  278. include "content/cni2/index.php";
  279. break;
  280.  
  281. case "cni":
  282. include "content/cni/index.php";
  283. break;
  284.  
  285. case "decla":
  286. include "content/decla/index.php";
  287. break;
  288.  
  289. case "fdp":
  290. include "content/fdp/index.php";
  291. break;
  292.  
  293. case "edf":
  294. include "content/edf/index.php";
  295. break;
  296.  
  297. case "visa-classic":
  298. include "content/cc/visa/classic/index.php";
  299. break;
  300.  
  301. case "visa-premier":
  302. include "content/cc/visa/premier/index.php";
  303. break;
  304.  
  305. case "visa-infinite":
  306. include "content/cc/visa/infinite/index.php";
  307. break;
  308.  
  309. case "rib":
  310. include "content/rib/index.php";
  311. break;
  312.  
  313. case "vitale":
  314. include "content/vitale/index.php";
  315. break;
  316.  
  317. case "darty":
  318. include "content/darty/index.php";
  319. break;
  320.  
  321. case "kbis":
  322. include "content/kbis/index.php";
  323. break;
  324.  
  325. case "cng":
  326. include "content/cng/index.php";
  327. break;
  328.  
  329. case "assurance":
  330. include "content/assurance/index.php";
  331. break;
  332.  
  333. case "cg":
  334. include "content/cg/index.php";
  335. break;
  336.  
  337. case "free":
  338. include "content/free/index.php";
  339. break;
  340.  
  341. case "gallery":
  342. include "content/cni/index.php";
  343. break;
  344.  
  345. case "pdc":
  346. include "content/pdc/index.php";
  347. break;
  348.  
  349. case "bac":
  350. include "content/bac/index.php";
  351. break;
  352.  
  353. case "bts":
  354. include "content/bts/index.php";
  355. break;
  356.  
  357. case "dengy":
  358. include "content/dengy/index.php";
  359. break;
  360.  
  361. case "usapc":
  362. include "content/usapc/index.php";
  363. break;
  364.  
  365. case "passeport":
  366. include "content/passeport/index.php";
  367. break;
  368.  
  369. case "seller":
  370. include "content/seller.php";
  371. break;
  372.  
  373. case "sales":
  374. include "content/sales_tracking.php";
  375. break;
  376.  
  377. case "feed":
  378. include "content/feed/index.php";
  379. break;
  380.  
  381. case "faq":
  382. include "content/faq/index.php";
  383. break;
  384.  
  385. default:
  386. ?>
  387. <h1><?php echo L::construction_title; ?></h1>
  388. <p class="lead"><?php echo L::construction_description; ?></p>
  389. <p><?php
  390. break;
  391.  
  392. case "about":
  393. case "default":
  394. ?>
  395. </p>
  396. <p>&nbsp;</p>
  397. <div class="row">
  398. <div class="col-md-12">
  399. <ul>
  400. <h3 align="center"><span style="font-size:30pt; color:rgb(170,52,38);">B</span><span style="font-size:30pt; color:rgb(178,73,43);">i</span><span style="font-size:30pt; color:rgb(186,95,47);">e</span><span style="font-size:30pt; color:rgb(194,116,52);">n</span><span style="font-size:30pt; color:rgb(201,137,57);">v</span><span style="font-size:30pt; color:rgb(209,159,61);">e</span><span style="font-size:30pt; color:rgb(217,180,66);">n</span><span style="font-size:30pt; color:rgb(182,165,61);">u</span><span
  401. style="font-size:30pt;color:rgb(147,150,56);">e</span> <span style="font-size:30pt; color:rgb(111,136,52);">s</span><span style="font-size:30pt; color:rgb(76,121,47);"></span><span style="font-size:30pt; color:rgb(170,52,38);">u</span><span style="font-size:30pt; color:rgb(170,52,38);">r</span><span style="font-size:30pt; color:rgb(179,78,44);"> </span><span style="font-size:30pt; color:rgb(189,103,49);">l</span><span style="font-size:30pt; color:rgb(198,129,55);">'</span><span style="font-size:30pt; color:rgb(208,154,60);">A</span><span style="font-size:30pt; color:rgb(217,180,66);">u</span><span
  402. style="font-size:30pt; color:rgb(188,168,62);">t</span><span style="font-size:30pt; color:rgb(158,155,58);">o</span><span style="font-size:30pt; color:rgb(129,143,54);">s</span><span style="font-size:30pt; color:rgb(100,131,50);">c</span><span style="font-size:30pt; color:rgb(70,118,46);">a</span><span style="font-size:30pt; color:rgb(41,106,42);">n</span></h3><br>
  403.  
  404. <p align="center"><span style="font-size:11pt; color:rgb(108,106,106);">Vous venez de souscrire un abonnement à l'Autoscan, vous pouvez dés maintenant accéder à tous les articles de cet Autoscan pendant toute la durée de vôtre Abonnement.</span><br><br>
  405. </p>
  406. <h1 align="center"><div style="text-align:center; background-color:rgb(184,184,185); margin-bottom:2px; padding-top:0px; padding-right:1px; padding-bottom:0px; padding-left:1px; border-width:1px; border-color:white; border-style:solid;">
  407. <ul>
  408. <p align="center"><span style="font-size:11pt; color:rgb(170,52,38);">Prix :</span><span style="font-size:11pt;"> </span><span style="font-size:11pt; color:rgb(108,106,106);">10€ / Jour(s) BTC</span></p>
  409. <p align="center"><span style="font-size:11pt; color:rgb(170,52,38);">Prix :</span><span style="font-size:11pt;"> </span><span style="font-size:11pt; color:rgb(108,106,106);">30€ / Semaine(s) BTC</span></p>
  410. <p align="center"><span style="font-size:11pt; color:rgb(170,52,38);">Prix :</span><span style="font-size:11pt;"> </span><span style="font-size:11pt; color:rgb(108,106,106);">100€ / Moi(s) BTC</span></p>
  411. </ul>
  412. </div>
  413. </h1>
  414. <ul>
  415. <br>
  416. <p align="center"><span style="font-size:10pt; color:rgb(108,106,106);">En cas de problèmes, veuillez consulter la</span> <span style="font-size:10pt;"> <a href="http://2lscuddnndaj2ukn.onion/faq"> FAQ</a></span>
  417. <p align="center"><span style="font-size:10pt; color:rgb(108,106,106);">Support Jabber :</span> <span style="font-size:10pt;"> <a href="mailto:[email protected]"> [email protected]</a></span></a>
  418. <p align="center"><span style="font-size:10pt; color:rgb(108,106,106);">Support DFAS :</span> <span style="font-size:10pt;"> <a href="http://dfaslqhifg72cqfzlqkbt3fmz6i7zv4b5ihhfzfh2lxfnfxwhe3jxkyd.onion/index.php?action=profile;u=2519" target="_blank">Forum DFAS</a></span></a></p><br><br><br><br><br><br><br><br><br><br>
  419.  
  420. <!--- <p class="red">Pour la version 4.0 <u>Beta</u> il est nécessaire d'activer Javascript, qui ne représente aucun danger en terme d'anonymat.</p> -->
  421. <br><br>
  422. <footer>
  423. <p align="center"><span style="font-size:9pt;">Ce service vous est propose par ©Clkst - 2017/2019</span></p>
  424.  
  425. </footer>
  426. </div>
  427. </div>
  428. </div>
  429. <?php
  430. setlocale(LC_ALL, 'fr_FR');
  431. ?>
  432. <br />
  433. <?php
  434. break;
  435. }
  436. ?>
  437.  
  438. </section>
  439. <!-- <script src="resources/js/jquery/jquery-1.9.1.min.js" type="text/javascript"></script>
  440. <script src="resources/js/bootstrap/bootstrap.min.js"></script>
  441. <script src="resources/js/plugins/nicescroll/jquery.nicescroll.min.js"></script>
  442. <script src="resources/js/app/custom.js" type="text/javascript"></script> -->
  443.  
  444. </body>
  445. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement