Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Zen Rails Security Checklist | 1,632 | 3 years ago | 1 | mit | Ruby | |||||
Checklist of security precautions for Ruby on Rails applications. | ||||||||||
Tinc | 1,532 | 10 months ago | 63 | other | C | |||||
a VPN daemon | ||||||||||
Fwknop | 875 | 4 months ago | 110 | gpl-2.0 | Perl | |||||
Single Packet Authorization > Port Knocking | ||||||||||
Nginx Lua Anti Ddos | 649 | 6 months ago | 37 | mit | Lua | |||||
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 | ||||||||||
Lyncsmash | 279 | a year ago | 1 | Python | ||||||
locate and attack Lync/Skype for Business | ||||||||||
Jwtcat | 258 | 5 months ago | 1 | apache-2.0 | Python | |||||
A CPU-based JSON Web Token (JWT) cracker and - to some extent - scanner. | ||||||||||
Query Auth | 149 | 11 | 2 | 4 years ago | 13 | August 19, 2013 | 4 | other | PHP | |
Signature generation and validation for REST API query authentication | ||||||||||
Esp8266 Deauth | 121 | 6 years ago | 4 | mit | Arduino | |||||
Multi target De-Auth attack implementation for ESP8266 module. | ||||||||||
Pywarp | 75 | 1 | 2 months ago | 3 | January 02, 2019 | 4 | apache-2.0 | Python | ||
Python WebAuthn Relying Party library | ||||||||||
Bruteloops | 68 | 1 | 18 days ago | 8 | March 15, 2022 | 1 | mit | Python | ||
Protocol agnostic online password guessing API. |
Python Time Based Authentication Attack Tool
You can contribute by sending merge requests and/or issues on this github opensource project.
You can install this package by launching:
> git clone [email protected]:SakiiR/timeauth.git
[...]
> pip install ./timeauth/
> # Done
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()