• Cara Mengetahui Username Pada Wordpress [ Cocok Untuk Yang Hobi BF ]

    kali ini ane pengen share cara mengetahui username pada wordpress.

    ane sendiri juga baru tau setelah kemarin ngubek ngubek WPScan.
    cukup simple sih.
    cuma menambahkan ?author=id
    nanti akan muncul username + namenya.

    pada kali ini cuma menampilkan username + name dari id 1-10.
    kalo mau sampe 20, ubah aja $id yang didalem for.

    POC:


    jadi ini cuma menampilkan id yg ada username + namenya aja.
    setelah mengetahui usernamenya, silahkan di dictionary attack.

    script:
    http://pastebin.com/AqCmhr2Y

    #KeepShare.

    Post Copied From INDOEXPLOIT
  • Learn How Elliot from Mr. Robot Hacked into His Therapist's New Boyfriend's Email & Bank Accounts (Using Metasploit)


    Social engineering is a pretty important item in a hacker's toolkit.
    In Mr robot there was a time, we saw Elliot using social engineering to gain access to his therapist's boyfriend's email and bank accounts by calling him and pretending to be someone from his bank, then Elliot asked him for some info that were really useful to gain access to his account, the target believed to be someone from the bank and gave him the info Elliot was looking for.

    But How Is It in the Real World?

    Gathering information about a target remotely is easy, but learning about the person behind the screen is important too. You can't always gather that information by just googling or using website offering info about people or institutions, sometimes you have to get this info directly from the user,in the real world, Bazzell said, most breaches we hear about start with social engineering. He said they usually occur through a malicious email or by tricking an employee, so this is what are we going to learn today.

    What Are We Going to Do?

    Today i'm going to show you how you can trick an employee to give you all the info to successfully hack the company, using metasploit and softphone.
    Introduction about SIP and voip
    Due to its increasing reliability and accessibility, in recent years, internet telephony technology has become a plausible choice for many businesses, allowing them to cut down on their communication costs whilst enjoying a rich communication experience.
    SIP and VoIP provide the foundations for IP technology. Both technologies provide ample benefits and opportunities for the user to save money whilst increasing their productivity. Each protocol has pros and cons, and they are often used together.
    All of us were already at least once in life been in an office, and we noticed the presence of one or more landline telephones, mainly in the area of customer service, but these days most companies no longer use those landline telephones, instead companies have adapted the use of ip phones (SIP,VOIP), which are sometimes free(SKYPE) and can be accessed anywhere in the world , all you need is the public SIP address that follows you much like your email address would. It doesn't really matter where you are or what device you use; as long as you're logged in (registered), SIP communications will be redirected to your current location.
    Session Initiation Protocol, (SIP), is a powerful and efficient communications protocol which can be used to send multimedia messages to multiple parties - allowing people around the world to communicate over the internet using their computers and mobile devices
    Voice over IP (VoIP) is a methodology and group of technologies for the delivery of voice communications and multimedia sessions over Internet Protocol (IP) networks, such as the Internet.
    For more info about these protocols you can google it in case you don't understand them.

    REAL WORLD EXAMPLE

    For this example we are going to use google as target company, but you could change google to the name or domain of your target company or entity, Softphone as our voip phone also called ip phone, and metasploit to create a fake SIP invite request making the targeted device ring and display fake caller id information, because in the real world users would believe only trusted caller(But for some people you dont even need all this process).
    Before we start a softphone is a software program for making telephone calls over the Internet using a general purpose computer, rather than using dedicated hardware. The softphone can also be installed on a piece of equipment such as a workstation, portable computer, tablet or even a cellphone and allows the user to place and receive calls without requiring an actual telephone set, at its available for linux too, enough theory for today fire up your kali linux and download softphone
    apt-get install sflphone-gnome
    As you can see from the below pic, i have already downloaded the softphone, skip it in case you have it too.
    Once yo done downloading you can access the softphone by navigating through applications--->usual applications--->internet and you will see the softphone installed there, just click on the icon to open it(lol i bet you already know how to open programs).
    When you open it for the first time, you will be prompted with a screen like the one below, for now just set everything as below and click next
    Now when you get the phone on your screen go to edit-->accounts---> and choose "ip2ip" click on edit and choose advanced
    On network interface choose your network interface and leave the port as default, in my case i'm using eth0 as interface, you can choose any.
    For now we are done configuring our ip phone.

    The Hack

    We will be using metasploit to hack our softphone, this is intended for users that knows how to use metsploit.
    The module we will use will create a fake SIP invite request making the targeted device ring and display fake caller id information.
    The commands:
    msfconsole
    use auxiliary/voip/sip_invite_spoof
    To see the options(please don't copy it, its not a command simply to economize time)

    Understanding the Module

    The DOMAIN is the sip domain, in our case as we will be working locally, we can just skip it, it could be something like google, wonderhowto or any other as long they have a sip domain.
    The EXTENSION is the target identity inside the network, record for SIP does the same thing as a mail exchange record for email,lets say the sip domain is google, the extension of a target could be something like voice.john@google.com
    The MSG is the spoofed caller id to send in our case we will pretend we are from the it department of google
    The RHOSTS is the target ip, in my case my softphone is installed in my localhost with the ip 192.168.0.101
    The SRCADDR is the spoof call sip address, in our case it will be voice.admin@google.com, to make the target(employee fro google in our case) thinking that its coming from google it department.
    When we run it we will receive a call apparently coming from google it department, but it was just a spoofed identity as we can see from the below pic.
    Of course its rare for you to get it working on google, but if you can try in some other companies or entities, all you need is just their voip ip address or you can just be in the same network and scan for ip with the following open ports : 5060, 5070, 10000-65535 default ports for a lot of voip services.
    You can see that our softphone use the port 5060
    Another thing you could do as well is to send an invitation over all the ip on the network, you just need to set the RHOSTS to a range of the ip on the target network in my case it could be
    Once it finds an ip running sip on 5060 it then send an invitation as you can see from the above pic, this time we send an invitation over the network

    What Now? How Can I Get Someones Email, or Bank Account Passwords with This?

    Now its all about social engineering, once the user accepts the call use your best to trick him to give the info you are looking for.
    In our example using google you could say that you are recently working on some new security app for google employees and would like to update employee's data, with more time you can figure out exactly what to say to gain access of their account, because they will think you are working in the it department of google, they might or not give you info, but its all about good talking.
    Just like Elliot did, we could call to the target bank and pretend we are from It department and we would like to get some info about an user(our target) and so on...
    Thats all for now, if i did mistake any thing or you would like to add your opinion, such as how you would trick the employee you are welcome...
    see you soon and happy hacking...

    Post Copied From Null Byte
  • Asciinema, Software Perekam Aktifitas di Terminal

    Jika kalian mau mencoba menunjukan cara install aplikasi dalam server, atau menunjukan cara menginstall aplikasi lewat terminal tapi malas untuk upload video, Kalian bisa mencoba Asciinema. Asciinema adalah software perekam aktifitas di Terminal.
    Oke langsung saja, untuk menginstallnya cukup masukkan perintah berikut :

    curl -sL https://asciinema.org/install | sh

    Kalau kalian ingin menyimpan hasil recording kalian agar lebih mudah, kalian harus membuat akun terlebih dahulu di https://asciinema.org .

    Dan berikut command list yang bisa kalian pakai :
    asciinema auth : untuk menyinkronkan komputer kalian dengan akun asciinema.org

    asciinema rec -t "Judul Rekaman" : untuk memulai record terminal. Setelah selesai, keitk exit di terminal, lalu klik enter untuk mengupload.

    Untuk command lain lihat di list help nya.
    asciinema -h

    Berikut ini contoh hasil record dengan asciinema :
    Sekian tutorial kali ini dan semoga bermanfaat. Share juga ke teman teman mu biar mereka tau.

    Post Copied From LinuxSec
  • Jalankan Banyak OS Tanpa Harus Dual Boot Dengan Docker

    Kali ini saya akan share bagaimana cara untuk menjalankan banyak OS tanpa harus melakukan dualboot ataupun melalui virtualbox. Contohnya main OS saya Ubuntu, saya ingin merasakan OS Kali Linux. Tanpa harus susah susah install Kali melalui dualboot ataupun virtualbox. Kita bisa melakukannya dengan Docker.

    Docker adalah sebuah platform terbuka untuk developer, sysadmin atau siapapun yang bertujuan menggunakan sebuah platform untuk membangun, mendistribusikan dan menjalankan aplikasi. Docker membuat proses pemaketan aplikasi bersama komponennya (dependencies ) secara cepat dalam sebuah container yang terisolasi, sehingga dapat dijalankan dalam infrastruktur local (local data center) ataupun cloud tanpa melakukan perubahan/konfigurasi lagi pada container, selama host menjalankan Docker Engine.


    Oke langsung saja, pertama kita Install Docker Engine terlebih dahulu :
    Untuk cara cara penginstallan docker bisa dilihat disini :
    Untuk tutorial ini saya menggunakan Ubuntu 14.04, so buat yang menggunakan Ubuntu 14.04 ikuti step dibawah :
    $ sudo apt-get update
    $ sudo apt-get install apt-transport-https ca-certificates
    $ sudo apt-key adv --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys 58118E89F3A912897C070ADBF76221572C52609D
    $ sudo nano /etc/apt/sources.list.d/docker.list
    Kosong, masukkan isinya berikut :
    deb https://apt.dockerproject.org/repo ubuntu-trusty main
    $ sudo apt-get update
    $ sudo apt-get install linux-image-extra-$(uname -r)
    $ sudo apt-get install apparmor
    $ sudo apt-get install linux-image-generic-lts-trusty
    $ sudo apt-get install docker-engine
    $ sudo service docker start

    Kita test apakah docker bisa berjalan .
    $ sudo docker run hello-world
    Jika tampilannya seperti ini berarti docker terinstall dengan benar.

    $ sudo nano /etc/NetworkManager/NetworkManager.conf
    Lalu hapus pagar di depan dns=dnsmasq .

    Sampai disini kalian sudah menginstall docker engine.
    Nah misalnya saya ingin menginstall Kali Linux bagaimana ?
    Masukkan command :
    $ sudo docker search kali

    Maka akan banyak pilihan images nya. Saya pilih yang paling atas, yaitu kali rolling.
    Masukkan command :
    $ sudo docker pull kalilinux/kali-linux-docker

    Untuk melihat list OS yang terinstall masukkan command :
    $ sudo docker images

    Untuk run , masukkan command :
    $ sudo docker run -i -t kalilinux/kali-linux-docker /bin/bash
    Looks awesome :D
    Tinggal install tools apa yang diperlukan.
    Untuk keluar dari os docker nya tinggal ketik ' exit ' di terminal.
    Sekian tutorial kali ini dan semoga bermanfaat :)

    Post Copied From LinuxSec
  • Percakapan # dan * ( "Cerpen Gak Jelas By SPG [ AP ] " )

    Cerpen Gak Jelas By SPG [ AP ]


    Percakapan # dan *
    #: kamu itu kok gitu sih, gak ngurusin fisik, jerawat kamu tuh urus kek biar bersih, kamu itu memang jelek, tapi se engganya kan kalo jerawat kamu gak ada aku bisa lebih bahagia, aku gak minta kamu beli ini itu buat aku kaya orang lain yang pacaran, beli pembersih muka untuk diri kamu sendiri berapa sih

    * : aku bukannya gak mau senengin kamu, aku bukannya gak mau bersihin jerawat aku, aku bukannya juga gak mau keluar duit buat diri aku sendiri, tapi aku lebih berfikir bagaimana caranya agar aku bisa membahagiakan bukan cuman kamu, tapi untuk buah hati kita nantinya, kalo pembersih muka palng murah 10 ribu untuk dipakai 1 bulan, jika aku kumpulin dari sekarang setidaknya cukup untuk membeli beberapa keperluan buah hati kita

    # : tapi kamu beli roko bisa, bukannya duit roko kamu itu lebih cukup kalo kamu beliin untuk keperluan buah hati kita nanti ?

    * : kamu lebih milih mana, aku merokok sebelum punya buah hati atau setelah punya buah hati

    # : ya engga semuanya lah

    * : kalo aku ngerokok sekarang, setidaknya suatu saat aku bisa berkata pada buah hati kita, jangan percaya bahwa kematian ditangan apapun kecuali TUHAN, karna hanya TUHAN yang dapat mencabut nyawa bukannya rokok

    # : Terus kalo nanti anak kita nanya, berarti narkoba juga gak papa karna kematian ditangan TUHAN, kamu bakalan jawab apa

    * : ya kalo kamu mau narkoba gak papa, kalo kamu rela hidup kamu hancur sampai TUHAN mencabut nyawamu,dan kau tidak bisa memberikan cerita apapun pada anak cucumu nantinya

    # : Lalu bagaimana jika kamu meninggal karna penyakit yang disebabkan rokok sebelum buah hati kita lahir ?

    * : Setidaknya dia bisa membenci rokok karna merenggut nyawa ayahnya

    # : Bagaimana jika ia tetap merokok karna percaya kata kata ayahnya yang bilang bahwa kematian ditangan TUHAN bukan ditangan rokok

    * : Aku akan bahagia jika memang begitu adanya, karna setidaknya aku memberi pelajaran pada buah hatiku, bahwa TUHAN itu ada, bahwa semua kematian ditangan TUHAN, dan mengajarinya untuk percaya kepada TUHAN

    # : Lalu bagaimana jika anak kita nantinya jadi anak yang badung dan tidak percaya pada TUHAN

    * : Aku akan berfikir positif, bahwa buah hatiku akan badung lalu menjadi baik dan mati dengan akhir yang baik, dari pada menjadi baik lalu kemudian menjadi buruk karna menahan rasa penasarannya pada sesuatu yang buruk dan akhirnya mati dengan akhir yang buruk

    # : Kamu itu jawab aja terus bisanya ...!!! kamu itu gak ngerti perasaan aku

    * : Karna itu aku mencintai kamu, karna aku tak mengerti dirimu, lalu aku akan selalu mencintaimu karna aku selalu mencari tau dirimi, jika aku sudah mengerti kamu dari awal, maka aku akan bosan dan mungkin membuatmu merasakan sesuatu yang lebih sakit dari pada saat ini

    # : Kamu itu ngeselin, aku benci kamu

    * : Jika yang pepatah bilang benar aku lebih suka kamu membenciku hinga akhirnya menumbuhkan rasa cinta dari pada kamu mencintaiku hinga akhirnya menumbuhkan rasa benci
    jika kamu membenciku lalu akhirnya mencintaiku, aku percaya kita akan memiliki rumah tangga yang bahagia, karna kamu sudah mengetahui keburukanku dan membenciku lalu menerimaku dan mencintaiku
    dari pada kau mencintaku lalu saat kita berumah tangga kau membenciku karna  kau baru mengetahui keburukanku karna kau terlalu sibuk mencintaiku dan akhirnya kau menjadi seorang JANDA

    # : Iya deh, terserah kamu aja

  • DracOS Linux, Distro Pentest Karya Anak Bangsa

    Kemarin ( 27 Februari 2016) , versi final DracOS Linux v1.0 codename Vairusa dirilis. Versi final ini tentu membawa banyak penyempurnaan dari versi pre-test yang dirilis sebelumnya. Dan kali ini saya akan mereview DracOS Linux versi pertama ini.
    dracos-linux.org
    Sebelumnya, mungkin ada yang bertanya apa apa itu DracOS Linux ? Turunan dari distro apa ?
    Oke, DracOS Linux adalah sistem operasi linux, bersifat opensource yang di bangun berdasarkan Linux From The Scratch. Dracos linux di bawah perlindungan GNU General Public License v3.0. Sistem operasi ini merupakan salah satu varian distro linux , yang di gunakan untuk melakukan pengujian security (penetration testing).
    Dracos linux di bekali oleh ratusan tools pentest, forensics dan reverse engineering. Dracos linux tidak menggunakan tools-tools berbasis GUI dan hanya memilki perangkat lunak yang menggunakan CLI (command line interface) untuk melakukan operasinya.
    Jadi, DracOS Linux ini dibangun dari awal (Linux From The Scratch), bukan turunan distro lain.
    Dan seperti yang sudah dijelaskan sebelumnya, DracOS Linux merupakan distro Linux yang ditujukan untuk kegiatan pengujian security. Lalu apa bedanya dengan distro lain seperti Cyborg, Kali , Arch , dll ?

    DracOS lebih memfokuskan ke performa sehingga hampir semua tools / aplikasi nya dijalankan dengan CLI.
    Dan DracOS Linux v1.0 ini menggunakan DWM sebagai DE nya, dimana di versi pre-test mereka menggunakan openbox.
    Berikut list perubahan dan penambahan tools di versi DracOS Linux v1.0
    Kernel support
    • recompile kernel 4.2.0 with various sound driver support
    Shell
    • added dash
    Desktop environment
    • remove openbox ( not need anymore )
    • remove conky ( not need anymore )
    • remove lxpanel ( not need anymore )
    • added DWM,dmenu,dwmstatus
    • added GPM daemon
    • added XKeyboardConfig support
    • added fribidi support for arabic font
    • added giflib support
    • added keymap compiler and support library (libxkbcommon)
    • added aalib for ascii support
    Programming support
    • added yasm
    • GC with libatomic_ops support
    • added check suport for compiler
    • added GNU Scientific Library (GSL)
    • adding asynchronous event notification software library (libevent)
    • adding popt libraries
    • adding portable POSIX/ANSI-C based library for Unix platforms (npth)
    • dynamic library load path (rpath and runpath) (chrpath)
    Network support
    • added links2 upgrade LibTIFF version
    • added samba protocol
    • added OpenLDAP
    • added Cyrus SASL
    • added git support
    • added rdesktop
    • added bind tools for dig, host, and nslookup command
    • added libidn support
    • added libesmtp libraries
    • added libndp is a wrapper for IPv6 Neighbor Discovery Protocol
    • added Heirloom mailx
    • added ldns (DNS library)
    Penetration tools
    • added activerecord sqlite3-ruby ( for karma metasploit support)
    • added hamster and ferret
    • added smtp-user-enum
    Multimedia support
    • added daemon pulseaudio
    • added depend : JSON-C, libsndfile
    • added cmus console music player like moc (support wav, mp3 with libmad)
    • added recordmydesktop
    Manajemen
    • added fcron for cron job
    • added p7zip for 7zip support
    • added lm_sensors for sensors cpu detection
    • added initd-tools for LSB support
    • added dbus-glib support
    • added exif2 for managing image and video metadata.
    • added libexif for arsing, editing, and saving EXIF data
    • added libsigsegv
    • added Power management tools (pm-utils)
    • added support for 'shell' archives (sharutils)
    • added support for Open Source ODBC (Open DataBase Connectivity) sub-system and an ODBC SDK for Linux (unixODBC)
    • added sysstat tools for driving cron and enable cifsiostat, iostat, mpstat, pidstat, sadf, sar, and tapestat command
    • added tree for manajemen file tree
    Fix bug
    • more bug fix for DE
    • fix isc-dhcp-server
    • more bug fix for tools
    • fix alsa driver
    Bagaimana cara install nya ?
    Menurut keterangan yang saya dapat dari salah satu developer DracOS yaitu mas Zico Ekel, DracOS bukan standalone os. Alias tidak bisa berdiri sendiri.
    Jadi kalian bisa menginstall nya dengan melakukan dual boot dengan linux lain, harus linux loh ya, gak bisa di dual boot sama jendela, android x86 juga tidak bisa.
    Cara nya?
    Nah kebetulan salahsatu Reporter di tim pengembang DracOS Linux ( Randall Tux ) sudah menulis tutorial penginstallan DracOS Linux ini.
    HOW TO INSTALL DRACOS USING RSYNC

    Nah mungkin ada yang bingung dengan pengoperasian DWM pada DracOS Linux , kalian bisa melihat video nya disini :
    How to Use DWM on DracOS Linux

    Tertarik ?
    Kalian bisa mendownload DracOS Linux di Repo Resmi nya :
    http://mirror.indonesianbacktrack.or.id/?dir=DracOs/iso

    Atau kalian tertarik untuk memirror kan repo DracOS, kalian bisa menghubungi salahsatu Tim DracOS Linux di email rndtx[at]dracos-linux[dot]id

    Jika kalian mengalami kesulitan atau mengalami masalah dengan DracOS Linux, kalian bisa mendiskusikan nya di forum DracOS.
    https://dracos-linux.org/projects/dracoslinux/boards

    Tentu saja kalian harus registrasi terlebih dahulu.
    Sekian review kali ini, go linux go opensource !


    Post Copied From LinuxSec
  • Nisekoi Template Designed by Johanes Djogan

    ©2016 - ReDesigned By Ani-Sudo