Tampilkan postingan dengan label Tools. Tampilkan semua postingan
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
* 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.'&reaction_'.$this->ubah($this->kopling,false).''.$getha;
$hajar= str_replace('&','&',$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();
}
?>
/*
* BOT AUTO REACTION
* BOT AUTO TANGGAP STATUS
*WEBSITE: 3ingine-project.cf
*** 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.'&reaction_'.$this->ubah($this->kopling,false).''.$getha;
$hajar= str_replace('&','&',$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..
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 :
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
Status : AKTIF / WORK
===================
===================
Bahan- Bahan Yang Kamu Butuhkan :
- Visual Basic 2010 / 2013
- Visual Basic 6.0
- Base Cheat
=======================================
- Visual Basic 2010 / 2013
- Visual Basic 6.0
- Base Cheat
=======================================
Free Download Base Cheat Lost Saga :
OkeHacker & X-CHEAT-VIP
WEBSITE OKEHACKER >>wWw.OkeHacker2.TK<<
Yoshh minna san... ini postingan pertama saya.. jadi saya ingin membuat post Release Shell Backdoor TATSUMI SHELL saja h3h3, ini adahal hasil recode dari HumanTersakiti404 a.k.a Diki Bahtiar, dan dia recode dari IndoXploit Shell V.2
dah ga usah banyak bacot lagi euyyy
langsung saja
TAMPILAN LOGIN SHELL :
TAMPILAN DALAM SHELL
FITURE SHELL :
LINK DOWNLOAD SHELL :
- PASTEBIN
PASSWORD : Tatsumi07
NB : Kalau mau ReCoded, harap sertakan copyright :3
Sekian terima kasih
dah ga usah banyak bacot lagi euyyy
langsung saja
TAMPILAN LOGIN SHELL :
TAMPILAN DALAM SHELL
FITURE SHELL :
[+] UPLOAD
[+] COMMAND
[+] MASS DEFACE
[+] CONFIG
[+] JUMPING
[+] ZONE-H
[+] CPANEL CRACK
[+] SYMLINK
[+] SMTP GRABBER
[+] CGI TELNET
[+] ADMINER
[+] CSRF [ NEW ]
[+] STREAMING BOKEP [ NEW ]
[+] AUTO EDIT USER
[+] AUTO DEFACE WORDPRESS
[+] AUTO EDIT TITLE WORDPRESS
[+] LOGOUT
LINK DOWNLOAD SHELL :
- PASTEBIN
PASSWORD : Tatsumi07
NB : Kalau mau ReCoded, harap sertakan copyright :3
Sekian terima kasih
SUMBER : TATSUMI CREW






