-
Notifications
You must be signed in to change notification settings - Fork 67
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[#82] Add email and password pair analyzer #87
Conversation
Pull Request Test Coverage Report for Build 170
💛 - Coveralls |
Great work. Will have a closer look tonight! Thank you. |
Implement TwitterAction
Phone number analyzer d-Rickyy-b#90
Database dump analyzer Fixes
Improved the phone number analyzer and added test cases for it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you please add some more characters to the regex? Thank you :)
# -*- coding: utf-8 -*- | ||
from .regexanalyzer import RegexAnalyzer | ||
|
||
_EMAIL_PASSWORD_REGEX = r'[\w\.\+_-]+@[\w\._-]+\.[a-zA-Z]*\:[\w\.\+\!\$\#\^&\*\(\)\{\}\[\]\_\-\@\%\=]+$' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice regex, but there are some characters which are often used in passwords such as '§´/\?<>;:|",~
and the backtick character. Maybe you could add them to the regex as well? How should we deal with spaces? I would say we ignore spaces for now.
An example of a possible regex: \§\\\/\'\`\´\?\<\>\;\"\:\|\,\~
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am ignoring the spaces for now and updating the password regex
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you!
Add TwitterAction by psidex
Add unit test for SHAHashAnalyzer
I checked this regex against a pastebin with origin and steam keys in it. It matches on Origin keys.
This is necessary for d-Rickyy-b#109
Added Origin key analyzer
Adds easier templating and fixes 'None' values
Implement Battle.Net Key Analyzer
update code
Microsoft License key analyzer.
Microsoft key analyzer tests
Update init.
Add Microsoft key analyzer
Uses websockets to open a connection to Discord's Gateway, then sends the proper identification payload so that further requests are authorized. This code runs only if sending messages fails with code 40001.
That way it only needs to be imported when actually using the bot functionality
I guess this happens for multi threaded programs. No idea how this performs in the long run. Longest test has been 2 minutes and it worked for that time at least.
…cated Add Discord action (webhook or bot token)
Discord action bot
Created basic Epic Key analyzer with unit test fixes d-Rickyy-b#97
My first PR, please let me know if I am missing something.