Devilzc0de Forum Follow @devilzc0de
  • Home
  • Hacking
  • Networking
  • Programming
  • O.S
  • Server
  • Tweets
  • Search
  • Member List
  • Calendar
Current time: 05-23-2013, 09:02 AM Hello There, Guest! (Login — Register)
Devilzc0de Forum › Information Technology › Programming › Python v
« Previous 1 2 3 4 Next »

[Tutor] Detect Vulnerabilities and Format Results with Golismero

Home General Computer Multimedia Business Lounge

Pages (3): 1 2 3 Next »
Post Reply 
Tweet
Threaded Mode | Linear Mode
Tutor Detect Vulnerabilities and Format Results with Golismero
11-19-2011, 03:52 PM
Post: #1
Wayc0de Offline
-= Sifu Makan Sonice =-
**
Moderators
Posts: 2,980
Joined: Nov 2010
Reputation: 61
Detect Vulnerabilities and Format Results with Golismero
Assalamu'alaikum Wr Wb n salam sejahtera buat kita semuanya santai

eh g bosennya ketemu agy ma ane orang yang paling newbie

kali ini ane mau ngasih sedikit maenan ttg python buat tmen2 DC

"Detect Vulnerabilities and Format Results with Golismero"

wah judulnya serem ea ngakak

CEKIDOT !!!

1. What is GoLISMERO?

GoLISMERO is a web spider is able to detect vulnerabilities and format results a very useful when starting a web audit.

ea lw g salah arti nie tool buat mendeteksi vulnerabilities pada suatu website dh

2. GoLISMERO membantu kita untuk memetakan sebuah aplikasi web, menampilkan sebagai format confortable bagi auditor keamanan dan menyiapkan mereka untuk intergrate dengan tool lain seperti w3af, wfuzz, netcat, Nikto, dll

3. Fitur dari Golismero :

Code:
Map a web aplication.
Tampilkan semua link dan params bentuk sebagai format confortable.
Simpan hasil dengan beberapa format: text, cvs, html, raw (untuk parsing dengan bash script) and wfuzz script.
Detect common vulnerabilites of web application.
Filter web information retaining only what is important.
Many other features you can find very useful.

4. Golismero dimaksudkan untuk menjadi langkah pertama ketika memulai audit keamanan web. and Every time we face a new URL, would not it be great to have easily and quick all the links, forms with parameters, to detect possible URL vulnerable and in addition to being presented so that gives us an idea of ​​all points of entry where we could launch attacks? GoLISMERO lets us do all this.

5. Download tool Golismero

~# download toolsnya disini Golismero

kemudian extract file tersebut

~# buka terminal dan carilah folder Golismero

6. Menjalankan tool Golismero

ketikkan command berikut ini :

Code:
./GoLismero.py -h

maka hasilnya akan seperti ini :

Code:
GoLISMERO - The Web Knife.

Daniel Garcia Garcia - dani@iniqua.com | dani@estotengoqueprobarlo.es

usage: GoLismero.py [-h] [-R RECURSIVITY] [-t TARGET] [-o OUTPUT]
                    [-F {text,html,csv,xml,scripting,wfuzz}]
                    [-A {all,forms,links}] [-V] [-c] [-x] [-m] [-na] [-nc]
                    [-ns] [-ni] [-nm] [-nl] [-l] [-us HTTP_AUTH_USER]
                    [-ps HTTP_AUTH_PASS] [-C COOKIE] [-P PROXY] [-U]
                    [-f FINGER] [--follow]

optional arguments:
  -h, --help            show this help message and exit
  -R RECURSIVITY        recursivity level of spider. Default=0
  -t TARGET             target web site.
  -o OUTPUT             output file.
  -F {text,html,csv,xml,scripting,wfuzz}
                        output format. "scripting" is perfect to combine with
                        awk,cut,grep.... default=text
  -A {all,forms,links}  Scan only forms, only links or both. Default=all
  -V                    Show version.
  -c                    colorize output. Default=No
  -x, --search-vulns    looking url potentially dangerous and bugs. As default
                        not selected
  -m, --compat-mode     show results as compact format. As default not
                        selected.
  -na, --no-all         implies no-css, no-script, no-images and no-mail. As
                        default not selected.
  -nc, --no-css         don't get css links. As default not selected.
  -ns, --no-script      don't get script links. As default not selected.
  -ni, --no-images      don't get images links. As default not selected.
  -nm, --no-mail        don't get mails (mailto: tags). As default not
                        selected.
  -nl, --no-unparam-links
                        don't get links that have not parameters. As default
                        not selected.
  -l, --long-summary    detailed summary of process. As default not selected.
  -us HTTP_AUTH_USER, --http-auth-user HTTP_AUTH_USER
                        set http authenticacion user. As default is empty.
  -ps HTTP_AUTH_PASS, --http-auth-pass HTTP_AUTH_PASS
                        set http authenticacion pass. As default not empty.
  -C COOKIE, --cookie COOKIE
                        set custom cookie. As default is empty.
  -P PROXY, --proxy PROXY
                        set proxy, as format: IP:PORT. As default is empty.
  -U, --update          update Golismero.
  -f FINGER, --finger FINGER
                        fingerprint web aplication. As default not selected.
                        (not implemented yet)
  --follow              follow redirect. As default not redirect.

Examples:    
- GoLISMERO.py -t site.com -c
- GoLISMERO.py -t site.com -c -A links -x
- GoLISMERO.py -t site.com -m -c -A links -o results.html -F html -x    
- GoLISMERO.py -t site.com -c -A links -o wfuzz_script.sh -F wfuzz
- GoLISMERO.py -t site.com -A links --no-css --no-script --no-images --no-mail -c -x
  or GoLISMERO.py -t site.com -A links -nc -ns -ni -nm  
  or GoLISMERO.py -t site.com -A links --no-all
  or GoLISMERO.py -t site.com -A links -na    
    
  For more examples you can see EXAMPLES.txt

selanjutnya kita mencari semua link dan forms dari web, dengan semua parameter berikut ini

Code:
./GoLismero.py -t indonesia.go.id

[Image: golismero.png]
Getting all links, on compact mode, and colorize output:

Code:
./GoLismero.py -m -c -t indonesia.go.id

[Image: golismero2.png]
Getting only links. Removing css, javascript, images and mails:

Code:
./GoLismero.py --no-css --no-images --no-mail --no-script -m -c -t indonesia.go.id

[Image: golismero3.png]
Getting only links with params and follow redirects (HTTP 302) and export results in HTML:

Code:
./GoLismero.py -c -A links --follow -na -x -m -t indonesia.go.id

[Image: golismero6.png]
Getting all links, looking for potentially vulnerable URL and using an intermediate proxy to analyze responses. The URLs or vulnerable parameters are highlighted in red.

Code:
./GoLismero.py -nl -c -A links --follow -F html -o results.html -m -t indonesia.go.id

[Image: golismero4.png]
And HTML generated code:

[Image: golismeroresults.png]
==========================================================

mungkin segitu dulu tutor penggunaan Golismero

sedianya tmen2 bisa mengembangkan lebih dalam ketimbang ane

n semoga bermanfaat bagi kita semua

akhir kata dari ane,, wassalamu'alaikum Wr Wb
Visit this user's website Find all posts by this user
Quote this message in a reply
 Reputed by :  xtr0nic(+1)
11-19-2011, 03:55 PM
Post: #2
cabun.solek Offline
./Devilz 1st Cadet
Posts: 39
Joined: Oct 2011
Reputation: 1
RE: Detect Vulnerabilities and Format Results with Golismero
wah mantap ni toolsnya om.. like this banget.. ane coba nanti dirumah.. thx banget om
Find all posts by this user
Quote this message in a reply
11-19-2011, 03:56 PM
Post: #3
civo Offline
./Panah Nanggala\.
**
Moderators
Posts: 2,079
Joined: Jan 2011
Reputation: 65
RE: Detect Vulnerabilities and Format Results with Golismero
mantap sifu.....lengkap bangettt tutornya sifu asik
ijin arsipin buat bahan belajar sifu smangat
Find all posts by this user
Quote this message in a reply
11-19-2011, 03:58 PM
Post: #4
74jTeZ Offline
./Junk3r 1st C4d3t
Posts: 284
Joined: Nov 2011
Reputation: 5
RE: Detect Vulnerabilities and Format Results with Golismero
tool + poc nya lengkap.. mantap
ane izin bookmark dulu kang, buat tak coba tar malem.. malu
kang d'Zhen targetnya dari kemarin indonesia.go.id smangat
Find all posts by this user
Quote this message in a reply
11-19-2011, 04:15 PM (This post was last modified: 11-19-2011 04:16 PM by Wayc0de.)
Post: #5
Wayc0de Offline
-= Sifu Makan Sonice =-
**
Moderators
Posts: 2,980
Joined: Nov 2010
Reputation: 61
RE: Detect Vulnerabilities and Format Results with Golismero
(11-19-2011 03:55 PM)cabun.solek Wrote:  wah mantap ni toolsnya om.. like this banget.. ane coba nanti dirumah.. thx banget om

monggo om cabun.solek seneng
(11-19-2011 03:56 PM)civo Wrote:  mantap sifu.....lengkap bangettt tutornya sifu asik
ijin arsipin buat bahan belajar sifu smangat

monggo om guru civo seneng
Visit this user's website Find all posts by this user
Quote this message in a reply
11-19-2011, 04:17 PM
Post: #6
badwolves1986 [RJ] Offline
Staf Registrasi DIC
RJ
Posts: 2,881
Joined: Oct 2010
Reputation: 91
RE: Detect Vulnerabilities and Format Results with Golismero
hampir sama seprti schemafuzz dan darkMysql
mantap oms ane cobain ahh dari kemaren maenan nya python eyyy ketawa
Find all posts by this user
Quote this message in a reply
11-19-2011, 04:18 PM
Post: #7
Rev Aris Offline
./Devilz Advisor
Posts: 941
Joined: Jul 2011
Reputation: 19
RE: Detect Vulnerabilities and Format Results with Golismero
keren nih om d'zhen
lengkap threadnya
mantap
Visit this user's website Find all posts by this user
Quote this message in a reply
11-19-2011, 04:19 PM (This post was last modified: 11-19-2011 04:21 PM by Wayc0de.)
Post: #8
Wayc0de Offline
-= Sifu Makan Sonice =-
**
Moderators
Posts: 2,980
Joined: Nov 2010
Reputation: 61
RE: Detect Vulnerabilities and Format Results with Golismero
(11-19-2011 03:58 PM)74jTeZ Wrote:  tool + poc nya lengkap.. mantap
ane izin bookmark dulu kang, buat tak coba tar malem.. malu
kang d'Zhen targetnya dari kemarin indonesia.go.id smangat

silahkan om 74jTeZ hmm

tu bkn target om,,cman buat tes doank kok seneng

(11-19-2011 04:17 PM)badwolves1986 Wrote:  hampir sama seprti schemafuzz dan darkMysql
mantap oms ane cobain ahh dari kemaren maenan nya python eyyy ketawa

iya agy belajar python om BD seneng
(11-19-2011 04:18 PM)Rev Aris Wrote:  keren nih om d'zhen
lengkap threadnya
mantap

mkcie dh bilang ane keren santai
Visit this user's website Find all posts by this user
Quote this message in a reply
11-19-2011, 04:57 PM
Post: #9
chaer.newbie Offline
--------------------------
*****
Dewa
Posts: 5,275
Joined: Dec 2009
Reputation: 184
RE: Detect Vulnerabilities and Format Results with Golismero
wah keren nih. gw jadi pengen nginstall linuk lagi ketawa
Find all posts by this user
Quote this message in a reply
11-19-2011, 05:45 PM
Post: #10
Vanzoel Offline
Laskar Devilzc0de
Posts: 218
Joined: Feb 2011
Reputation: 0
RE: Detect Vulnerabilities and Format Results with Golismero
keren om,, izin arsipin dulu,,
kurang lebih kaya schemafuzz jg ya,,
Find all posts by this user
Quote this message in a reply
« Next Oldest | Next Newest »
Pages (3): 1 2 3 Next »
Post Reply 


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

Users Browsing

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

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