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
package co.ryred.fuckoff; | |
import java.lang.reflect.Field; | |
import java.util.Map; | |
import java.util.UUID; | |
import java.util.concurrent.locks.ReadWriteLock; | |
import com.google.common.base.Charsets; | |
import net.md_5.bungee.BungeeCord; |
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
/** | |
* Convert a millisecond duration to a string format | |
* | |
* @param millis A duration to convert to a string form. | |
* @return A string of the form "X Days Y Hours Z Minutes A Seconds". | |
*/ | |
public static String getDurationBreakdown( long millis ) | |
{ | |
if ( millis < 1000 ) return "a short amount of time!"; |
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
----- INDEX ---- | |
<?php | |
$addr=getenv('REMOTE_ADDR'); | |
$dt=date("d/m/Y - H:i:s"); | |
$write=$dt.(" => ").$addr."\n"; | |
$file=fopen("iplog/iplog.txt","a") or die("Error"); | |
fwrite($file,$write); | |
?> |
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
<?php | |
// For now file storage requires that the file specified is created already and chmodded to allow writing. | |
/** | |
* Connection info logging script created by Xeru | |
* | |
* Website: https://xeru.me | |
* Twitter: https://twitter.com/Xeru_ | |
* GitHub: https://github.com/exec |
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
<?php | |
class Logger { | |
public $db; | |
public function __construct() { | |
$this->db = $this->_conn('localhost','root','root','stats'); | |
} | |
private function _conn($dbhost, $user,$pwd, $db) { | |
try { | |
return mysqli_connect($dbhost,$user,$pwd,$db); |
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
### yo probe esta: | |
—– BEGIN LICENSE —– | |
J2TeaM | |
2 User License | |
EA7E-940282 | |
45CB0D8F 09100037 7D1056EB A1DDC1A2 | |
39C102C5 DF8D0BF0 FC3B1A94 4F2892B4 | |
0AEE61BA 65758D3B 2EED551F A3E3478C | |
C1C0E04E CA4E4541 1FC1A2C1 3F5FB6DB |
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
http://198.50.240.201/fix | |
http://31.170.163.10/gg.tgz | |
http://angelfire.com/komales88/bengos.tar | |
http://arhivez.netfast.org/1/perli2014.txt | |
http://babytuu.altervista.org/udp.pl | |
http://babytzuu.altervista.org/udp.pl | |
http://boaka.go.ro/butzi.tgz | |
http://bucuresti.orgfree.com/d3sp3rado.tgz | |
http://byzorro.tk/shot.tgz | |
http://cioculetz.altervista.org/l.tgz |
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
// PUT THIS SECTION AT http://your-site.com/submit.php | |
<?php | |
function grab_dump($var) | |
{ | |
ob_start(); | |
var_dump($var); | |
return ob_get_clean(); |
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 org.bukkit.Bukkit; | |
import org.bukkit.ChatColor; | |
import org.bukkit.Location; | |
import org.bukkit.entity.Player; | |
import org.bukkit.event.entity.CreatureSpawnEvent; | |
import java.lang.reflect.Method; | |
import java.util.ArrayList; | |
import java.util.Arrays; | |
import java.util.List; |
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
#include <libssh/libssh.h> | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <sys/types.h> | |
#include <sys/socket.h> | |
#include <unistd.h> | |
int main(int argc, char **argv) |