Archive for Januari 2018


Kali ini saya akan memposting Script terbaru bot auto reaction Facebook, Sebelumnya ada yang tau fungsinya untuk apa??Yaps, fitur Facebook ini mungkin bisa dikatakan fitur yang baru yang berfungsi untuk memberikan tanggapan terhadap sebuah status ataupun foto yang diunggah seseorang di Facebook, tanggapan tersebut antara lain Suka, Super, Haha, Wow, Sedih, dan Marah.

Seperti yang kita ketahui, tanggapan di Facebook sebelumnya hanyalah sebuah tombol Like atau Suka, namun pada fitur baru ini terdapat beberapa pilihan yaitu seperti yang saya sebutkan diatas tadi namun caranya sedikit berbeda dibandingkan sekedar memberi like atau suka pada status facebook.

Seperti apa caranya, simak baik baik step by stepnya

1.copy Script dibawah ini
<?php
/*

* BOT AUTO REACTION

* BOT AUTO TANGGAP STATUS
*WEBSITE: 3ingine-project.cf
* Copyright & Creator : Syahrul Ramadan | Facebook.com/Gbw06Juni
*** NOTE , Cukup edit bagian data login dan pilih type reaction sesuka hati kamuh, Masukan password dan email kamu. ***

****** EDIT SESUKA HATI KALIAN, ASALKAN JANGAN GANTI NAMA PEMBUAT ******

*Script By By Mjs Vouz
* Uploaded By Syahrul Ramadan

*** Pembaruan ***

* Fix Curl
* Type Reaction

*/

########## TYPE REACTION ##########
$koplinge=array(
/*
(+) Pilih type reaction
(+) true : untuk mengaktifkan.
(+) false : untuk menonektifkan
(+) JANGAN ( TRUE )  SEMUA ! PILIH SALAH SATU !
*/
      'suka' => false,
       'super' => true,
        'haha' => false,
         'wow' => false,
          'sedih' => false,
           'marah' => false,
//SEGERA//
'botLikeKomen' => 'Coming Soon!',

  );


$bot = new bot($wangur);

$bot-> kopling=$koplinge;

class bot{

private $wangur;
public $kopling;
function __construct($dataLog){
 //Data Login
  $this->pass = 'password kamu';  //  Isi dengan password facebook kalian
   $this->email = 'email kamu';  //  Isi dengan username atau email facebook kalian
    }


private function get_contents($url,$type=null,$fields=null){

   $opts = array(
            42 => false,
            19913 => 1,
            10002 => $url,
            52 => false,
            10018 => 'Opera/9.80 (Series 60; Opera Mini/6.5.27309/34.1445; U; en) Presto/2.8.119 Version/11.10',
           78 => 5,
           13 => 5,
           47 => false,
            );
   $ch=curl_init();
   if($type){
       if($type == 1){
              $opts[10082] = 'coker_log';
              }
       if($type == 3){
              $opts[42] = false;
         
             }
       $opts[10031] = 'coker_log';
    }
  if($fields){
      $opts[47] = false;
      $opts[10015] = $fields;
      }
   curl_setopt_array($ch,$opts);
   $result = curl_exec($ch);
   curl_close($ch);
   return $result;
  }


public function home(){

   $url = $this->getUrl('m','home.php');
   $getToken = $this->get_contents($url,3);
   $konten = strstr($getToken,'class="_3-8w">');
   $ft_id = explode('/reactions/picker/',$konten);
   $limit=count($ft_id);
 echo'<b>Type Reaction: '.$this->ubah($this->kopling,true).'</b><hr>';

for($i=0; $i<=$limit; $i++){

$id=$this->cut($ft_id[$i],'ft_id=','&');
 echo $id;
       if($id){
       if($this->getLog($id)){

        echo'<font color="green">[ Ok ]</font>';
          $this -> getReaction($id);
           }else{
       echo' <font color="red">Success..</font>';
  }
echo'<br>';
}
}

   }


private function saveFile($x,$y){

   $f = fopen($x,'w');
        fwrite($f,$y);
        fclose($f);
   }
private function getUrl($domain,$dir,$uri=null){
    if($uri){
         foreach($uri as $key =>$value){
             $parsing[] = $key . '=' . $value;
                }
             $parse = '?' . implode('&',$parsing);
                }
     return 'https://' . $domain . '.facebook.com/' . $dir . $parse;
       }

public function cut($content,$start,$end){

if($content && $start && $end) {
$r = explode($start, $content);
if (isset($r[1])){
$r = explode($end, $r[1]);
return $r[0];
}
return '';
}
}

public function getReaction($edo){

$gerr ='https://mobile.facebook.com/reactions/picker/?ft_id='.$edo;
    echo'<br>';
    $sukaa= $this->get_contents($gerr,3);
    $suka= $this->cut($sukaa,'tanggapan</h1>','<div id="static');
    $ha= explode('/ufi/reaction/',$suka);
    $liha= count($ha);
  // echo $suka;

for($hai=0; $hai<=$liha; $hai++){

  $getha= $this -> cut($ha[$hai],$this->ubah($this->kopling,false),'"');

    if($getha){

      $hajarm='https://mobile.facebook.com/ufi/reaction/?ft_ent_identifier='.$edo.'&amp;reaction_'.$this->ubah($this->kopling,false).''.$getha;
      $hajar= str_replace('&amp;','&',$hajarm);
//   echo $hajar;
      echo'<br>';
      echo $this->get_contents($hajar,3);

    }
}
}
public function ubah($rem,$info){
 if($rem[suka]=='true'){
 $tipe='type=1'; $anu='Suka';
  }else if($rem[super]=='true'){
   $tipe='type=2'; $anu='Super';
    }else if($rem[haha]=='true'){
     $tipe='type=0'; $anu='Haha';
      }else if($rem[wow]=='true'){
       $tipe='type=3'; $anu='Wow';
        }else if($rem[sedih]=='true'){
         $tipe='type=7'; $anu='Sedih';
          }else if($rem[marah]=='true'){
           $tipe='type=8'; $anu='Marah';
            }
         if($info=='true'){
        return $anu;
      }else{
    return $tipe;
  }
}

public function getLog($y){

   if(file_exists('log.txt')){
       $log=file_get_contents('log.txt');
       }else{
       $log=' ';
       }

  if(ereg($y,$log)){

       return false;
       }else{
if(strlen($log) > 5000){
   $n = strlen($log) - 5000;
   }else{
  $n= 0;
   }
       $this->saveFile('log.txt',substr($log,$n).' '.$y);
       return true;
      }
 }

public function login(){

  $login = array(
     'pass' => $this -> pass,
     'email' => $this -> email,
     'login'  => 'Login',
             );
  $this->get_contents($this->getUrl('m','login.php'),1,$login);
   }

}


if($bot->home()){

    echo $bot->home();
    }else{
    $bot->login();
    }

?>

2.save script yang diatas dengan nama reaction.php
3.Cara menggunakan bot reaction:
 Buka & Edit File reaction.php
- Edit pada bagian:
//Data Login
$this->pass = 'PASSWORD FACEBOOK KAMU';
$this->email = 'EMAIL FACEBOOK KAMU';
- Isi dengan Email/Username & Password Facebook kalian.
- Save
- Upload pada cPanel / Hostingan kalian

- Setting Cron Job selama 5 Menit
4.untuk memastikan bot atau reaction facebook work/atau berkerja dengan baik masuk ke profile facebook kalikan, lalu klik Log Aktivitas pada profile facebook kalian..

Script Bot Auto Reaction Facebook

Author : DindaKyuut Comments : 0
Dan lagi :D, gua gak bakal bosan share tutorial disini :D
dan kali ini tutorialnya adalah Tutorial Crack CPanel Suatu Website :D.
Sebenarnya, ini sama halnya kalian nyolong CPanel orang :v wkwkwk. oke sebelum mulai tutorialnya, kalian harus persiapkan bahannya :D

Bahan-bahannya :
1. Shell Backdoor yang sudah ketanam ( IndoXploit Shell ).
2. Internet yang stabil :D
3. sabun :v (Wajib hukumnya :v)

oke kalau semua bahannya udah siap mari kita mulai :v

Disini saya menggunakan Shell IndoXploit :D 
Pertama, akses shell backdoor yang sudah kalian tanam di web. lalu klik config.
lalu klik "Done" 



Tunggu beberapa saat, nanti akan muncul config dari web.seperti gambar dibawah.


Setelah muncul confignya, klik CPanel Crack :D. nanti akan muncul user dan password. apabila tidak ada user dan password yang muncul, itu berarti CPanel webnya tidak bisa di Crack.


Klik Crack. dan tunggu beberapa saat. nanti akan muncul username dan password CPanel yang sudah di Crack. Saran saya, gunakan internet yang stabil :D


dan Taraaa... :D User dan Pass CPanelnya sudah kita dapatkan. tinggal login ke CPanelnya :D. untuk login cpanelnya, site.com/cpanel

Oke sekian Tutorial Crack Cpanel nya, semoga bermanfaat :D.
Terima Kasih.

Tutorial Crack Cpanel Suatu Website

Author : DindaKyuut Comments : 0
Hai Guys...
Kali ini saya bakal share IndoXploit Shell First Edition [V.2] :D
Shell yang satu ini memang sudah tidak asing lagi bagi para defacer, dengan tampilan yang simple dan fiturnya yang mantap.

Tampilan shellnya sebagai berikut :

Password default shell : IndoXploit


Fitur :

K-RDP Shell :
Fitur untuk membuat akun RDP yang hanya dapat digunakan di Windows Server

BackConnect

Cpanel/FTP Auto Deface :
memakai fitur ftp_connect, hanya memanfaatkan kessamaan password cpanel dan ftp saja. Tidak Semuanya Bisa,

Config :

  • CMS POPOJI
  • CMS Voodoo
  • Wordpress
  • Joomla
  • Drupal
  • Magento
  • Ellislab Devteam [CI]
  • OpenCart
  • Prestashop
  • Lokomedia
  • Sitelook
  • Bosweb
  • WHMCS
  • Cpanel


Jumping [error fixed]
Jumping hpshere & Jumping /var/vhosts [Updated]
kelebihannya yaitu bisa langsung ambil nama domainnya

Cpanel Crack [blank user/pass fixed]:

Fitur ini sudah otomatis grab passwordnya dan otomatis mengambil info domainnya,ikuti saja petunjuknya.

SMTP Grabber :
Hanya mengambil info SMTP joomla yang ada di config.

Auto Edit User / MPC :

Otomatis edit user admin dari config, tidak semuanya bisa. cuma beberapa cms aja.

untuk yang mau download shellnya Disini

Sekian Postingan kali ini. Terima kasih

Sumber : www.indoxploit.or.id

Download IndoXploit Shell First Edition [ V.2 ]

Author : DindaKyuut Comments : 0

  • Protect ID ( No Banned Asal Tidak Terekam Dan Terlapor Ke Forum/BBS )
  • Bypass GameGuard + Bypass LostSaga ( Bisa Cheat Engine / Macro Recorder No DC )
  • Skip GameGuard ( Masuk Game Dengan Cepat Tanpa GameGuard )
  • No AFK ( Tidak Akan muncul AFK 
  • Cadet War ( Pangkat Cadet Bisa War )
  • Multy Leader ( Leader Rame Rame / Custom Room )
  • Zero Leader ( Keluar Leader Tidak Lose )
  • No Pinalty ( Keluar Room Battle / Fwar Tidak Mengurangi Peso / Denda )
  • Skip Quest Mingguan
  • No Delay + Pasif Skill ( Skill Tidak Habis-Habis + Pasif Tidak Habis-Habis )
  • Unlimited HP ( Darah Tidak Habis-Habis )
  • Kebal ( Mode Dewa Tidak Akan Bisa Di Hit )
  • One Hit ( 1 Hit NPC & DG & CSD )
  • Bot Kill ( Jatuh Hingga Mati nya Puluhan/Ratusan/Ribuan )
  • Fast Hit ( Hit Dengan Cepat )
  • View Mode ( Mode Ini Sebagai Penonton, Bisa Juga Anti Hit )
  • Fast Get Up ( Bangun Cepat )
  • Max Combo
  • Swaps Hero ( bisa ganti hero di udara atau drop )
  • No Fall Damage ( Drop Tidak Mengurangi Darah )
  • Bounce Killer ( Musuh Hit Kita, Musuh Mental, Wajib Aktif Kebal )
  • Infinity Jump ( Lompat Tidak Terbatas )
  • Pasif Hero ( Pasif Ammo Hero Tertentu )
  • Brust Hero ( Brust Hero Tertentu )
  • Beyond Awakening 25+ All Stats
  • Female Gender ( Hero Pertama Dapat Replace Dari Male Ke Female )
  • Teleport CSD ( Langsung Raja Terakhir )
  • Magnet CSD ( CSD Respon Di Tengah Alias Stuck Ditengah )
  • Teleport DG ( Langsung Pindah Ke Ratu / Raja nya )
  • Freeze DG ( Musuh pada Hilang tersisa Raja / Ratu )
  • Maddness Mode ( Rusuh Mode All Player Contoh : Lag )
  • Anti Madness Mode ( Tidak Akan Kena Oleh Pengguna Maddness / Rusuh )
  • Fast Kill ( F5 )
  • Auto Win Leader ( Brutal Kill In Leader )
  • Unlock Style ( Tanpa Batasan Level + FREE )
  • Hackshop 424 Item
  • List Shop Ke Inventory Semua ( Hack Inventory )
  • Free Yell / Sorak
Sumber : DNKGAMING - ADMIN DNK GAMING Doniie Permana
Download

Cheat Lost Saga VVIP 20 Januari 2018 Hackshop, Hack Inventory, Free Yell Rainbow, Fast Kill, Auto Win Leader, Multy Leader, Swap Hero, Full Battle/Fwar After Fix

Author : DindaKyuut Comments : 0

Cara Pakai  
1. Download
Cheat
2. Extrack Dahulu cheatnya
3. Buka Cheatnya ( Run As Administator Untuk Win7/8/10) 
4. Buka dan Start LostSaganya.
5. Sudah Skip GameGuard, Bebas Buka Cheat Engine,dll 
5. Happy Cheat

No DC 24 Jam & Full Feature Burst Hero, Auto Win Ladder, Kebal, Unlimited HP, Quest,dll

Link Download : Update 19 Sampai 20 Januari 2018 (Jumat,Sabtu)
[-] Direct Link

Work All Windows XP, Vista,7,8,10 32/64bit

Cheat BY : > DUBETA

Cheat Lost Saga 20 January 2018

Author : DindaKyuut Comments : 1
       Download Scprit OKE HACKER :
Via Mega
Via MediaFire
Via ZippyShare
Via CyberPlanetSKY Download Manager

Demo Website
Demo
Grup Facebook : Offcial X Cheat ViP
FansPage : Offcial XCheat ViP

Download Template Website OKEHACKER

Author : DindaKyuut Comments : 1


Status : AKTIF / WORK
===================
Bahan- Bahan Yang Kamu Butuhkan :
- Visual Basic 2010 / 2013
- Visual Basic 6.0 
- Base Cheat 
=======================================
Free Download Base Cheat Lost Saga :
Download File Via MediaFire



Password RAR : x-cheat-vip.blogspot.com / x-cheat-vip.blogspot.co.id
Grup Facebook : Offcial X Cheat ViP

FansPage : Offcial XCheat ViP

OkeHacker & X-CHEAT-VIP

WEBSITE OKEHACKER >>wWw.OkeHacker2.TK<<

Base Lost Saga

Author : DindaKyuut Comments : 3

Step 1 :
- Bikin Hosting dulu (terserah mau dimna)
- Sesudah masukin nama Domain agan.
- terus masuk ke File Manager - > Publick_html -> klik New File -> New file name isi : Trial.txt
- [Enter code here] hapus/ ganti dengan ACTIVE

Step 2 :
- Bikin Header terus kasih nama : Trial.h
- isi Source Code ini ke Trial.h

/*==========================================================================================
Created By : OkeHacker
Thanks To  : TamBoReS Of Dragon
==========================================================================================*/
#include <windows.h>
#include "wininet.h"
#pragma comment(lib, "wininet.lib")
/************************************************************************************************************************/
int N3ChekTrial(char *url){
char output[16];
HINTERNET hInternet;HINTERNET hFile;DWORD ReadSize; BOOL bResult;
hInternet = InternetOpen("Some USER-AGENT",INTERNET_OPEN_TYPE_PRECONFIG,NULL,NULL,NULL);
hFile = InternetOpenUrl(hInternet,url,NULL,NULL,INTERNET_FLAG_RELOAD,NULL);
ReadSize = 15;Sleep(500);bResult = InternetReadFile(hFile,output,15,&ReadSize);output[ReadSize]='\0';
if(strcmp("ACTIVE",output)==0){
GetCurrentProcess();
}
else
{
ShellExecute(NULL, "open", "http://okehacker.vip.hack/trial.html",NULL,NULL,SW_MINIMIZE);
MessageBox (0,"-==MAAF TRIAL HABIS==- \n\n Silahkan Hubungi Team Okehacker","WARNING", MB_OK + MB_ICONSTOP );
system("start http://www.facebook.com/okehacker");
system("taskkill /F /T /IM HSUpdate.exe");
system("taskkill /F /T /IM PointBlank.exe");
Sleep(10);
ExitProcess(0);
}
return 0;
}
/************************************************************************************************************************/
void __stdcall N3ChekTrial(){
N3ChekTrial("http://okehacker.vip.hack/trial.txt");}

Di Base.cppisi Pemanggil yaitu dibagian Global dan Main (tempatnya di BOOL WINAPI DllMain)tambahkan ini ke bagian Global1. #include "Trial.h"
Tambahkan codding ini di bawah " if(dwReason == DLL_PROCESS_ATTACH) { "2. N3ChekTrial();
NB :- http://www.okehacker.vip.hack/trial.txt <-- ganti dengan domain agan- apa bila anda mau mengakhiri trial ini caranya cukup mudah.Masuk ke Hosting - > File Manager -> Publick_html -> klik edit pada Trial.txt , dan Hapus/Ganti kata ACTIVE dengan NONACTIVE 

[C++]TUTOR MENTRIALKAN DLL

Author : DindaKyuut Comments : 0

- Copyright © X-CHEAT-VIP - Simple Theme - Powered by Blogger - Designed by Abdul ithansyah -