Skip to content

Commit e5a970e

Browse files
committed
Added 2 new signature files
1 parent b596c3b commit e5a970e

File tree

2 files changed

+86
-0
lines changed

2 files changed

+86
-0
lines changed
Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
#!/usr/bin/env python2
2+
# coding: utf-8
3+
4+
#-:-:-:-:-:-:-:-:-:-:-:-:#
5+
# TIDoS Framework #
6+
#-:-:-:-:-:-:-:-:-:-:-:-:#
7+
8+
#Author : @_tID
9+
#This module requires TIDoS Framework
10+
#https://github.com/theInfectedDrake/TIDoS-Framework
11+
12+
patterns = ("<font face=\"Arial\" size=2>error \'800a0005\'</font>",
13+
"<h2> <i>Runtime Error</i> </h2></span>",
14+
"<p>Active Server Pages</font> <font face=\"Arial\" size=2>error \'ASP 0126\'</font>",
15+
"<TR><TD><H4>Error Diagnostic Information</H4><P><P>",
16+
"<li>Search the <a href=\"http://www.macromedia.com/support/coldfusion/\"",
17+
"target=\"new\">Knowledge Base</a> to find a solution to your problem.</li>",
18+
"Server.Execute Error",
19+
"Warning: opendir(Array):",
20+
"<H3>Original Exception: </H3>",
21+
"Server object error",
22+
"invalid literal for int()",
23+
"exceptions.ValueError",
24+
"<h2 style=\"font:8pt/11pt verdana; color:000000\">HTTP 403.6 - Forbidden: IP address rejected<br>",
25+
"<TITLE>500 Internal Server Error</TITLE>",
26+
"<b>warning</b>[/]\w\/\w\/\S*",
27+
"<b>Fatal error</b>:",
28+
"<b>Warning</b>:",
29+
"open_basedir restriction in effect",
30+
"<b> Description: </b>An unhandled exception occurred during the execution of the",
31+
"<H1>Error page exception</H1>",
32+
"<h2> <i>Runtime Error</i> </h2></span>",
33+
"<h2>Traceback <span>(innermost last)</span></h2>",
34+
"<h1 class=\"error_title\">Ruby on Rails application could not be started</h1>",
35+
"onclick=\"toggle(\'full exception chain stacktrace\')",
36+
"at org.apache.catalina",
37+
"at org.apache.coyote.",
38+
"<title>Error Occurred While Processing Request</title></head><body><p></p>",
39+
"<b>Fatal Error</b>",
40+
"\[an error occurred while processing this directive\]",
41+
"<HTML><HEAD><TITLE>Error Occurred While Processing Request</TITLE>",
42+
"Warning: session_start():",
43+
"PythonHandler django.core.handlers.modpython",
44+
"t = loader.get_template(template_name) # You need to create a 404.html template.",
45+
"<HTML><HEAD><TITLE>Error Occurred While Processing Request</TITLE></HEAD><BODY><HR><H3>",
46+
"<h2> <i>Access is denied</i> </h2></span>",
47+
"</HEAD><BODY><HR><H3>Error Occurred While Processing Request</H3><P>",
48+
"\[java.lang.",
49+
"class java.lang.",
50+
"java.lang.NullPointerException",
51+
"java.rmi.ServerException",
52+
"at java.lang.",
53+
"at org.apache.tomcat.",
54+
"The session id contains illegal characters",
55+
"\] does not contain handler parameter named",
56+
"eval()'d code</b> on line <b>",
57+
"at org.apache.jasper.",
58+
"<html><head><title>Application Exception</title>",
59+
"<p>Microsoft VBScript runtime </font>",
60+
"<font face=\"Arial\" size=2>error '800a000d'</font>",
61+
"<TITLE>nwwcgi Error",
62+
"Fatal error</b>: preg_replace",
63+
"thrown in <b>",
64+
"Stack trace:",
65+
"</b> on line <b>")
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
#!/usr/bin/env python2
2+
# -*- coding: utf-8 -*-
3+
4+
#-:-:-:-:-:-:-:-:-:-:-:-:#
5+
# TIDoS Framework #
6+
#-:-:-:-:-:-:-:-:-:-:-:-:#
7+
8+
#Author: @_tID
9+
#This module requires TIDoS Framework
10+
#https://github.com/the-Infected-Drake/TIDoS-Framework
11+
12+
EMAIL_HARVESTER_SIGNATURE = r'''[-a-zA-Z0-9._]+@[-a-zA-Z0-9_]+.[a-zA-Z0-9_.]+'''
13+
PHONE_NUMBER_SIGNATURE = r'''\+\d{2}\s?0?\d{10}'''
14+
INTERNAL_IP_SIGNATURE = r'''/(^127\.)|(^192\.168\.)|(^10\.)|(^172\.1[6-9]\.)|(^172\.2[0-9]\.)|(^172\.3[0-1]\.)|(^::1$)|(^[fF][cCdD])/'''
15+
SOCIAL_SECURITY_SIGNATURE = r'''(((?!000)(?!666)(?:[0-6]\d{2}|7[0-2][0-9]|73[0-3]|7[5-6][0-9]|77[0-2]))-((?!00)\d{2})-((?!0000)\d{4}))'''
16+
VISA_MASTERCARD_SIGNATURE = r'''^(?:4[0-9]{12}(?:[0-9]{3})?|5[1-5][0-9]{14})$'''
17+
AMEX_CARD_SIGNATURE = r"""^3[47][0-9]{13}$"""
18+
EXPRESS_CARD_SIGNATURE = r'''^[34|37][0-9]{14}$'''
19+
DISCOVER_CARD_SIGNATURE = r"""^6(?:011|5[0-9]{2})[0-9]{12}$"""
20+
MASTERCARD_SIGNATURE = r'''^(?:5[1-5][0-9]{2}|222[1-9]|22[3-9][0-9]|2[3-6][0-9]{2}|27[01][0-9]|2720)[0-9]{12}$'''
21+
VISA_SIGNATURE = r"""^4[0-9]{12}(?:[0-9]{3})?$"""

0 commit comments

Comments
 (0)