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
/** | |
* Performs a 32-bit left shift operation (<<) even on a 64-bit machine | |
* | |
* @param integer $number Shift these bits | |
* | |
* @param integer $steps Step this many times | |
* | |
* @return string Returns the integer | |
*/ | |
function leftshift32 ($number, $steps) |
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
alias badword { ;badword v0.3 by HM2K Usage: $badword($1-) | |
var %x = bitch asshole fuck nigger shit bastard whore slut wanker cunt slag dick prick arse nigger cock faggot niggah pussy penis vagina | |
var %y = 0 | |
var %z = $numtok(%x,32) | |
while (%y < %z) { | |
inc %y | |
if ($gettok(%x,%y,32) isin $1-) { return $true } | |
} | |
return $false | |
} |
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
<web-app> | |
<servlet> | |
<servlet-name>quercus</servlet-name> | |
<servlet-class>com.caucho.quercus.servlet.GoogleQuercusServlet</servlet-class> | |
<init-param> | |
<param-name>ini-file</param-name> | |
<param-value>WEB-INF/php.ini</param-value> | |
<param-name>compile</param-name> | |
<param-value>true</param-value> |
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
'keyfinder.vbs v0.1 by HM2K (01/06/09) | |
Const HKEY_CLASSES_ROOT = &H80000000 | |
Const HKEY_CURRENT_USER = &H80000001 | |
Const HKEY_LOCAL_MACHINE = &H80000002 | |
Const HKEY_USERS = &H80000003 | |
Function ReadFile(sFile) | |
Dim oFSO, oFile, sText | |
Set oFSO = CreateObject("Scripting.FileSystemObject") |
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
RewriteCond %{REQUEST_FILENAME} !-f | |
RewriteCond %{REQUEST_FILENAME} !-d | |
RewriteCond %{REQUEST_URI} ^/folder | |
RewriteRule !\.(js|ico|gif|jpg|png|css)$ /folder/index.php [NC,L] | |
RewriteCond %{REQUEST_FILENAME} !-f | |
RewriteCond %{REQUEST_FILENAME} !-d | |
RewriteCond %{REQUEST_URI} ^/folder2 | |
RewriteRule !\.(js|ico|gif|jpg|png|css)$ /folder2/index.php [NC,L] |